mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
dvenc: switch to ff_alloc_packet2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
aa9700c988
commit
8f80e5fbea
@ -1286,8 +1286,7 @@ static int dvvideo_encode_frame(AVCodecContext *c, AVPacket *pkt,
|
|||||||
s->sys = avpriv_dv_codec_profile(c);
|
s->sys = avpriv_dv_codec_profile(c);
|
||||||
if (!s->sys || dv_init_dynamic_tables(s->sys))
|
if (!s->sys || dv_init_dynamic_tables(s->sys))
|
||||||
return -1;
|
return -1;
|
||||||
if ((ret = ff_alloc_packet(pkt, s->sys->frame_size)) < 0) {
|
if ((ret = ff_alloc_packet2(c, pkt, s->sys->frame_size)) < 0) {
|
||||||
av_log(c, AV_LOG_ERROR, "Error getting output packet.\n");
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user