Browse Source

pngenc: allocate packets that have some chance of being large enough.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
309d8ec19b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/pngenc.c

+ 1
- 1
libavcodec/pngenc.c View File

@@ -229,7 +229,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
p->pict_type= AV_PICTURE_TYPE_I;
p->key_frame= 1;

max_packet_size = IOBUF_SIZE*avctx->height + FF_MIN_BUFFER_SIZE;
max_packet_size = avctx->width * avctx->height * 9 + FF_MIN_BUFFER_SIZE;
if (!pkt->data &&
(ret = av_new_packet(pkt, max_packet_size)) < 0) {
av_log(avctx, AV_LOG_ERROR, "Could not allocate output packet of size %d.\n",


Loading…
Cancel
Save