Browse Source

lavf/tee: copy metadata to output chained muxers

tags/n2.1
Stefano Sabatini 12 years ago
parent
commit
0be3be9011
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/tee.c

+ 1
- 0
libavformat/tee.c View File

@@ -160,6 +160,7 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave)
ret = avformat_alloc_output_context2(&avf2, NULL, format, filename); ret = avformat_alloc_output_context2(&avf2, NULL, format, filename);
if (ret < 0) if (ret < 0)
goto end; goto end;
av_dict_copy(&avf2->metadata, avf->metadata, 0);


tee_slave->stream_map = av_calloc(avf->nb_streams, sizeof(*tee_slave->stream_map)); tee_slave->stream_map = av_calloc(avf->nb_streams, sizeof(*tee_slave->stream_map));
if (!tee_slave->stream_map) { if (!tee_slave->stream_map) {


Loading…
Cancel
Save