diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 04:22:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 19:03:18 +0100 |
commit | 8f80e5fbeaca2f81259ce65f64cc238638bb5aa0 (patch) | |
tree | 6c6df01165a13d34a38220f296c0b5b42080cbb3 /libavcodec/dv.c | |
parent | aa9700c9887179249b7817e73245f521c3f6c5da (diff) | |
download | ffmpeg-8f80e5fbeaca2f81259ce65f64cc238638bb5aa0.tar.gz |
dvenc: switch to ff_alloc_packet2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 4717de3924..5312f34c4b 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -1286,8 +1286,7 @@ static int dvvideo_encode_frame(AVCodecContext *c, AVPacket *pkt, s->sys = avpriv_dv_codec_profile(c); if (!s->sys || dv_init_dynamic_tables(s->sys)) return -1; - if ((ret = ff_alloc_packet(pkt, s->sys->frame_size)) < 0) { - av_log(c, AV_LOG_ERROR, "Error getting output packet.\n"); + if ((ret = ff_alloc_packet2(c, pkt, s->sys->frame_size)) < 0) { return ret; } |