Re: [FFmpeg-devel] [PATCH]Never decode vc1 as gray if gray decoding was not enabled

2015-05-17 Thread Carl Eugen Hoyos
Michael Niedermayer gmx.at> writes: > > vc1_block.c | 36 ++-- > > vc1_loopfilter.c |4 ++-- > > vc1_mc.c | 12 ++-- > > vc1dec.c |6 +++--- > > 4 files changed, 29 insertions(+), 29 deletions(-) > > LGTM Patch applied.

Re: [FFmpeg-devel] [PATCH]Never decode vc1 as gray if gray decoding was not enabled

2015-05-17 Thread Michael Niedermayer
On Sun, May 17, 2015 at 10:57:10AM +0200, Carl Eugen Hoyos wrote: > Hi! > > Currently, when compiling FFmpeg with --disable-gray (the default) > and decoding vc1 with CODEC_FLAG_GRAY set, the output is gray with > artefacts. > The attached patch makes the output coloured in this case, but > may

[FFmpeg-devel] [PATCH]Never decode vc1 as gray if gray decoding was not enabled

2015-05-17 Thread Carl Eugen Hoyos
Hi! Currently, when compiling FFmpeg with --disable-gray (the default) and decoding vc1 with CODEC_FLAG_GRAY set, the output is gray with artefacts. The attached patch makes the output coloured in this case, but maybe the current behaviour is intended? Carl Eugen diff --git a/libavcodec/vc1_bl