Commit b955a333 authored by James Almer's avatar James Almer

ffmpeg: simplify refcounting packets for the muxing queue

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent f563e786
...@@ -724,11 +724,11 @@ static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int u ...@@ -724,11 +724,11 @@ static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int u
if (ret < 0) if (ret < 0)
exit_program(1); exit_program(1);
} }
ret = av_packet_ref(&tmp_pkt, pkt); ret = av_packet_make_refcounted(pkt);
if (ret < 0) if (ret < 0)
exit_program(1); exit_program(1);
av_packet_move_ref(&tmp_pkt, pkt);
av_fifo_generic_write(ost->muxing_queue, &tmp_pkt, sizeof(tmp_pkt), NULL); av_fifo_generic_write(ost->muxing_queue, &tmp_pkt, sizeof(tmp_pkt), NULL);
av_packet_unref(pkt);
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment