Commit d2971912 authored by Michael Niedermayer's avatar Michael Niedermayer

libxavs: switch to ff_alloc_packet2().

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 660e8cb9
......@@ -87,8 +87,7 @@ static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
for (i = 0; i < nnal; i++)
size += nals[i].i_payload;
if ((ret = ff_alloc_packet(pkt, size)) < 0) {
av_log(ctx, AV_LOG_ERROR, "Error getting output packet of size %d.\n", size);
if ((ret = ff_alloc_packet2(ctx, pkt, size)) < 0) {
return ret;
}
p = pkt->data;
......@@ -144,7 +143,7 @@ static int XAVS_frame(AVCodecContext *ctx, AVPacket *pkt,
if (!ret) {
if (!frame && !(x4->end_of_stream)) {
if ((ret = ff_alloc_packet(pkt, 4)) < 0)
if ((ret = ff_alloc_packet2(ctx, pkt, 4)) < 0)
return ret;
pkt->data[0] = 0x0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment