[FFmpeg-cvslog] avconv: pass the global codec side data to the muxer

Anton Khirnov git at videolan.org
Thu Dec 17 13:24:08 CET 2015


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun Oct  4 13:17:41 2015 +0200| [e63e3797a1ed9346f529848e6ba3d27fd2d2cc8d] | committer: Anton Khirnov

avconv: pass the global codec side data to the muxer

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

 avconv.c |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/avconv.c b/avconv.c
index 7334851..57a3718 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1602,6 +1602,28 @@ static int init_output_stream(OutputStream *ost, char *error, int error_len)
             exit_program(1);
         }
 
+        if (ost->enc_ctx->nb_coded_side_data) {
+            int i;
+
+            ost->st->side_data = av_realloc_array(NULL, ost->enc_ctx->nb_coded_side_data,
+                                                  sizeof(*ost->st->side_data));
+            if (!ost->st->side_data)
+                return AVERROR(ENOMEM);
+
+            for (i = 0; i < ost->enc_ctx->nb_coded_side_data; i++) {
+                const AVPacketSideData *sd_src = &ost->enc_ctx->coded_side_data[i];
+                AVPacketSideData *sd_dst = &ost->st->side_data[i];
+
+                sd_dst->data = av_malloc(sd_src->size);
+                if (!sd_dst->data)
+                    return AVERROR(ENOMEM);
+                memcpy(sd_dst->data, sd_src->data, sd_src->size);
+                sd_dst->size = sd_src->size;
+                sd_dst->type = sd_src->type;
+                ost->st->nb_side_data++;
+            }
+        }
+
         ost->st->time_base = ost->enc_ctx->time_base;
     } else {
         ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);



More information about the ffmpeg-cvslog mailing list