summaryrefslogtreecommitdiff
path: root/libswscale/output.c
diff options
context:
space:
mode:
authorLauri Kasanen <cand@gmx.com>2019-03-24 13:00:39 +0200
committerLauri Kasanen <cand@gmx.com>2019-03-27 09:00:06 +0200
commit81a4719d8eaffd2e0251777cd121ecb54b239784 (patch)
tree5f11823a0bd790e62acb24bf94db802f3c799fb1 /libswscale/output.c
parentec1e4a8baf1bfdb693555ffea7c280e1cf842dfc (diff)
downloadffmpeg-81a4719d8eaffd2e0251777cd121ecb54b239784.tar.gz
swscale: Remove duplicated code
In this function, the exact same clamping happens both in the if and unconditionally.
Diffstat (limited to 'libswscale/output.c')
-rw-r--r--libswscale/output.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libswscale/output.c b/libswscale/output.c
index d7c53e60d9..d3401f0cd1 100644
--- a/libswscale/output.c
+++ b/libswscale/output.c
@@ -853,11 +853,6 @@ yuv2422_1_c_template(SwsContext *c, const int16_t *buf0,
V = av_clip_uint8(V);
}
- Y1 = av_clip_uint8(Y1);
- Y2 = av_clip_uint8(Y2);
- U = av_clip_uint8(U);
- V = av_clip_uint8(V);
-
output_pixels(i * 4, Y1, U, Y2, V);
}
} else {
@@ -875,11 +870,6 @@ yuv2422_1_c_template(SwsContext *c, const int16_t *buf0,
V = av_clip_uint8(V);
}
- Y1 = av_clip_uint8(Y1);
- Y2 = av_clip_uint8(Y2);
- U = av_clip_uint8(U);
- V = av_clip_uint8(V);
-
output_pixels(i * 4, Y1, U, Y2, V);
}
}