summaryrefslogtreecommitdiff
path: root/libavformat/swf.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-05 11:11:04 +0200
committerAnton Khirnov <anton@khirnov.net>2012-08-07 16:00:24 +0200
commit36ef5369ee9b336febc2c270f8718cec4476cb85 (patch)
treed186adbb488e7f002aa894743b1ce0e8925520e6 /libavformat/swf.h
parent104e10fb426f903ba9157fdbfe30292d0e4c3d72 (diff)
Replace all CODEC_ID_* with AV_CODEC_ID_*
Diffstat (limited to 'libavformat/swf.h')
-rw-r--r--libavformat/swf.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/swf.h b/libavformat/swf.h
index 2be6cd5795..14330c1e08 100644
--- a/libavformat/swf.h
+++ b/libavformat/swf.h
@@ -79,18 +79,18 @@ typedef struct {
} SWFContext;
static const AVCodecTag swf_codec_tags[] = {
- {CODEC_ID_FLV1, 0x02},
- {CODEC_ID_VP6F, 0x04},
- {CODEC_ID_NONE, 0},
+ { AV_CODEC_ID_FLV1, 0x02},
+ { AV_CODEC_ID_VP6F, 0x04},
+ { AV_CODEC_ID_NONE, 0},
};
static const AVCodecTag swf_audio_codec_tags[] = {
- {CODEC_ID_PCM_S16LE, 0x00},
- {CODEC_ID_ADPCM_SWF, 0x01},
- {CODEC_ID_MP3, 0x02},
- {CODEC_ID_PCM_S16LE, 0x03},
- //{CODEC_ID_NELLYMOSER, 0x06},
- {CODEC_ID_NONE, 0},
+ { AV_CODEC_ID_PCM_S16LE, 0x00},
+ { AV_CODEC_ID_ADPCM_SWF, 0x01},
+ { AV_CODEC_ID_MP3, 0x02},
+ { AV_CODEC_ID_PCM_S16LE, 0x03},
+ //{ AV_CODEC_ID_NELLYMOSER, 0x06},
+ { AV_CODEC_ID_NONE, 0},
};
#endif /* AVFORMAT_SWF_H */