Commit ac74dfa4 authored by Stefano Sabatini's avatar Stefano Sabatini

Fix start_frame(), which was issuing chroma artifacts with planar

formats with more than 8 bits per pixel (e.g. YUVXXXP16).

Originally committed as revision 20479 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5f36d94d
...@@ -180,7 +180,7 @@ static void start_frame(AVFilterLink *link, AVFilterPicRef *picref) ...@@ -180,7 +180,7 @@ static void start_frame(AVFilterLink *link, AVFilterPicRef *picref)
for (i = 1; i < 3; i ++) { for (i = 1; i < 3; i ++) {
if (ref2->data[i]) { if (ref2->data[i]) {
ref2->data[i] += (crop->y >> crop->vsub) * ref2->linesize[i]; ref2->data[i] += (crop->y >> crop->vsub) * ref2->linesize[i];
ref2->data[i] += crop->x >> crop->hsub; ref2->data[i] += ((crop->x * crop->bpp) >> 3) >> crop->hsub;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment