diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-12 23:46:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-12 23:46:43 +0200 |
commit | ad6f006081c04532335324a5a72d61f36ec386d7 (patch) | |
tree | 314b472bdb585e0ebe4092e23884794fc89dd91d /libavfilter/avfilter.c | |
parent | 70e9308decc266da9d65851725c831e8dadd969e (diff) | |
download | ffmpeg-ad6f006081c04532335324a5a72d61f36ec386d7.tar.gz |
avfilter: fix regression since addition of extended_data to audio
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
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))) { |