mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 22:10:34 +00:00
Fix regression when converting to nv12/nv21.
Patch by Guennadi Liakhovetski, g D liakhovetski A gmx D de Originally committed as revision 29464 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
cbf298899d
commit
062394e07c
@ -2759,7 +2759,9 @@ SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int d
|
||||
|| (isGray(dstFormat) && isGray(srcFormat))
|
||||
|| (isPlanarYUV(srcFormat) && isPlanarYUV(dstFormat)
|
||||
&& c->chrDstHSubSample == c->chrSrcHSubSample
|
||||
&& c->chrDstVSubSample == c->chrSrcVSubSample))
|
||||
&& c->chrDstVSubSample == c->chrSrcVSubSample
|
||||
&& dstFormat != PIX_FMT_NV12 && dstFormat != PIX_FMT_NV21
|
||||
&& srcFormat != PIX_FMT_NV12 && srcFormat != PIX_FMT_NV21))
|
||||
{
|
||||
if (isPacked(c->srcFormat))
|
||||
c->swScale= packedCopy;
|
||||
|
Loading…
Reference in New Issue
Block a user