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/movenc.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/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index c6a433a230..023b2ca5c5 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -348,7 +348,7 @@ static int mov_write_esds_tag(AVIOContext *pb, MOVTrack *track) // Basic return update_size(pb, pos); } -static int mov_pcm_le_gt16(enum CodecID codec_id) +static int mov_pcm_le_gt16(enum AVCodecID codec_id) { return codec_id == AV_CODEC_ID_PCM_S24LE || codec_id == AV_CODEC_ID_PCM_S32LE || |