ffmpegcolorspace: Fix Y41B->Y444 conversion

...which is the intermediate conversion for conversion to all
other formats.

Fixes bug #616545.
This commit is contained in:
Sebastian Dröge 2010-04-22 20:58:29 +02:00
parent 0a8b8ceda0
commit b5853bf8ba

View file

@ -1869,7 +1869,7 @@ grow41_line (uint8_t * dst, const uint8_t * src, int width)
s1++;
d += 4;
}
for (; w >= 0; w--) {
for (; w > 0; w--) {
d[0] = s1[0];
d++;
}