diff options
author | Nicolas George <george@nsup.org> | 2014-03-05 17:59:38 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-03-08 15:17:14 +0100 |
commit | 7d995cd1b8e2c73edf9886182722359c0027bf62 (patch) | |
tree | 6792e5ba8901638b835ddf9be1f9ef66f09b4dd1 /libavfilter/af_atempo.c | |
parent | 124c78fd4449ed3ddbdc2398e7570119bb8babf9 (diff) | |
download | ffmpeg-7d995cd1b8e2c73edf9886182722359c0027bf62.tar.gz |
lavfi/af_atempo: clear references before returning error.
Once the frame has been given to ff_filter_frame(), it can
no longer be used, even on error.
Fix trac ticket #3430.
(cherry picked from commit bc6901c94944e4a81be49a6b11183cd0c55d2738)
Diffstat (limited to 'libavfilter/af_atempo.c')
-rw-r--r-- | libavfilter/af_atempo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c index c474d6a58c..6a3fd61e60 100644 --- a/libavfilter/af_atempo.c +++ b/libavfilter/af_atempo.c @@ -1058,11 +1058,11 @@ static int push_samples(ATempoContext *atempo, outlink->time_base); ret = ff_filter_frame(outlink, atempo->dst_buffer); - if (ret < 0) - return ret; atempo->dst_buffer = NULL; atempo->dst = NULL; atempo->dst_end = NULL; + if (ret < 0) + return ret; atempo->nsamples_out += n_out; return 0; |