Mercurial > pt1.oyama
comparison libdlna-0.2.3/src/containers.h @ 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 #ifndef _CONTAINERS_H_ | |
23 #define _CONTAINERS_H_ | |
24 | |
25 typedef enum { | |
26 CT_UNKNOWN, | |
27 CT_IMAGE, /* for PNG and JPEG */ | |
28 CT_ASF, /* usually for WMA/WMV */ | |
29 CT_AMR, | |
30 CT_AAC, | |
31 CT_AC3, | |
32 CT_MP3, | |
33 CT_WAV, | |
34 CT_MOV, | |
35 CT_3GP, | |
36 CT_MP4, | |
37 CT_FF_MPEG, /* FFMPEG "mpeg" */ | |
38 CT_FF_MPEG_TS, /* FFMPEG "mpegts" */ | |
39 CT_MPEG_ELEMENTARY_STREAM, | |
40 CT_MPEG_PROGRAM_STREAM, | |
41 CT_MPEG_TRANSPORT_STREAM, | |
42 CT_MPEG_TRANSPORT_STREAM_DLNA, | |
43 CT_MPEG_TRANSPORT_STREAM_DLNA_NO_TS, | |
44 } dlna_container_type_t; | |
45 | |
46 dlna_container_type_t stream_get_container (AVFormatContext *ctx); | |
47 | |
48 #endif /* _CONTAINERS_H_ */ |