diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-17 23:19:47 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-17 23:37:05 +0200 |
commit | f212c2380a11bb89ab3320ddfb9167371811cfea (patch) | |
tree | 4870e3b4cb88cd97a665034557e87800d7d7c0b1 | |
parent | c25224737cba4079602c447c344cb54b81430ce4 (diff) | |
download | ffmpeg-f212c2380a11bb89ab3320ddfb9167371811cfea.tar.gz |
lavfi/setsar: remove spurious #if FF_API_OLD_FILTER_OPTS around init field
-rw-r--r-- | libavfilter/vf_aspect.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c index 939c966834..bc2dd96b07 100644 --- a/libavfilter/vf_aspect.c +++ b/libavfilter/vf_aspect.c @@ -216,11 +216,7 @@ static const AVFilterPad avfilter_vf_setsar_outputs[] = { AVFilter avfilter_vf_setsar = { .name = "setsar", .description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."), - -#if FF_API_OLD_FILTER_OPTS .init = init, -#endif - .priv_size = sizeof(AspectContext), .priv_class = &setsar_class, |