]> git.sesse.net Git - ffmpeg/commitdiff
avformat/hlsenc: use stream's maximum bit rate as fall-back advertised rate
authorJan Ekström <jan.ekstrom@aminocom.com>
Fri, 23 Mar 2018 12:41:28 +0000 (14:41 +0200)
committerJan Ekström <jeebjp@gmail.com>
Sat, 24 Mar 2018 23:07:10 +0000 (01:07 +0200)
Enables having proper bit rate values being written into the master
playlist in case of hard-constrained VBR where the maximum bit
rate utilized is known before hand.

Does the same thing as movenc.c, for example.

Signed-off-by: Jan Ekström <jan.ekstrom@aminocom.com>
libavformat/hlsenc.c

index b7c6fbde6ae760564031e8e3a650d9fce2b76c2d..34fa848466c5ab2900c8c478acd9f3f2d3c88862 100644 (file)
@@ -1174,6 +1174,21 @@ static int get_relative_url(const char *master_url, const char *media_url,
     return 0;
 }
 
+static int64_t get_stream_bit_rate(AVStream *stream) {
+    AVCPBProperties *props = (AVCPBProperties*)av_stream_get_side_data(
+        stream,
+        AV_PKT_DATA_CPB_PROPERTIES,
+        NULL
+    );
+
+    if (stream->codecpar->bit_rate)
+        return stream->codecpar->bit_rate;
+    else if (props)
+        return props->max_bitrate;
+
+    return 0;
+}
+
 static int create_master_playlist(AVFormatContext *s,
                                   VariantStream * const input_vs)
 {
@@ -1300,9 +1315,9 @@ static int create_master_playlist(AVFormatContext *s,
 
         bandwidth = 0;
         if (vid_st)
-            bandwidth += vid_st->codecpar->bit_rate;
+            bandwidth += get_stream_bit_rate(vid_st);
         if (aud_st)
-            bandwidth += aud_st->codecpar->bit_rate;
+            bandwidth += get_stream_bit_rate(aud_st);
         bandwidth += bandwidth / 10;
 
         ccgroup = NULL;