]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_blackframe.c
lavfi: make formats API private on next bump.
[ffmpeg] / libavfilter / vf_blackframe.c
index 7e69ccb1f6559edf410765de08c7d53f45b84a29..bdc132285e4126938112c906ebcd9368bd76b491 100644 (file)
@@ -28,6 +28,7 @@
  */
 
 #include "avfilter.h"
+#include "formats.h"
 #include "video.h"
 
 typedef struct {
@@ -45,7 +46,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;
 }