Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-01-19 02:00:12 +0400
committerDiego Biurrun <diego@biurrun.de>2012-01-19 03:19:43 +0400
commit45f2908d021e1831197b75efeed489b25ea11478 (patch)
tree0ce1f356f73a31e5255d03a889526536eed80ef2 /avconv.c
parent0184bbe2d1e9a77ebe04e61f84a967662b79d387 (diff)
cosmetics: Rename ffsink to avsink.
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/avconv.c b/avconv.c
index e2cc4b0381..008cfe0275 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;
- FFSinkContext ffsink_ctx = { .pix_fmt = codec->pix_fmt };
+ AVSinkContext avsink_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, &ffsink,
- "out", NULL, &ffsink_ctx, ost->graph);
+ ret = avfilter_graph_create_filter(&ost->output_video_filter, &avsink,
+ "out", NULL, &avsink_ctx, ost->graph);
if (ret < 0)
return ret;
last_filter = ost->input_video_filter;