mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avpacket: copy side data type and size in av_dup_packet
This commit is contained in:
parent
5b3c1aecb2
commit
91d4823f70
@ -193,9 +193,12 @@ int av_dup_packet(AVPacket *pkt)
|
||||
pkt->side_data_elems * sizeof(*pkt->side_data), 0, ALLOC_MALLOC);
|
||||
memset(pkt->side_data, 0,
|
||||
pkt->side_data_elems * sizeof(*pkt->side_data));
|
||||
for (i = 0; i < pkt->side_data_elems; i++)
|
||||
for (i = 0; i < pkt->side_data_elems; i++) {
|
||||
DUP_DATA(pkt->side_data[i].data, tmp_pkt.side_data[i].data,
|
||||
tmp_pkt.side_data[i].size, 1, ALLOC_MALLOC);
|
||||
pkt->side_data[i].size = tmp_pkt.side_data[i].size;
|
||||
pkt->side_data[i].type = tmp_pkt.side_data[i].type;
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user