From abe655a4723290497fd727df61fab2840d84b643 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 19 Jan 2012 16:10:13 +0100 Subject: Drop unnecessary prefix from *sink* variable and struct names. --- avconv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'avconv.c') diff --git a/avconv.c b/avconv.c index 46f3090..77d6648 100644 --- a/avconv.c +++ b/avconv.c @@ -550,7 +550,7 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost) /** filter graph containing all filters including input & output */ AVCodecContext *codec = ost->st->codec; AVCodecContext *icodec = ist->st->codec; - AVSinkContext avsink_ctx = { .pix_fmt = codec->pix_fmt }; + SinkContext sink_ctx = { .pix_fmt = codec->pix_fmt }; AVRational sample_aspect_ratio; char args[255]; int ret; @@ -570,8 +570,8 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost) "src", args, NULL, ost->graph); if (ret < 0) return ret; - ret = avfilter_graph_create_filter(&ost->output_video_filter, &avsink, - "out", NULL, &avsink_ctx, ost->graph); + ret = avfilter_graph_create_filter(&ost->output_video_filter, &sink, + "out", NULL, &sink_ctx, ost->graph); if (ret < 0) return ret; last_filter = ost->input_video_filter; -- cgit v1.1