summaryrefslogtreecommitdiff
path: root/libavfilter/vf_transpose.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-30 10:12:55 +0200
committerAnton Khirnov <anton@khirnov.net>2012-06-05 09:37:30 +0200
commitb74a1da49db5ebed51aceae6cacc2329288a92c1 (patch)
treef378b31cc8fdde6de2932826615fed912eec67c0 /libavfilter/vf_transpose.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_transpose.c')
-rw-r--r--libavfilter/vf_transpose.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_transpose.c b/libavfilter/vf_transpose.c
index a0ec67c426..7801066824 100644
--- a/libavfilter/vf_transpose.c
+++ b/libavfilter/vf_transpose.c
@@ -29,6 +29,7 @@
#include "libavutil/pixdesc.h"
#include "libavutil/imgutils.h"
#include "avfilter.h"
+#include "formats.h"
typedef struct {
int hsub, vsub;
@@ -83,7 +84,7 @@ static int query_formats(AVFilterContext *ctx)
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;
}