diff options
author | James Almer <[email protected]> | 2013-12-06 00:35:35 -0300 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2013-12-06 19:33:41 +0100 |
commit | 618bdb7f580003012568573b3ce0551a789d2f60 (patch) | |
tree | 3cea972b9705f9db656ac88931c1e4f27da54d7e /libavformat/mux.c | |
parent | 90539cea336fd513c47295a03c164cb4a851166f (diff) |
lavf/mux: Don't write "encoder" metadata tag when bitexact is requested
Since we don't write lavf's string when bitexact is requested, this will
prevent the tag from being copied from the source stream.
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r-- | libavformat/mux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index eff7caab25..79625c6547 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -339,6 +339,8 @@ static int init_muxer(AVFormatContext *s, AVDictionary **options) /* set muxer identification string */ if (s->nb_streams && !(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) { av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0); + } else { + av_dict_set(&s->metadata, "encoder", NULL, 0); } if (options) { |