diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-18 23:00:12 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-19 00:19:43 +0100 |
commit | 45f2908d021e1831197b75efeed489b25ea11478 (patch) | |
tree | 0ce1f356f73a31e5255d03a889526536eed80ef2 /avconv.c | |
parent | 0184bbe2d1e9a77ebe04e61f84a967662b79d387 (diff) | |
download | ffmpeg-45f2908d021e1831197b75efeed489b25ea11478.tar.gz |
cosmetics: Rename ffsink to avsink.
Diffstat (limited to 'avconv.c')
-rw-r--r-- | avconv.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |