Originally committed as revision 20250 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -93,7 +93,7 @@ static const AVCodecTag gxf_media_types[] = {
|
| 93 | 93 |
{ CODEC_ID_MPEG2VIDEO, 20 }, /* MPEG HD */
|
| 94 | 94 |
{ CODEC_ID_MPEG1VIDEO, 22 }, /* NTSC */
|
| 95 | 95 |
{ CODEC_ID_MPEG1VIDEO, 23 }, /* PAL */
|
| 96 |
- { 0, 0 },
|
|
| 96 |
+ { CODEC_ID_NONE, 0 },
|
|
| 97 | 97 |
}; |
| 98 | 98 |
|
| 99 | 99 |
#define SERVER_PATH "EXT:/PDR/default/" |
| ... | ... |
@@ -54,7 +54,7 @@ const AVCodecTag ff_mp4_obj_type[] = {
|
| 54 | 54 |
{ CODEC_ID_VORBIS , 0xDD }, /* non standard, gpac uses it */
|
| 55 | 55 |
{ CODEC_ID_DVD_SUBTITLE, 0xE0 }, /* non standard, see unsupported-embedded-subs-2.mp4 */
|
| 56 | 56 |
{ CODEC_ID_QCELP , 0xE1 },
|
| 57 |
- { 0, 0 },
|
|
| 57 |
+ { CODEC_ID_NONE , 0 },
|
|
| 58 | 58 |
}; |
| 59 | 59 |
|
| 60 | 60 |
const AVCodecTag codec_movvideo_tags[] = {
|
| ... | ... |
@@ -201,7 +201,7 @@ static const AVCodecTag nsv_codec_video_tags[] = {
|
| 201 | 201 |
*/ |
| 202 | 202 |
{ CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') }, /* cf sample xvid decoder from nsv_codec_sdk.zip */
|
| 203 | 203 |
{ CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', '3') },
|
| 204 |
- { 0, 0 },
|
|
| 204 |
+ { CODEC_ID_NONE, 0 },
|
|
| 205 | 205 |
}; |
| 206 | 206 |
|
| 207 | 207 |
static const AVCodecTag nsv_codec_audio_tags[] = {
|
| ... | ... |
@@ -210,7 +210,7 @@ static const AVCodecTag nsv_codec_audio_tags[] = {
|
| 210 | 210 |
{ CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') },
|
| 211 | 211 |
{ CODEC_ID_SPEEX, MKTAG('S', 'P', 'X', ' ') },
|
| 212 | 212 |
{ CODEC_ID_PCM_U16LE, MKTAG('P', 'C', 'M', ' ') },
|
| 213 |
- { 0, 0 },
|
|
| 213 |
+ { CODEC_ID_NONE, 0 },
|
|
| 214 | 214 |
}; |
| 215 | 215 |
|
| 216 | 216 |
//static int nsv_load_index(AVFormatContext *s); |
| ... | ... |
@@ -271,7 +271,7 @@ const AVCodecTag ff_codec_wav_tags[] = {
|
| 271 | 271 |
{ CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
|
| 272 | 272 |
{ CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') },
|
| 273 | 273 |
{ CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
|
| 274 |
- { 0, 0 },
|
|
| 274 |
+ { CODEC_ID_NONE, 0 },
|
|
| 275 | 275 |
}; |
| 276 | 276 |
|
| 277 | 277 |
#if CONFIG_MUXERS |
| ... | ... |
@@ -81,7 +81,7 @@ typedef struct {
|
| 81 | 81 |
static const AVCodecTag swf_codec_tags[] = {
|
| 82 | 82 |
{CODEC_ID_FLV1, 0x02},
|
| 83 | 83 |
{CODEC_ID_VP6F, 0x04},
|
| 84 |
- {0, 0},
|
|
| 84 |
+ {CODEC_ID_NONE, 0},
|
|
| 85 | 85 |
}; |
| 86 | 86 |
|
| 87 | 87 |
static const AVCodecTag swf_audio_codec_tags[] = {
|
| ... | ... |
@@ -90,7 +90,7 @@ static const AVCodecTag swf_audio_codec_tags[] = {
|
| 90 | 90 |
{CODEC_ID_MP3, 0x02},
|
| 91 | 91 |
{CODEC_ID_PCM_S16LE, 0x03},
|
| 92 | 92 |
//{CODEC_ID_NELLYMOSER, 0x06},
|
| 93 |
- {0, 0},
|
|
| 93 |
+ {CODEC_ID_NONE, 0},
|
|
| 94 | 94 |
}; |
| 95 | 95 |
|
| 96 | 96 |
#endif /* AVFORMAT_SWF_H */ |