diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-16 13:40:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-16 13:41:17 +0200 |
commit | a10f71c1d65c3e457c7e42ac600efe063e432efd (patch) | |
tree | c582108f65bdc8af5d6f2df2d66e40f681c76195 /libavcodec | |
parent | e985cfd18bc416d3ff0c83ccafdc1ac733e6d522 (diff) | |
download | ffmpeg-a10f71c1d65c3e457c7e42ac600efe063e432efd.tar.gz |
vc1dec: add missing terminating element to mpeg4_video_profiles
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpeg4videodec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 55e6b17335..120b8dc1f7 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2292,6 +2292,7 @@ static const AVProfile mpeg4_video_profiles[] = { { FF_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE, "Advanced Scalable Texture Profile" }, { FF_PROFILE_MPEG4_SIMPLE_STUDIO, "Simple Studio Profile" }, { FF_PROFILE_MPEG4_ADVANCED_SIMPLE, "Advanced Simple Profile" }, + { FF_PROFILE_UNKNOWN }, }; static const AVOption mpeg4_options[] = { |