examples/dmabuf-capture: stop using av_init_packet

It's deprecated in ffmpeg >= 4.4.

Closes: https://github.com/swaywm/wlroots/issues/2798
This commit is contained in:
Simon Ser 2021-03-22 11:42:57 +01:00 committed by Kenny Levinsen
parent e8ad05913f
commit 6230f7be4f
1 changed files with 8 additions and 7 deletions

View File

@ -490,26 +490,27 @@ static void *vid_encode_thread(void *arg) {
}
while (1) {
AVPacket pkt;
av_init_packet(&pkt);
int ret = avcodec_receive_packet(ctx->avctx, &pkt);
AVPacket *pkt = av_packet_alloc();
int ret = avcodec_receive_packet(ctx->avctx, pkt);
if (ret == AVERROR(EAGAIN)) {
av_packet_free(&pkt);
break;
} else if (ret == AVERROR_EOF) {
av_log(ctx, AV_LOG_INFO, "Encoder flushed!\n");
av_packet_free(&pkt);
goto end;
} else if (ret) {
av_log(ctx, AV_LOG_ERROR, "Error encoding: %s!\n",
av_err2str(ret));
av_packet_free(&pkt);
err = ret;
goto end;
}
pkt.stream_index = 0;
err = av_interleaved_write_frame(ctx->avf, &pkt);
pkt->stream_index = 0;
err = av_interleaved_write_frame(ctx->avf, pkt);
av_packet_unref(&pkt);
av_packet_free(&pkt);
if (err) {
av_log(ctx, AV_LOG_ERROR, "Writing packet fail: %s!\n",