]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_thumbnail.c
Merge commit 'dc574658d15ad8f171dbdecbdce7197acf9424a0'
[ffmpeg] / libavfilter / vf_thumbnail.c
index d32c6c7b295188a57f1badb33af7bf129bb951ce..f0bb3db0e5288279b19d0c636c025ea38a94a341 100644 (file)
@@ -56,7 +56,7 @@ static const AVOption thumbnail_options[] = {
 
 AVFILTER_DEFINE_CLASS(thumbnail);
 
-static av_cold int init(AVFilterContext *ctx, const char *args)
+static av_cold int init(AVFilterContext *ctx)
 {
     ThumbContext *thumb = ctx->priv;
 
@@ -227,8 +227,6 @@ static const AVFilterPad thumbnail_outputs[] = {
     { NULL }
 };
 
-static const char *const shorthand[] = { "n", NULL };
-
 AVFilter avfilter_vf_thumbnail = {
     .name          = "thumbnail",
     .description   = NULL_IF_CONFIG_SMALL("Select the most representative frame in a given sequence of consecutive frames."),
@@ -239,5 +237,4 @@ AVFilter avfilter_vf_thumbnail = {
     .inputs        = thumbnail_inputs,
     .outputs       = thumbnail_outputs,
     .priv_class    = &thumbnail_class,
-    .shorthand     = shorthand,
 };