summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-11-03 14:55:56 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-04 00:42:58 +0100
commit11f24e71ff2b598d973fd24bcf950eebaea9b3e6 (patch)
treeb3f869308de00fb243ef6c7e916af7a467423b9a /ffmpeg.c
parentcee1f4c06986941bd31cc19f4333d436394aa6f9 (diff)
ffmpeg: Fix bsf corrupting merged side data
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 52c655f2d1..980987604f 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -790,6 +790,7 @@ static void output_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost)
if (ost->nb_bitstream_filters) {
int idx;
+ av_packet_split_side_data(pkt);
ret = av_bsf_send_packet(ost->bsf_ctx[0], pkt);
if (ret < 0)
goto finish;