Browse Source

avformat/flvenc: omit more metadata elements with specific meaning

Reviewed-by: Thilo Borgmann <thilo.borgmann@mail.de>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
58721388b8
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      libavformat/flvenc.c

+ 8
- 0
libavformat/flvenc.c View File

@@ -288,6 +288,14 @@ static void write_metadata(AVFormatContext *s, unsigned int ts)
||!strcmp(tag->key, "audiocodecid")
||!strcmp(tag->key, "duration")
||!strcmp(tag->key, "onMetaData")
||!strcmp(tag->key, "datasize")
||!strcmp(tag->key, "lasttimestamp")
||!strcmp(tag->key, "totalframes")
||!strcmp(tag->key, "hasAudio")
||!strcmp(tag->key, "hasVideo")
||!strcmp(tag->key, "hasCuePoints")
||!strcmp(tag->key, "hasMetadata")
||!strcmp(tag->key, "hasKeyframes")
){
av_log(s, AV_LOG_DEBUG, "Ignoring metadata for %s\n", tag->key);
continue;


Loading…
Cancel
Save