added stream copy options

This commit is contained in:
Luke Pulverenti 2013-08-16 10:09:29 -04:00
parent 11c3778053
commit 1a2ff21b44
2 changed files with 11 additions and 3 deletions

View file

@ -817,7 +817,7 @@ namespace MediaBrowser.Api.Playback
return VideoCodecs.H264; return VideoCodecs.H264;
} }
return null; return VideoCodecs.Copy;
} }
} }
} }

View file

@ -155,7 +155,11 @@
/// <summary> /// <summary>
/// The wma /// The wma
/// </summary> /// </summary>
Wma Wma,
/// <summary>
/// The copy
/// </summary>
Copy
} }
/// <summary> /// <summary>
@ -188,6 +192,10 @@
/// <summary> /// <summary>
/// The WMV /// The WMV
/// </summary> /// </summary>
Wmv Wmv,
/// <summary>
/// The copy
/// </summary>
Copy
} }
} }