[FFmpeg-cvslog] avpacket: fix copying side data in av_packet_copy_props()

Anton Khirnov git at videolan.org
Mon May 19 18:55:55 CEST 2014


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun May 18 21:16:47 2014 +0200| [cdf58f0599c39852ee3beafe5f64af7d57d4215b] | committer: Anton Khirnov

avpacket: fix copying side data in av_packet_copy_props()

Side data count is incremented by by calling av_packet_new_side_data()
in the following loop, setting it explicitly results in the resulting
value being twice what it should be.

CC: libav-stable at libav.org

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cdf58f0599c39852ee3beafe5f64af7d57d4215b
---

 libavcodec/avpacket.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c
index c0a0f8c..052aaf8 100644
--- a/libavcodec/avpacket.c
+++ b/libavcodec/avpacket.c
@@ -325,7 +325,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;



More information about the ffmpeg-cvslog mailing list