summaryrefslogtreecommitdiff
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-01-08 22:39:25 +0100
committerClément Bœsch <ubitux@gmail.com>2013-01-08 23:21:05 +0100
commit119d70db5099f9513d954283245efd7f699ad321 (patch)
tree1c1fe7ef8956f6e6cf82cfacf6909c85176758fb /libavformat/mux.c
parenta260c79733702ebcfb3d14d93cac10ae433ef03a (diff)
lavf/mux: do not pass a copy of the packet to write_packet().
Sometimes the muxer modifies the packet, like for instance lavf/mp3enc changing pkt->destruct in order to keep a copy. These changes must be kept, even though the muxer behaviour is questionable. Regression since 0072116. Fixes #2124.
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index c7e176abb3..c34a2946c7 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -490,13 +490,12 @@ static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt)
*/
static inline int split_write_packet(AVFormatContext *s, AVPacket *pkt)
{
- int ret;
- AVPacket spkt = *pkt;
+ int ret, did_split;
- av_packet_split_side_data(&spkt);
- ret = s->oformat->write_packet(s, &spkt);
- spkt.data = NULL;
- av_destruct_packet(&spkt);
+ did_split = av_packet_split_side_data(pkt);
+ ret = s->oformat->write_packet(s, pkt);
+ if (did_split)
+ av_packet_merge_side_data(pkt);
return ret;
}