dummy up audio bitrates when needed

This commit is contained in:
Luke Pulverenti
2017-05-10 22:57:48 -04:00
parent 0f198dc818
commit e915ceda1b
2 changed files with 40 additions and 0 deletions

View File

@@ -61,6 +61,12 @@ namespace MediaBrowser.Model.Drawing
_height = height;
}
public ImageSize(double width, double height)
{
_width = width;
_height = height;
}
private void ParseValue(string value)
{
if (!string.IsNullOrEmpty(value))