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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-30 12:12:55 +0400
committerAnton Khirnov <anton@khirnov.net>2012-06-05 11:37:30 +0400
commitb74a1da49db5ebed51aceae6cacc2329288a92c1 (patch)
treef378b31cc8fdde6de2932826615fed912eec67c0 /libavfilter/vf_libopencv.c
parent67339f6eb41299096dd7de94f557b487ec3477ff (diff)
lavfi: make formats API private on next bump.
It is only useful inside filters and we don't allow user filters for now.
Diffstat (limited to 'libavfilter/vf_libopencv.c')
-rw-r--r--libavfilter/vf_libopencv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c
index 6e343af7ef..2bbbb6a373 100644
--- a/libavfilter/vf_libopencv.c
+++ b/libavfilter/vf_libopencv.c
@@ -61,7 +61,7 @@ static int query_formats(AVFilterContext *ctx)
PIX_FMT_BGR24, PIX_FMT_BGRA, PIX_FMT_GRAY8, PIX_FMT_NONE
};
- avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
+ ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
return 0;
}