diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-07 23:57:21 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-07 23:57:21 +0200 |
commit | bb2f13c19ff8ff6e5f1c67a5ae53991e64609490 (patch) | |
tree | 630289d107c50c334def61666962da85342dda5c /libavformat/cafenc.c | |
parent | 2fc7c818cb7b7bfdca69d17ab9f1b48290dbc3f6 (diff) | |
download | ffmpeg-bb2f13c19ff8ff6e5f1c67a5ae53991e64609490.tar.gz |
rename missed CodecID to AVCodecID
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/cafenc.c')
-rw-r--r-- | libavformat/cafenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c index 4e51407fea..fa8d5838c4 100644 --- a/libavformat/cafenc.c +++ b/libavformat/cafenc.c @@ -34,7 +34,7 @@ typedef struct { int packets; } CAFContext; -static uint32_t codec_flags(enum CodecID codec_id) { +static uint32_t codec_flags(enum AVCodecID codec_id) { switch (codec_id) { case AV_CODEC_ID_PCM_F32BE: case AV_CODEC_ID_PCM_F64BE: @@ -51,7 +51,7 @@ static uint32_t codec_flags(enum CodecID codec_id) { } } -static uint32_t samples_per_packet(enum CodecID codec_id, int channels) { +static uint32_t samples_per_packet(enum AVCodecID codec_id, int channels) { switch (codec_id) { case AV_CODEC_ID_PCM_S8: case AV_CODEC_ID_PCM_S16LE: |