Commit 4a2fd251 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'cdf58f05'

* commit 'cdf58f05':
  avpacket: fix copying side data in av_packet_copy_props()
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 999a99c8 cdf58f05
......@@ -507,7 +507,6 @@ int av_packet_copy_props(AVPacket *dst, const AVPacket *src)
dst->convergence_duration = src->convergence_duration;
dst->flags = src->flags;
dst->stream_index = src->stream_index;
dst->side_data_elems = src->side_data_elems;
for (i = 0; i < src->side_data_elems; i++) {
enum AVPacketSideDataType type = src->side_data[i].type;
......
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