comparison libdlna-0.2.3/src/audio_g726.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 audio_profile_t
29 audio_profile_guess_g726 (AVCodecContext *ac)
30 {
31 if (!ac)
32 return AUDIO_PROFILE_INVALID;
33
34 if (ac->codec_id != CODEC_ID_ADPCM_G726)
35 return AUDIO_PROFILE_INVALID;
36
37 if (ac->channels != 1)
38 return AUDIO_PROFILE_INVALID;
39
40 if (ac->sample_rate != 8000)
41 return AUDIO_PROFILE_INVALID;
42
43 if (ac->bit_rate != 32000)
44 return AUDIO_PROFILE_INVALID;
45
46 return AUDIO_PROFILE_G726;
47 }