From ad6f006081c04532335324a5a72d61f36ec386d7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 12 May 2012 23:46:43 +0200 Subject: avfilter: fix regression since addition of extended_data to audio Signed-off-by: Michael Niedermayer --- libavfilter/avfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/avfilter.c') diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 073b259949..4354f8ca03 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -78,7 +78,7 @@ AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask) } *ret->audio = *ref->audio; - if (ref->extended_data != ref->data) { + if (ref->extended_data && ref->extended_data != ref->data) { int nb_channels = av_get_channel_layout_nb_channels(ref->audio->channel_layout); if (!(ret->extended_data = av_malloc(sizeof(*ret->extended_data) * nb_channels))) { -- cgit v1.2.3