avcodec/alacenc: allocate bigger packets

pull/228/head
Paul B Mahol 8 years ago
parent 1fcf243216
commit 82b84c71b0
  1. 2
      libavcodec/alacenc.c

@ -623,7 +623,7 @@ static int alac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
else
max_frame_size = s->max_coded_frame_size;
if ((ret = ff_alloc_packet2(avctx, avpkt, 2 * max_frame_size, 0)) < 0)
if ((ret = ff_alloc_packet2(avctx, avpkt, 4 * max_frame_size, 0)) < 0)
return ret;
/* use verbatim mode for compression_level 0 */

Loading…
Cancel
Save