Commit 14e3b120 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Anton Khirnov

Reduce picture size for yadif.

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 52512d0a
...@@ -150,7 +150,7 @@ static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, ...@@ -150,7 +150,7 @@ static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w,
{ {
AVFilterBufferRef *picref; AVFilterBufferRef *picref;
int width = FFALIGN(w, 32); int width = FFALIGN(w, 32);
int height= FFALIGN(h+6, 32); int height= FFALIGN(h+2, 32);
int i; int i;
picref = avfilter_default_get_video_buffer(link, perms, width, height); picref = avfilter_default_get_video_buffer(link, perms, width, height);
...@@ -159,7 +159,7 @@ static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, ...@@ -159,7 +159,7 @@ static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w,
picref->video->h = h; picref->video->h = h;
for (i = 0; i < 3; i++) for (i = 0; i < 3; i++)
picref->data[i] += 3 * picref->linesize[i]; picref->data[i] += picref->linesize[i];
return picref; return picref;
} }
......
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