Module: libav Branch: master Commit: 835af79b052c25d7c7ac33dd6d1dd2f52ab13276
Author: Carl Eugen Hoyos <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Wed Dec 28 00:50:31 2011 -0500 Detect 'yuv2' as rawvideo also in avi. Signed-off-by: Anton Khirnov <[email protected]> --- libavformat/riff.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavformat/riff.c b/libavformat/riff.c index 1d226ab..8489bc7 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -172,6 +172,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('2', 'V', 'u', '1') }, { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', 's') }, + { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '6') }, _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
