| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 | 
							- #nullable disable
 
- #pragma warning disable CS1591
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Globalization;
 
- using MediaBrowser.Model.MediaInfo;
 
- namespace MediaBrowser.Model.Dlna
 
- {
 
-     public static class MediaFormatProfileResolver
 
-     {
 
-         public static MediaFormatProfile[] ResolveVideoFormat(string container, string videoCodec, string audioCodec, int? width, int? height, TransportStreamTimestamp timestampType)
 
-         {
 
-             if (string.Equals(container, "asf", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 MediaFormatProfile? val = ResolveVideoASFFormat(videoCodec, audioCodec, width, height);
 
-                 return val.HasValue ? new MediaFormatProfile[] { val.Value } : Array.Empty<MediaFormatProfile>();
 
-             }
 
-             if (string.Equals(container, "mp4", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 MediaFormatProfile? val = ResolveVideoMP4Format(videoCodec, audioCodec, width, height);
 
-                 return val.HasValue ? new MediaFormatProfile[] { val.Value } : Array.Empty<MediaFormatProfile>();
 
-             }
 
-             if (string.Equals(container, "avi", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.AVI };
 
-             }
 
-             if (string.Equals(container, "mkv", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.MATROSKA };
 
-             }
 
-             if (string.Equals(container, "mpeg2ps", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(container, "ts", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.MPEG_PS_NTSC, MediaFormatProfile.MPEG_PS_PAL };
 
-             }
 
-             if (string.Equals(container, "mpeg1video", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.MPEG1 };
 
-             }
 
-             if (string.Equals(container, "mpeg2ts", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(container, "mpegts", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(container, "m2ts", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveVideoMPEG2TSFormat(videoCodec, audioCodec, width, height, timestampType);
 
-             }
 
-             if (string.Equals(container, "flv", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.FLV };
 
-             }
 
-             if (string.Equals(container, "wtv", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.WTV };
 
-             }
 
-             if (string.Equals(container, "3gp", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 MediaFormatProfile? val = ResolveVideo3GPFormat(videoCodec, audioCodec);
 
-                 return val.HasValue ? new MediaFormatProfile[] { val.Value } : Array.Empty<MediaFormatProfile>();
 
-             }
 
-             if (string.Equals(container, "ogv", StringComparison.OrdinalIgnoreCase) || string.Equals(container, "ogg", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return new MediaFormatProfile[] { MediaFormatProfile.OGV };
 
-             }
 
-             return Array.Empty<MediaFormatProfile>();
 
-         }
 
-         private static MediaFormatProfile[] ResolveVideoMPEG2TSFormat(string videoCodec, string audioCodec, int? width, int? height, TransportStreamTimestamp timestampType)
 
-         {
 
-             string suffix = string.Empty;
 
-             switch (timestampType)
 
-             {
 
-                 case TransportStreamTimestamp.None:
 
-                     suffix = "_ISO";
 
-                     break;
 
-                 case TransportStreamTimestamp.Valid:
 
-                     suffix = "_T";
 
-                     break;
 
-             }
 
-             string resolution = "S";
 
-             if ((width.HasValue && width.Value > 720) || (height.HasValue && height.Value > 576))
 
-             {
 
-                 resolution = "H";
 
-             }
 
-             if (string.Equals(videoCodec, "mpeg2video", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 var list = new List<MediaFormatProfile>
 
-                 {
 
-                     ValueOf("MPEG_TS_SD_NA" + suffix),
 
-                     ValueOf("MPEG_TS_SD_EU" + suffix),
 
-                     ValueOf("MPEG_TS_SD_KO" + suffix)
 
-                 };
 
-                 if ((timestampType == TransportStreamTimestamp.Valid) && string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     list.Add(MediaFormatProfile.MPEG_TS_JP_T);
 
-                 }
 
-                 return list.ToArray();
 
-             }
 
-             if (string.Equals(videoCodec, "h264", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (string.Equals(audioCodec, "lpcm", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { MediaFormatProfile.AVC_TS_HD_50_LPCM_T };
 
-                 }
 
-                 if (string.Equals(audioCodec, "dts", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     if (timestampType == TransportStreamTimestamp.None)
 
-                     {
 
-                         return new MediaFormatProfile[] { MediaFormatProfile.AVC_TS_HD_DTS_ISO };
 
-                     }
 
-                     return new MediaFormatProfile[] { MediaFormatProfile.AVC_TS_HD_DTS_T };
 
-                 }
 
-                 if (string.Equals(audioCodec, "mp2", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     if (timestampType == TransportStreamTimestamp.None)
 
-                     {
 
-                         return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "AVC_TS_HP_{0}D_MPEG1_L2_ISO", resolution)) };
 
-                     }
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "AVC_TS_HP_{0}D_MPEG1_L2_T", resolution)) };
 
-                 }
 
-                 if (string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "AVC_TS_MP_{0}D_AAC_MULT5{1}", resolution, suffix)) };
 
-                 }
 
-                 if (string.Equals(audioCodec, "mp3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "AVC_TS_MP_{0}D_MPEG1_L3{1}", resolution, suffix)) };
 
-                 }
 
-                 if (string.IsNullOrEmpty(audioCodec) ||
 
-                     string.Equals(audioCodec, "ac3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "AVC_TS_MP_{0}D_AC3{1}", resolution, suffix)) };
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "vc1", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "ac3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     if ((width.HasValue && width.Value > 720) || (height.HasValue && height.Value > 576))
 
-                     {
 
-                         return new MediaFormatProfile[] { MediaFormatProfile.VC1_TS_AP_L2_AC3_ISO };
 
-                     }
 
-                     return new MediaFormatProfile[] { MediaFormatProfile.VC1_TS_AP_L1_AC3_ISO };
 
-                 }
 
-                 if (string.Equals(audioCodec, "dts", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     suffix = string.Equals(suffix, "_ISO", StringComparison.OrdinalIgnoreCase) ? suffix : "_T";
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "VC1_TS_HD_DTS{0}", suffix)) };
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "mpeg4", StringComparison.OrdinalIgnoreCase) || string.Equals(videoCodec, "msmpeg4", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "MPEG4_P2_TS_ASP_AAC{0}", suffix)) };
 
-                 }
 
-                 if (string.Equals(audioCodec, "mp3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "MPEG4_P2_TS_ASP_MPEG1_L3{0}", suffix)) };
 
-                 }
 
-                 if (string.Equals(audioCodec, "mp2", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "MPEG4_P2_TS_ASP_MPEG2_L2{0}", suffix)) };
 
-                 }
 
-                 if (string.Equals(audioCodec, "ac3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return new MediaFormatProfile[] { ValueOf(string.Format(CultureInfo.InvariantCulture, "MPEG4_P2_TS_ASP_AC3{0}", suffix)) };
 
-                 }
 
-             }
 
-             return Array.Empty<MediaFormatProfile>();
 
-         }
 
-         private static MediaFormatProfile ValueOf(string value)
 
-         {
 
-             return (MediaFormatProfile)Enum.Parse(typeof(MediaFormatProfile), value, true);
 
-         }
 
-         private static MediaFormatProfile? ResolveVideoMP4Format(string videoCodec, string audioCodec, int? width, int? height)
 
-         {
 
-             if (string.Equals(videoCodec, "h264", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (string.Equals(audioCodec, "lpcm", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.AVC_MP4_LPCM;
 
-                 }
 
-                 if (string.IsNullOrEmpty(audioCodec) ||
 
-                     string.Equals(audioCodec, "ac3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.AVC_MP4_MP_SD_AC3;
 
-                 }
 
-                 if (string.Equals(audioCodec, "mp3", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.AVC_MP4_MP_SD_MPEG1_L3;
 
-                 }
 
-                 if (width.HasValue && height.HasValue)
 
-                 {
 
-                     if ((width.Value <= 720) && (height.Value <= 576))
 
-                     {
 
-                         if (string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                         {
 
-                             return MediaFormatProfile.AVC_MP4_MP_SD_AAC_MULT5;
 
-                         }
 
-                     }
 
-                     else if ((width.Value <= 1280) && (height.Value <= 720))
 
-                     {
 
-                         if (string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                         {
 
-                             return MediaFormatProfile.AVC_MP4_MP_HD_720p_AAC;
 
-                         }
 
-                     }
 
-                     else if ((width.Value <= 1920) && (height.Value <= 1080))
 
-                     {
 
-                         if (string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                         {
 
-                             return MediaFormatProfile.AVC_MP4_MP_HD_1080i_AAC;
 
-                         }
 
-                     }
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "mpeg4", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(videoCodec, "msmpeg4", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (width.HasValue && height.HasValue && width.Value <= 720 && height.Value <= 576)
 
-                 {
 
-                     if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                     {
 
-                         return MediaFormatProfile.MPEG4_P2_MP4_ASP_AAC;
 
-                     }
 
-                     if (string.Equals(audioCodec, "ac3", StringComparison.OrdinalIgnoreCase) || string.Equals(audioCodec, "mp3", StringComparison.OrdinalIgnoreCase))
 
-                     {
 
-                         return MediaFormatProfile.MPEG4_P2_MP4_NDSD;
 
-                     }
 
-                 }
 
-                 else if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.MPEG4_P2_MP4_SP_L6_AAC;
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "h263", StringComparison.OrdinalIgnoreCase) && string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.MPEG4_H263_MP4_P0_L10_AAC;
 
-             }
 
-             return null;
 
-         }
 
-         private static MediaFormatProfile? ResolveVideo3GPFormat(string videoCodec, string audioCodec)
 
-         {
 
-             if (string.Equals(videoCodec, "h264", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "aac", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.AVC_3GPP_BL_QCIF15_AAC;
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "mpeg4", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(videoCodec, "msmpeg4", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "wma", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.MPEG4_P2_3GPP_SP_L0B_AAC;
 
-                 }
 
-                 if (string.Equals(audioCodec, "amrnb", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.MPEG4_P2_3GPP_SP_L0B_AMR;
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "h263", StringComparison.OrdinalIgnoreCase) && string.Equals(audioCodec, "amrnb", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.MPEG4_H263_3GPP_P0_L10_AMR;
 
-             }
 
-             return null;
 
-         }
 
-         private static MediaFormatProfile? ResolveVideoASFFormat(string videoCodec, string audioCodec, int? width, int? height)
 
-         {
 
-             if (string.Equals(videoCodec, "wmv", StringComparison.OrdinalIgnoreCase) &&
 
-                 (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "wma", StringComparison.OrdinalIgnoreCase) || string.Equals(videoCodec, "wmapro", StringComparison.OrdinalIgnoreCase)))
 
-             {
 
-                 if (width.HasValue && height.HasValue)
 
-                 {
 
-                     if ((width.Value <= 720) && (height.Value <= 576))
 
-                     {
 
-                         if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "wma", StringComparison.OrdinalIgnoreCase))
 
-                         {
 
-                             return MediaFormatProfile.WMVMED_FULL;
 
-                         }
 
-                         return MediaFormatProfile.WMVMED_PRO;
 
-                     }
 
-                 }
 
-                 if (string.IsNullOrEmpty(audioCodec) || string.Equals(audioCodec, "wma", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     return MediaFormatProfile.WMVHIGH_FULL;
 
-                 }
 
-                 return MediaFormatProfile.WMVHIGH_PRO;
 
-             }
 
-             if (string.Equals(videoCodec, "vc1", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 if (width.HasValue && height.HasValue)
 
-                 {
 
-                     if ((width.Value <= 720) && (height.Value <= 576))
 
-                     {
 
-                         return MediaFormatProfile.VC1_ASF_AP_L1_WMA;
 
-                     }
 
-                     if ((width.Value <= 1280) && (height.Value <= 720))
 
-                     {
 
-                         return MediaFormatProfile.VC1_ASF_AP_L2_WMA;
 
-                     }
 
-                     if ((width.Value <= 1920) && (height.Value <= 1080))
 
-                     {
 
-                         return MediaFormatProfile.VC1_ASF_AP_L3_WMA;
 
-                     }
 
-                 }
 
-             }
 
-             else if (string.Equals(videoCodec, "mpeg2video", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.DVR_MS;
 
-             }
 
-             return null;
 
-         }
 
-         public static MediaFormatProfile? ResolveAudioFormat(string container, int? bitrate, int? frequency, int? channels)
 
-         {
 
-             if (string.Equals(container, "asf", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveAudioASFFormat(bitrate);
 
-             }
 
-             if (string.Equals(container, "mp3", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.MP3;
 
-             }
 
-             if (string.Equals(container, "lpcm", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveAudioLPCMFormat(frequency, channels);
 
-             }
 
-             if (string.Equals(container, "mp4", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(container, "aac", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveAudioMP4Format(bitrate);
 
-             }
 
-             if (string.Equals(container, "adts", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveAudioADTSFormat(bitrate);
 
-             }
 
-             if (string.Equals(container, "flac", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.FLAC;
 
-             }
 
-             if (string.Equals(container, "oga", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(container, "ogg", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.OGG;
 
-             }
 
-             return null;
 
-         }
 
-         private static MediaFormatProfile ResolveAudioASFFormat(int? bitrate)
 
-         {
 
-             if (bitrate.HasValue && bitrate.Value <= 193)
 
-             {
 
-                 return MediaFormatProfile.WMA_BASE;
 
-             }
 
-             return MediaFormatProfile.WMA_FULL;
 
-         }
 
-         private static MediaFormatProfile? ResolveAudioLPCMFormat(int? frequency, int? channels)
 
-         {
 
-             if (frequency.HasValue && channels.HasValue)
 
-             {
 
-                 if (frequency.Value == 44100 && channels.Value == 1)
 
-                 {
 
-                     return MediaFormatProfile.LPCM16_44_MONO;
 
-                 }
 
-                 if (frequency.Value == 44100 && channels.Value == 2)
 
-                 {
 
-                     return MediaFormatProfile.LPCM16_44_STEREO;
 
-                 }
 
-                 if (frequency.Value == 48000 && channels.Value == 1)
 
-                 {
 
-                     return MediaFormatProfile.LPCM16_48_MONO;
 
-                 }
 
-                 if (frequency.Value == 48000 && channels.Value == 2)
 
-                 {
 
-                     return MediaFormatProfile.LPCM16_48_STEREO;
 
-                 }
 
-                 return null;
 
-             }
 
-             return MediaFormatProfile.LPCM16_48_STEREO;
 
-         }
 
-         private static MediaFormatProfile ResolveAudioMP4Format(int? bitrate)
 
-         {
 
-             if (bitrate.HasValue && bitrate.Value <= 320)
 
-             {
 
-                 return MediaFormatProfile.AAC_ISO_320;
 
-             }
 
-             return MediaFormatProfile.AAC_ISO;
 
-         }
 
-         private static MediaFormatProfile ResolveAudioADTSFormat(int? bitrate)
 
-         {
 
-             if (bitrate.HasValue && bitrate.Value <= 320)
 
-             {
 
-                 return MediaFormatProfile.AAC_ADTS_320;
 
-             }
 
-             return MediaFormatProfile.AAC_ADTS;
 
-         }
 
-         public static MediaFormatProfile? ResolveImageFormat(string container, int? width, int? height)
 
-         {
 
-             if (string.Equals(container, "jpeg", StringComparison.OrdinalIgnoreCase) ||
 
-                 string.Equals(container, "jpg", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveImageJPGFormat(width, height);
 
-             }
 
-             if (string.Equals(container, "png", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return ResolveImagePNGFormat(width, height);
 
-             }
 
-             if (string.Equals(container, "gif", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.GIF_LRG;
 
-             }
 
-             if (string.Equals(container, "raw", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return MediaFormatProfile.RAW;
 
-             }
 
-             return null;
 
-         }
 
-         private static MediaFormatProfile ResolveImageJPGFormat(int? width, int? height)
 
-         {
 
-             if (width.HasValue && height.HasValue)
 
-             {
 
-                 if ((width.Value <= 160) && (height.Value <= 160))
 
-                 {
 
-                     return MediaFormatProfile.JPEG_TN;
 
-                 }
 
-                 if ((width.Value <= 640) && (height.Value <= 480))
 
-                 {
 
-                     return MediaFormatProfile.JPEG_SM;
 
-                 }
 
-                 if ((width.Value <= 1024) && (height.Value <= 768))
 
-                 {
 
-                     return MediaFormatProfile.JPEG_MED;
 
-                 }
 
-                 return MediaFormatProfile.JPEG_LRG;
 
-             }
 
-             return MediaFormatProfile.JPEG_SM;
 
-         }
 
-         private static MediaFormatProfile ResolveImagePNGFormat(int? width, int? height)
 
-         {
 
-             if (width.HasValue && height.HasValue)
 
-             {
 
-                 if ((width.Value <= 160) && (height.Value <= 160))
 
-                 {
 
-                     return MediaFormatProfile.PNG_TN;
 
-                 }
 
-             }
 
-             return MediaFormatProfile.PNG_LRG;
 
-         }
 
-     }
 
- }
 
 
  |