Browse Source

avcodec/aliaspixenc: Use ff_alloc_packet2()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Michael Niedermayer 10 years ago
parent
commit
107026ea81
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aliaspixenc.c

+ 1
- 1
libavcodec/aliaspixenc.c View File

@@ -61,7 +61,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
}

length = ALIAS_HEADER_SIZE + 4 * width * height; // max possible
if ((ret = ff_alloc_packet(pkt, length)) < 0) {
if ((ret = ff_alloc_packet2(avctx, pkt, length, ALIAS_HEADER_SIZE + height*2)) < 0) {
av_log(avctx, AV_LOG_ERROR, "Error getting output packet of size %d.\n", length);
return ret;
}


Loading…
Cancel
Save