add comment explaining GetMinBitrate

This commit is contained in:
dkanada 2019-06-20 16:44:27 -07:00
parent 012e4a3e63
commit 65fa61a636

View File

@ -1116,6 +1116,7 @@ namespace MediaBrowser.Controller.MediaEncoding
private int GetMinBitrate(int sourceBitrate, int requestedBitrate)
{
// these values were chosen from testing to improve low bitrate streams
if (sourceBitrate <= 2000000)
{
sourceBitrate = Convert.ToInt32(sourceBitrate * 2.5);