Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-11-03 16:55:56 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-17 14:47:40 +0300
commit07c5e65e6d6b2fbd1d01cb4f2fa9073eb1a26150 (patch)
tree8e3dc59d2c4be30d08cb6d366a89a323a8bb8ee7 /ffmpeg.c
parent7521d5b8daae7969887f694caef5cd025f35b6ac (diff)
ffmpeg: Fix bsf corrupting merged side data
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 11f24e71ff2b598d973fd24bcf950eebaea9b3e6) 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 3b9171090f..6b7ce720c1 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -789,6 +789,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;