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 /avplay.c | |
parent | 0184bbe2d1e9a77ebe04e61f84a967662b79d387 (diff) | |
download | ffmpeg-45f2908d021e1831197b75efeed489b25ea11478.tar.gz |
cosmetics: Rename ffsink to avsink.
Diffstat (limited to 'avplay.c')
-rw-r--r-- | avplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1707,7 +1707,7 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c { char sws_flags_str[128]; int ret; - FFSinkContext ffsink_ctx = { .pix_fmt = PIX_FMT_YUV420P }; + AVSinkContext avsink_ctx = { .pix_fmt = PIX_FMT_YUV420P }; AVFilterContext *filt_src = NULL, *filt_out = NULL; snprintf(sws_flags_str, sizeof(sws_flags_str), "flags=%d", sws_flags); graph->scale_sws_opts = av_strdup(sws_flags_str); @@ -1715,8 +1715,8 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c if ((ret = avfilter_graph_create_filter(&filt_src, &input_filter, "src", NULL, is, graph)) < 0) return ret; - if ((ret = avfilter_graph_create_filter(&filt_out, &ffsink, "out", - NULL, &ffsink_ctx, graph)) < 0) + if ((ret = avfilter_graph_create_filter(&filt_out, &avsink, "out", + NULL, &avsink_ctx, graph)) < 0) return ret; if (vfilters) { |