mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
sws: Remove unneeded YUV cliping from yuv2rgb_X_c_template()
This should slightly improve speed. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8b87fd9825
commit
bc11580007
@ -1133,12 +1133,6 @@ yuv2rgb_X_c_template(SwsContext *c, const int16_t *lumFilter,
|
||||
Y2 >>= 19;
|
||||
U >>= 19;
|
||||
V >>= 19;
|
||||
if ((Y1 | Y2 | U | V) & 0x100) {
|
||||
Y1 = av_clip_uint8(Y1);
|
||||
Y2 = av_clip_uint8(Y2);
|
||||
U = av_clip_uint8(U);
|
||||
V = av_clip_uint8(V);
|
||||
}
|
||||
if (hasAlpha) {
|
||||
A1 = 1 << 18;
|
||||
A2 = 1 << 18;
|
||||
|
Loading…
Reference in New Issue
Block a user