mirror of
https://github.com/mpv-player/mpv
synced 2024-12-26 17:12:36 +00:00
demux_lavf: don't copy cover art picture
Use the AVPacket refcounting mechanism instead.
This commit is contained in:
parent
3a7563a999
commit
a4e29e67f9
@ -577,8 +577,8 @@ static void handle_new_stream(demuxer_t *demuxer, int i)
|
|||||||
sh = demux_alloc_sh_stream(STREAM_VIDEO);
|
sh = demux_alloc_sh_stream(STREAM_VIDEO);
|
||||||
|
|
||||||
if (st->disposition & AV_DISPOSITION_ATTACHED_PIC) {
|
if (st->disposition & AV_DISPOSITION_ATTACHED_PIC) {
|
||||||
sh->attached_picture = new_demux_packet_from(st->attached_pic.data,
|
sh->attached_picture =
|
||||||
st->attached_pic.size);
|
new_demux_packet_from_avpacket(&st->attached_pic);
|
||||||
if (sh->attached_picture) {
|
if (sh->attached_picture) {
|
||||||
sh->attached_picture->pts = 0;
|
sh->attached_picture->pts = 0;
|
||||||
talloc_steal(sh, sh->attached_picture);
|
talloc_steal(sh, sh->attached_picture);
|
||||||
|
Loading…
Reference in New Issue
Block a user