diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-06-02 23:17:48 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-10 02:13:12 +0200 |
commit | 6d7384bd735b9e75f15af4639a102bdc9bdc2891 (patch) | |
tree | af5d37a86bcbea07cdee42cfa7c3df02c11ad6c0 /libswresample/swresample.c | |
parent | 9db97584ca5b1664f44f43f18546f78afd4db686 (diff) | |
download | ffmpeg-6d7384bd735b9e75f15af4639a102bdc9bdc2891.tar.gz |
swresample/dither: check memory allocation
check memory allocation in swri_get_dither()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 196b885a5f0aa3ca022c1fa99509f47341239784)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r-- | libswresample/swresample.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index e866dc24e9..55f538a443 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -700,7 +700,8 @@ static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_co return ret; if(ret) for(ch=0; ch<s->dither.noise.ch_count; ch++) - swri_get_dither(s, s->dither.noise.ch[ch], s->dither.noise.count, 12345678913579<<ch, s->dither.noise.fmt); + if((ret=swri_get_dither(s, s->dither.noise.ch[ch], s->dither.noise.count, 12345678913579<<ch, s->dither.noise.fmt))<0) + return ret; av_assert0(s->dither.noise.ch_count == preout->ch_count); if(s->dither.noise_pos + out_count > s->dither.noise.count) |