diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-22 12:25:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-22 12:25:47 -0400 |
| commit | 3b30a2aee09bb045e466486fc0fff8a11cc6de74 (patch) | |
| tree | 051b157b6509631e077cf3c83153bead3a851ea3 /MediaBrowser.Model/Dlna/ProfileConditionValue.cs | |
| parent | 414b1251c791dd914e51a5cfd7afeeaaf912e8a3 (diff) | |
detect anamorphic video
Diffstat (limited to 'MediaBrowser.Model/Dlna/ProfileConditionValue.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/ProfileConditionValue.cs | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/MediaBrowser.Model/Dlna/ProfileConditionValue.cs b/MediaBrowser.Model/Dlna/ProfileConditionValue.cs index 56a322f5a..544a01184 100644 --- a/MediaBrowser.Model/Dlna/ProfileConditionValue.cs +++ b/MediaBrowser.Model/Dlna/ProfileConditionValue.cs @@ -2,18 +2,19 @@ { public enum ProfileConditionValue { - AudioChannels, - AudioBitrate, - AudioProfile, - Width, - Height, - Has64BitOffsets, - PacketLength, - VideoBitDepth, - VideoBitrate, - VideoFramerate, - VideoLevel, - VideoProfile, - VideoTimestamp + AudioChannels = 0, + AudioBitrate = 1, + AudioProfile = 2, + Width = 3, + Height = 4, + Has64BitOffsets = 5, + PacketLength = 6, + VideoBitDepth = 7, + VideoBitrate = 8, + VideoFramerate = 9, + VideoLevel = 10, + VideoProfile = 11, + VideoTimestamp = 12, + IsAnamorphic = 13 } }
\ No newline at end of file |
