comparison libdlna-0.2.3/src/audio_ac3.c @ 129:4f6d9621ee00

add multi session streaming & add depending librarys. - libupnp-1.6.6 - libdlna-0.2.3
author Naoya OYAMA <naoya.oyama@gmail.com>
date Sun, 10 Oct 2010 15:33:18 +0900
parents
children
comparison
equal deleted inserted replaced
128:3a7d8d2f0585 129:4f6d9621ee00
1 /*
2 * libdlna: reference DLNA standards implementation.
3 * Copyright (C) 2007 Benjamin Zores <ben@geexbox.org>
4 *
5 * This file is part of libdlna.
6 *
7 * libdlna is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * libdlna is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with libdlna; if not, write to the Free Software
19 * Foundation, Inc, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "dlna_internals.h"
26 #include "profiles.h"
27
28 /* Profile for audio media class content */
29 static dlna_profile_t ac3 = {
30 .id = "AC3",
31 .mime = MIME_AUDIO_DOLBY_DIGITAL,
32 .label = LABEL_AUDIO_2CH_MULTI
33 };
34
35 audio_profile_t
36 audio_profile_guess_ac3 (AVCodecContext *ac)
37 {
38 if (!ac)
39 return AUDIO_PROFILE_INVALID;
40
41 /* check for AC3 codec */
42 if (ac->codec_id != CODEC_ID_AC3)
43 return AUDIO_PROFILE_INVALID;
44
45 /* supported channels: 1/0, 2/0, 3/0, 2/1, 3/1, 2/2, 3/2 */
46 if (ac->channels > 5)
47 return AUDIO_PROFILE_INVALID;
48
49 /* supported sampling rate: 32, 44.1 and 48 kHz */
50 if (ac->sample_rate != 32000 &&
51 ac->sample_rate != 44100 &&
52 ac->sample_rate != 48000)
53 return AUDIO_PROFILE_INVALID;
54
55 /* supported bitrate: 32 Kbps - 640 Kbps */
56 if (ac->bit_rate < 32000)
57 return AUDIO_PROFILE_INVALID;
58
59 if (ac->bit_rate <= 448000)
60 return AUDIO_PROFILE_AC3;
61
62 if (ac->bit_rate <= 640000)
63 return AUDIO_PROFILE_AC3_EXTENDED;
64
65 return AUDIO_PROFILE_INVALID;
66 }
67
68 static dlna_profile_t *
69 probe_ac3 (AVFormatContext *ctx dlna_unused,
70 dlna_container_type_t st,
71 av_codecs_t *codecs)
72 {
73 if (!stream_ctx_is_audio (codecs))
74 return NULL;
75
76 /* check for supported container */
77 if (st != CT_AC3)
78 return NULL;
79
80 switch (audio_profile_guess_ac3 (codecs->ac))
81 {
82 case AUDIO_PROFILE_AC3:
83 case AUDIO_PROFILE_AC3_EXTENDED:
84 return &ac3;
85 default:
86 break;
87 }
88
89 return NULL;
90 }
91
92 dlna_registered_profile_t dlna_profile_audio_ac3 = {
93 .id = DLNA_PROFILE_AUDIO_AC3,
94 .class = DLNA_CLASS_AUDIO,
95 .extensions = "ac3",
96 .probe = probe_ac3,
97 .next = NULL
98 };