mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
ffmpegcolorspace: Fix Y41B->Y444 conversion
...which is the intermediate conversion for conversion to all other formats. Fixes bug #616545.
This commit is contained in:
parent
0a8b8ceda0
commit
b5853bf8ba
1 changed files with 1 additions and 1 deletions
|
@ -1869,7 +1869,7 @@ grow41_line (uint8_t * dst, const uint8_t * src, int width)
|
||||||
s1++;
|
s1++;
|
||||||
d += 4;
|
d += 4;
|
||||||
}
|
}
|
||||||
for (; w >= 0; w--) {
|
for (; w > 0; w--) {
|
||||||
d[0] = s1[0];
|
d[0] = s1[0];
|
||||||
d++;
|
d++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue