namespace MediaBrowser.Model.Dlna
{
///
/// The encoding context.
///
public enum EncodingContext
{
///
/// The media is transcoded on the fly and delivered as a stream.
///
Streaming = 0,
///
/// The media is transcoded to a static file.
///
Static = 1
}
}