Browse Source

sunrastenc: switch to ff_alloc_packet2().

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

+ 1
- 1
libavcodec/sunrastenc.c View File

@@ -184,7 +184,7 @@ static int sunrast_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
SUNRASTContext *s = avctx->priv_data;
int ret;

if ((ret = ff_alloc_packet(avpkt, s->size)) < 0)
if ((ret = ff_alloc_packet2(avctx, avpkt, s->size)) < 0)
return ret;

bytestream2_init_writer(&s->p, avpkt->data, avpkt->size);


Loading…
Cancel
Save