]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_select.c
lavfi/hflip: copy palette data in start_frame()
[ffmpeg] / libavfilter / vf_select.c
index 2ffa49678816a9e2baa5ae89f244fb50c31c3faa..d3f649cbffcbbd9fd8dd4b5b91e42475fbb6e27e 100644 (file)
@@ -26,6 +26,7 @@
 #include "libavutil/eval.h"
 #include "libavutil/fifo.h"
 #include "avfilter.h"
+#include "video.h"
 
 static const char *const var_names[] = {
     "TB",                ///< timebase
@@ -326,7 +327,7 @@ AVFilter avfilter_vf_select = {
 
     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
                                     .type             = AVMEDIA_TYPE_VIDEO,
-                                    .get_video_buffer = avfilter_null_get_video_buffer,
+                                    .get_video_buffer = ff_null_get_video_buffer,
                                     .config_props     = config_input,
                                     .start_frame      = start_frame,
                                     .draw_slice       = draw_slice,