mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 00:35:26 +03:00
19 lines
369 B
C#
19 lines
369 B
C#
|
|
namespace MediaBrowser.Model.Dlna
|
|||
|
|
{
|
|||
|
|
public enum ProfileConditionValue
|
|||
|
|
{
|
|||
|
|
AudioChannels,
|
|||
|
|
AudioBitrate,
|
|||
|
|
AudioProfile,
|
|||
|
|
Width,
|
|||
|
|
Height,
|
|||
|
|
Has64BitOffsets,
|
|||
|
|
PacketLength,
|
|||
|
|
VideoBitDepth,
|
|||
|
|
VideoBitrate,
|
|||
|
|
VideoFramerate,
|
|||
|
|
VideoLevel,
|
|||
|
|
VideoProfile,
|
|||
|
|
VideoTimestamp
|
|||
|
|
}
|
|||
|
|
}
|