Browse Source

avcodec/v210enc: Use ff_alloc_packet2()

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

+ 1
- 1
libavcodec/v210enc.c View File

@@ -116,7 +116,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
int h, w, ret;
uint8_t *dst;

ret = ff_alloc_packet(pkt, avctx->height * stride);
ret = ff_alloc_packet2(avctx, pkt, avctx->height * stride, avctx->height * stride);
if (ret < 0) {
av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
return ret;


Loading…
Cancel
Save