swscale/output: use isSwappedChroma

This commit is contained in:
rcombs 2021-12-23 03:52:33 -06:00
parent cb3a6cc082
commit df9180d8a0
1 changed files with 1 additions and 2 deletions

View File

@ -429,8 +429,7 @@ static void yuv2nv12cX_c(enum AVPixelFormat dstFormat, const uint8_t *chrDither,
{
int i;
if (dstFormat == AV_PIX_FMT_NV12 ||
dstFormat == AV_PIX_FMT_NV24)
if (!isSwappedChroma(dstFormat))
for (i=0; i<chrDstW; i++) {
int u = chrDither[i & 7] << 12;
int v = chrDither[(i + 3) & 7] << 12;