mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
bmpenc: switch to ff_alloc_packet2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a18cf3635c
commit
f79b09b7af
@ -120,8 +120,7 @@ static int bmp_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
||||
#define SIZE_BITMAPINFOHEADER 40
|
||||
hsize = SIZE_BITMAPFILEHEADER + SIZE_BITMAPINFOHEADER + (pal_entries << 2);
|
||||
n_bytes = n_bytes_image + hsize;
|
||||
if ((ret = ff_alloc_packet(pkt, n_bytes)) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
|
||||
if ((ret = ff_alloc_packet2(avctx, pkt, n_bytes)) < 0) {
|
||||
return ret;
|
||||
}
|
||||
buf = pkt->data;
|
||||
|
Loading…
Reference in New Issue
Block a user