Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-05 13:11:04 +0400
committerAnton Khirnov <anton@khirnov.net>2012-08-07 18:00:24 +0400
commit36ef5369ee9b336febc2c270f8718cec4476cb85 (patch)
treed186adbb488e7f002aa894743b1ce0e8925520e6 /libavformat/voc.c
parent104e10fb426f903ba9157fdbfe30292d0e4c3d72 (diff)
Replace all CODEC_ID_* with AV_CODEC_ID_*
Diffstat (limited to 'libavformat/voc.c')
-rw-r--r--libavformat/voc.c18
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},
};