aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-13 00:45:30 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-13 00:45:30 +0200
commitdcea58502c9b7992e284233f2c5ba75c51456ad3 (patch)
treea20205d6632f5350eb8d4a3af0ef1d09a9741907 /libavfilter/avfilter.c
parent8f99494c1ca5ef0bed58ec1422ceeded545f2d4d (diff)
downloadandroid_external_ffmpeg-dcea58502c9b7992e284233f2c5ba75c51456ad3.tar.gz
android_external_ffmpeg-dcea58502c9b7992e284233f2c5ba75c51456ad3.tar.bz2
android_external_ffmpeg-dcea58502c9b7992e284233f2c5ba75c51456ad3.zip
lavfi: drop now unused shorthand field from AVFilter.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 211344c449..f39261342e 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -606,7 +606,7 @@ void avfilter_free(AVFilterContext *filter)
avfilter_link_free(&link);
}
- if (filter->filter->priv_class || filter->filter->shorthand)
+ if (filter->filter->priv_class)
av_opt_free(filter->priv);
av_freep(&filter->name);