]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_drawbox.c
vf_deinterlace_vaapi: Create filter buffer after context
[ffmpeg] / libavfilter / vf_drawbox.c
index 773aa01548660668d8ffa9d5ac295766ecf0cba2..ab14af2e12f81330f6669e79252d01dacc257074 100644 (file)
@@ -36,7 +36,7 @@
 
 enum { Y, U, V, A };
 
-typedef struct {
+typedef struct DrawBoxContext {
     const AVClass *class;
     int x, y, w_opt, h_opt, w, h;
     char *color_str;
@@ -158,7 +158,7 @@ static const AVFilterPad avfilter_vf_drawbox_outputs[] = {
     { NULL }
 };
 
-AVFilter avfilter_vf_drawbox = {
+AVFilter ff_vf_drawbox = {
     .name      = "drawbox",
     .description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
     .priv_size = sizeof(DrawBoxContext),