mirror of https://git.ffmpeg.org/ffmpeg.git
yvu9toyv12Wrapper is not bitexact so disable it when the user wants
bitexactness to C. Originally committed as revision 27594 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
881c429407
commit
84c1253513
|
@ -2172,7 +2172,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH
|
|||
}
|
||||
#endif
|
||||
|
||||
if (srcFormat==PIX_FMT_YUV410P && dstFormat==PIX_FMT_YUV420P)
|
||||
if (srcFormat==PIX_FMT_YUV410P && dstFormat==PIX_FMT_YUV420P && !(flags & SWS_BITEXACT))
|
||||
{
|
||||
c->swScale= yvu9toyv12Wrapper;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue