mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
swscale/output: use isSwappedChroma
This commit is contained in:
parent
cb3a6cc082
commit
df9180d8a0
1 changed files with 1 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue