diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-05 11:11:04 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-08-07 16:00:24 +0200 |
commit | 36ef5369ee9b336febc2c270f8718cec4476cb85 (patch) | |
tree | d186adbb488e7f002aa894743b1ce0e8925520e6 /libavformat/voc.c | |
parent | 104e10fb426f903ba9157fdbfe30292d0e4c3d72 (diff) | |
download | ffmpeg-36ef5369ee9b336febc2c270f8718cec4476cb85.tar.gz |
Replace all CODEC_ID_* with AV_CODEC_ID_*
Diffstat (limited to 'libavformat/voc.c')
-rw-r--r-- | libavformat/voc.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/voc.c b/libavformat/voc.c index 314623ee74..1b7d499278 100644 --- a/libavformat/voc.c +++ b/libavformat/voc.c @@ -25,13 +25,13 @@ const unsigned char ff_voc_magic[21] = "Creative Voice File\x1A"; const AVCodecTag ff_voc_codec_tags[] = { - {CODEC_ID_PCM_U8, 0x00}, - {CODEC_ID_ADPCM_SBPRO_4, 0x01}, - {CODEC_ID_ADPCM_SBPRO_3, 0x02}, - {CODEC_ID_ADPCM_SBPRO_2, 0x03}, - {CODEC_ID_PCM_S16LE, 0x04}, - {CODEC_ID_PCM_ALAW, 0x06}, - {CODEC_ID_PCM_MULAW, 0x07}, - {CODEC_ID_ADPCM_CT, 0x0200}, - {CODEC_ID_NONE, 0}, + {AV_CODEC_ID_PCM_U8, 0x00}, + {AV_CODEC_ID_ADPCM_SBPRO_4, 0x01}, + {AV_CODEC_ID_ADPCM_SBPRO_3, 0x02}, + {AV_CODEC_ID_ADPCM_SBPRO_2, 0x03}, + {AV_CODEC_ID_PCM_S16LE, 0x04}, + {AV_CODEC_ID_PCM_ALAW, 0x06}, + {AV_CODEC_ID_PCM_MULAW, 0x07}, + {AV_CODEC_ID_ADPCM_CT, 0x0200}, + {AV_CODEC_ID_NONE, 0}, }; |