From ecc8dada379261b8ad3788336cdc9d15de55b64b Mon Sep 17 00:00:00 2001 From: "S.N. Hemanth Meenakshisundaram" Date: Sat, 7 Aug 2010 01:15:19 +0000 Subject: Rename AVFilterPicRef to AVFilterBufferRef. The struct is going to be used for storing audio buffer references as well, and the new name is more generic. Patch by S.N. Hemanth Meenakshisundaram @smeenaks@ucsd@edu@. Originally committed as revision 24730 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/vf_vflip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavfilter/vf_vflip.c') diff --git a/libavfilter/vf_vflip.c b/libavfilter/vf_vflip.c index 0dfcb35429..9d5d75ff22 100644 --- a/libavfilter/vf_vflip.c +++ b/libavfilter/vf_vflip.c @@ -39,13 +39,13 @@ static int config_input(AVFilterLink *link) return 0; } -static AVFilterPicRef *get_video_buffer(AVFilterLink *link, int perms, +static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h) { FlipContext *flip = link->dst->priv; int i; - AVFilterPicRef *picref = avfilter_get_video_buffer(link->dst->outputs[0], + AVFilterBufferRef *picref = avfilter_get_video_buffer(link->dst->outputs[0], perms, w, h); for (i = 0; i < 4; i ++) { @@ -60,7 +60,7 @@ static AVFilterPicRef *get_video_buffer(AVFilterLink *link, int perms, return picref; } -static void start_frame(AVFilterLink *link, AVFilterPicRef *picref) +static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref) { FlipContext *flip = link->dst->priv; int i; -- cgit v1.2.3