[FFmpeg-cvslog] avcodec/raw: Fix decoding of ilacetest.mov

Carl Eugen Hoyos ceffmpeg at gmail.com
Sun Aug 7 21:59:15 EEST 2016


2016-08-07 17:36 GMT+02:00 Michael Niedermayer <git at videolan.org>:
> avcodec/raw: Fix decoding of ilacetest.mov
>
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
>
>> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bbec14de3126dbc4e1ec2b32ed714dab173386aa
> ---
>
>  libavcodec/raw.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/libavcodec/raw.c b/libavcodec/raw.c
> index bfa2537..d36b68b 100644
> --- a/libavcodec/raw.c
> +++ b/libavcodec/raw.c
> @@ -31,6 +31,7 @@
>  const PixelFormatTag ff_raw_pix_fmt_tags[] = {
>      { AV_PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
>      { AV_PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
> +    { AV_PIX_FMT_YUV420P, MKTAG('y', 'v', '1', '2') },
>      { AV_PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },

Not really a regression since 86159703

Shouldn't avpriv_find_pix_fmt() as alternative search without
case sensitivity after not finding a pix_fmt on the first loop?

Carl Eugen


More information about the ffmpeg-cvslog mailing list