diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-02-20 10:19:17 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-20 10:19:17 +0100 |
commit | 5d1eb0d3aa590338930553cb7e09c43c4840ef1a (patch) | |
tree | 24d81bfbc659d826eb3eef5f3ac1cc4f3d000e50 /dom/media/fmp4/MP4Decoder.cpp | |
parent | a930db1c9e8444ed89754c5a79085d59c7295952 (diff) | |
download | UXP-5d1eb0d3aa590338930553cb7e09c43c4840ef1a.tar UXP-5d1eb0d3aa590338930553cb7e09c43c4840ef1a.tar.gz UXP-5d1eb0d3aa590338930553cb7e09c43c4840ef1a.tar.lz UXP-5d1eb0d3aa590338930553cb7e09c43c4840ef1a.tar.xz UXP-5d1eb0d3aa590338930553cb7e09c43c4840ef1a.zip |
Remove more obsolete checks in dom/media and ipc.
Diffstat (limited to 'dom/media/fmp4/MP4Decoder.cpp')
-rw-r--r-- | dom/media/fmp4/MP4Decoder.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/dom/media/fmp4/MP4Decoder.cpp b/dom/media/fmp4/MP4Decoder.cpp index 4cf07ddbd..fdd6f2c7e 100644 --- a/dom/media/fmp4/MP4Decoder.cpp +++ b/dom/media/fmp4/MP4Decoder.cpp @@ -52,14 +52,6 @@ IsWhitelistedH264Codec(const nsAString& aCodec) return false; } -#ifdef XP_WIN - // Disable 4k video on windows vista since it performs poorly. - if (!IsWin7OrLater() && - level >= H264_LEVEL_5) { - return false; - } -#endif - // Just assume what we can play on all platforms the codecs/formats that // WMF can play, since we don't have documentation about what other // platforms can play... According to the WMF documentation: |