[FFmpeg-cvslog] ffmpeg: Fix bsf corrupting merged side data

Michael Niedermayer git at videolan.org
Fri Nov 4 01:45:11 EET 2016


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Nov  3 14:55:56 2016 +0100| [11f24e71ff2b598d973fd24bcf950eebaea9b3e6] | committer: Michael Niedermayer

ffmpeg: Fix bsf corrupting merged side data

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 ffmpeg.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ffmpeg.c b/ffmpeg.c
index 52c655f..9809876 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;



More information about the ffmpeg-cvslog mailing list