Crude fix for AVPicture being removed in ffmpeg 5

pull/3456/head
Exuvo 2022-03-11 21:45:34 +01:00
parent d1395dab9a
commit a2cf001f66
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ double VideoStream::ActuallyEncodeFrame( const uint8_t *buffer, int buffer_size,
pkt->flags |= AV_PKT_FLAG_KEY;
pkt->stream_index = ost->index;
pkt->data = (uint8_t *)opicture_ptr;
pkt->size = sizeof (AVPicture);
pkt->size = 8 + 4;
got_packet = 1;
} else {
opicture_ptr->pts = codec_context->frame_number;