From 4d4098da009c8340997b8d1abedbf2062e4aa991 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 12 May 2012 17:38:47 +0200 Subject: lavfi: drop planar/packed negotiation support The planar/packed switch and the packing_formats list is no longer required, since the planar/packed information is now stored in the sample format enum. This is technically a major API break, possibly it should be not too painful as we marked the audio filtering API as unstable. --- libavfilter/af_astreamsync.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavfilter/af_astreamsync.c') diff --git a/libavfilter/af_astreamsync.c b/libavfilter/af_astreamsync.c index 9f040238d9..c591293a46 100644 --- a/libavfilter/af_astreamsync.c +++ b/libavfilter/af_astreamsync.c @@ -87,9 +87,6 @@ static int query_formats(AVFilterContext *ctx) formats = ctx->inputs[i]->in_formats; avfilter_formats_ref(formats, &ctx->inputs[i]->out_formats); avfilter_formats_ref(formats, &ctx->outputs[i]->in_formats); - formats = ctx->inputs[i]->in_packing; - avfilter_formats_ref(formats, &ctx->inputs[i]->out_packing); - avfilter_formats_ref(formats, &ctx->outputs[i]->in_packing); layouts = ctx->inputs[i]->in_channel_layouts; ff_channel_layouts_ref(layouts, &ctx->inputs[i]->out_channel_layouts); ff_channel_layouts_ref(layouts, &ctx->outputs[i]->in_channel_layouts); -- cgit v1.2.3