]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/dashenc.c
avformat/dashenc: Remove muxer overhead from Bandwidth field in DASH manifest
[ffmpeg] / libavformat / dashenc.c
index d8b423085007d712848d198e2076591a03d97015..87e31e25fc5599c32064bdc2e8bbc920ccd2e21b 100644 (file)
@@ -611,7 +611,7 @@ static int write_adaptation_set(AVFormatContext *s, AVIOContext *out, int as_ind
 
         if (os->bit_rate > 0)
             snprintf(bandwidth_str, sizeof(bandwidth_str), " bandwidth=\"%d\"",
-                     os->bit_rate + os->muxer_overhead);
+                     os->bit_rate);
 
         if (as->media_type == AVMEDIA_TYPE_VIDEO) {
             AVStream *st = s->streams[i];