X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oggdec_filter.c;h=511e6405e533c1028a511b0828ea479b31b67b77;hp=2c9d25f285fe3b7a15939d791fef11fe4ed62ed8;hb=c282c836791cedf57c128555af90af37c7c01c05;hpb=fb6d93240bb9c7c3d2c8e1826d722296002fb487 diff --git a/oggdec_filter.c b/oggdec_filter.c index 2c9d25f2..511e6405 100644 --- a/oggdec_filter.c +++ b/oggdec_filter.c @@ -384,6 +384,11 @@ err: return ret; } +static void oggdec_free_config(void *conf) +{ + oggdec_cmdline_parser_free(conf); +} + /** * The init function of the ogg vorbis decoder. * @@ -400,6 +405,7 @@ void oggdec_filter_init(struct filter *f) f->pre_select = generic_filter_pre_select; f->post_select = ogg_post_select; f->parse_config = oggdec_parse_config; + f->free_config = oggdec_free_config; f->execute = oggdec_execute; f->help = (struct ggo_help) { .short_help = oggdec_filter_args_info_help,