]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_extractplanes.c
Merge commit '5e5fb21877d8da7b3b8a27bb4d6a070d210c152d'
[ffmpeg] / libavfilter / vf_extractplanes.c
index 7c04a781cbe24b2b0d2f780dac1a2b7a2f768fba..fadd2dd8b68d843421d9c63853d0527cec723553 100644 (file)
@@ -296,7 +296,7 @@ static const AVFilterPad extractplanes_inputs[] = {
     { NULL }
 };
 
-AVFilter avfilter_vf_extractplanes = {
+AVFilter ff_vf_extractplanes = {
     .name          = "extractplanes",
     .description   = NULL_IF_CONFIG_SMALL("Extract planes as grayscale frames."),
     .priv_size     = sizeof(ExtractPlanesContext),
@@ -320,7 +320,7 @@ static av_cold int init_alphaextract(AVFilterContext *ctx)
     return init(ctx);
 }
 
-AVFilter avfilter_vf_alphaextract = {
+AVFilter ff_vf_alphaextract = {
     .name           = "alphaextract",
     .description    = NULL_IF_CONFIG_SMALL("Extract an alpha channel as a "
                       "grayscale image component."),