From 7313132bccc82fe379d88e37e407f842089ca630 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 7 Nov 2010 18:40:18 +0000 Subject: Rename AVFilterInOut field filter to filter_ctx, more semantically correct. Originally committed as revision 25700 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index 8b1878b0a1..4bac0cb7eb 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -388,12 +388,12 @@ static int configure_filters(AVInputStream *ist, AVOutputStream *ost) AVFilterInOut *inputs = av_malloc(sizeof(AVFilterInOut)); outputs->name = av_strdup("in"); - outputs->filter = last_filter; + outputs->filter_ctx = last_filter; outputs->pad_idx = 0; outputs->next = NULL; inputs->name = av_strdup("out"); - inputs->filter = ist->output_video_filter; + inputs->filter_ctx = ist->output_video_filter; inputs->pad_idx = 0; inputs->next = NULL; -- cgit v1.2.3