Merge commit '69277069dd225f5ae02f0215e877a06522d834d3'
* commit '69277069dd225f5ae02f0215e877a06522d834d3': dct: Check memory allocation Conflicts: libavcodec/dct.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
3a8b16f78e
@ -191,6 +191,8 @@ av_cold int ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType inverse)
|
|||||||
|
|
||||||
s->costab = ff_cos_tabs[nbits + 2];
|
s->costab = ff_cos_tabs[nbits + 2];
|
||||||
s->csc2 = av_malloc_array(n / 2, sizeof(FFTSample));
|
s->csc2 = av_malloc_array(n / 2, sizeof(FFTSample));
|
||||||
|
if (!s->csc2)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
if (ff_rdft_init(&s->rdft, nbits, inverse == DCT_III) < 0) {
|
if (ff_rdft_init(&s->rdft, nbits, inverse == DCT_III) < 0) {
|
||||||
av_freep(&s->csc2);
|
av_freep(&s->csc2);
|
||||||
|
Loading…
Reference in New Issue
Block a user