From bb2f13c19ff8ff6e5f1c67a5ae53991e64609490 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 7 Aug 2012 23:57:21 +0200 Subject: rename missed CodecID to AVCodecID Signed-off-by: Michael Niedermayer --- libavformat/cafenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/cafenc.c') 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: -- cgit v1.2.3