Browse Source

avcodec/libopenh264enc: Avoid usage of deprecated ff_alloc_packet()

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

+ 1
- 1
libavcodec/libopenh264enc.c View File

@@ -202,7 +202,7 @@ static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
}
av_log(avctx, AV_LOG_DEBUG, "%d slices\n", fbi.sLayerInfo[fbi.iLayerNum - 1].iNalCount);

if ((ret = ff_alloc_packet(avpkt, size))) {
if ((ret = ff_alloc_packet2(avctx, avpkt, size, size))) {
av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
return ret;
}


Loading…
Cancel
Save