OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/common/gpu/media/dxva_video_decode_accelerator.h" | 5 #include "content/common/gpu/media/dxva_video_decode_accelerator.h" |
6 | 6 |
7 #if !defined(OS_WIN) | 7 #if !defined(OS_WIN) |
8 #error This file should only be built on Windows. | 8 #error This file should only be built on Windows. |
9 #endif // !defined(OS_WIN) | 9 #endif // !defined(OS_WIN) |
10 | 10 |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
648 if (!profile_supported) { | 648 if (!profile_supported) { |
649 RETURN_AND_NOTIFY_ON_FAILURE(false, | 649 RETURN_AND_NOTIFY_ON_FAILURE(false, |
650 "Unsupported h.264, vp8, or vp9 profile", PLATFORM_FAILURE, false); | 650 "Unsupported h.264, vp8, or vp9 profile", PLATFORM_FAILURE, false); |
651 } | 651 } |
652 | 652 |
653 // Not all versions of Windows 7 and later include Media Foundation DLLs. | 653 // Not all versions of Windows 7 and later include Media Foundation DLLs. |
654 // Instead of crashing while delay loading the DLL when calling MFStartup() | 654 // Instead of crashing while delay loading the DLL when calling MFStartup() |
655 // below, probe whether we can successfully load the DLL now. | 655 // below, probe whether we can successfully load the DLL now. |
656 // See http://crbug.com/339678 for details. | 656 // See http://crbug.com/339678 for details. |
657 HMODULE dxgi_manager_dll = NULL; | 657 HMODULE dxgi_manager_dll = NULL; |
658 if ((dxgi_manager_dll = ::GetModuleHandle(L"MFPlat.dll")) == NULL) { | 658 if ((dxgi_manager_dll = ::GetModuleHandle(L"MFPlat.dll")) == NULL) { |
jbauman
2015/11/04 23:02:02
Remove this if - do 'HMODULE dxgi_manager_dll = ::
ananta
2015/11/04 23:15:08
Done.
| |
659 HMODULE mfplat_dll = ::LoadLibrary(L"MFPlat.dll"); | 659 RETURN_ON_FAILURE(dxgi_manager_dll, "MFPlat.dll is required for decoding", |
660 RETURN_ON_FAILURE(mfplat_dll, "MFPlat.dll is required for decoding", | |
661 false); | 660 false); |
662 // On Windows 8+ mfplat.dll provides the MFCreateDXGIDeviceManager API. | 661 // On Windows 8+ mfplat.dll provides the MFCreateDXGIDeviceManager API. |
663 // On Windows 7 mshtmlmedia.dll provides it. | 662 // On Windows 7 mshtmlmedia.dll provides it. |
664 dxgi_manager_dll = mfplat_dll; | |
665 } | 663 } |
666 | 664 |
667 // TODO(ananta) | 665 // TODO(ananta) |
668 // The code below works, as in we can create the DX11 device manager for | 666 // The code below works, as in we can create the DX11 device manager for |
669 // Windows 7. However the IMFTransform we use for texture conversion and | 667 // Windows 7. However the IMFTransform we use for texture conversion and |
670 // copy does not exist on Windows 7. Look into an alternate approach | 668 // copy does not exist on Windows 7. Look into an alternate approach |
671 // and enable the code below. | 669 // and enable the code below. |
672 #if defined ENABLE_DX11_FOR_WIN7 | 670 #if defined ENABLE_DX11_FOR_WIN7 |
673 if ((base::win::GetVersion() == base::win::VERSION_WIN7) && | 671 if ((base::win::GetVersion() == base::win::VERSION_WIN7) && |
674 ((dxgi_manager_dll = ::GetModuleHandle(L"mshtmlmedia.dll")) == NULL)) { | 672 ((dxgi_manager_dll = ::GetModuleHandle(L"mshtmlmedia.dll")) == NULL)) { |
675 HMODULE mshtml_media_dll = ::LoadLibrary(L"mshtmlmedia.dll"); | 673 RETURN_ON_FAILURE(dxgi_manager_dll, |
676 if (mshtml_media_dll) | 674 "mshtmlmedia.dll is required for decoding", false); |
677 dxgi_manager_dll = mshtml_media_dll; | |
678 } | 675 } |
679 #endif | 676 #endif |
680 // If we don't find the MFCreateDXGIDeviceManager API we fallback to D3D9 | 677 // If we don't find the MFCreateDXGIDeviceManager API we fallback to D3D9 |
681 // decoding. | 678 // decoding. |
682 if (dxgi_manager_dll && !create_dxgi_device_manager_) { | 679 if (dxgi_manager_dll && !create_dxgi_device_manager_) { |
683 create_dxgi_device_manager_ = reinterpret_cast<CreateDXGIDeviceManager>( | 680 create_dxgi_device_manager_ = reinterpret_cast<CreateDXGIDeviceManager>( |
684 ::GetProcAddress(dxgi_manager_dll, "MFCreateDXGIDeviceManager")); | 681 ::GetProcAddress(dxgi_manager_dll, "MFCreateDXGIDeviceManager")); |
685 } | 682 } |
686 | 683 |
687 RETURN_AND_NOTIFY_ON_FAILURE( | 684 RETURN_AND_NOTIFY_ON_FAILURE( |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
812 RETURN_ON_HR_FAILURE(hr, "Failed to reset device", false); | 809 RETURN_ON_HR_FAILURE(hr, "Failed to reset device", false); |
813 | 810 |
814 D3D11_QUERY_DESC query_desc; | 811 D3D11_QUERY_DESC query_desc; |
815 query_desc.Query = D3D11_QUERY_EVENT; | 812 query_desc.Query = D3D11_QUERY_EVENT; |
816 query_desc.MiscFlags = 0; | 813 query_desc.MiscFlags = 0; |
817 hr = d3d11_device_->CreateQuery( | 814 hr = d3d11_device_->CreateQuery( |
818 &query_desc, | 815 &query_desc, |
819 d3d11_query_.Receive()); | 816 d3d11_query_.Receive()); |
820 RETURN_ON_HR_FAILURE(hr, "Failed to create DX11 device query", false); | 817 RETURN_ON_HR_FAILURE(hr, "Failed to create DX11 device query", false); |
821 | 818 |
822 HMODULE video_processor_dll = ::LoadLibrary(L"msvproc.dll"); | 819 HMODULE video_processor_dll = ::GetModuleHandle(L"msvproc.dll"); |
823 RETURN_ON_FAILURE(video_processor_dll, "Failed to load video processor", | 820 RETURN_ON_FAILURE(video_processor_dll, "Failed to load video processor", |
824 false); | 821 false); |
825 | 822 |
826 hr = CreateCOMObjectFromDll( | 823 hr = CreateCOMObjectFromDll( |
827 video_processor_dll, | 824 video_processor_dll, |
828 CLSID_VideoProcessorMFT, | 825 CLSID_VideoProcessorMFT, |
829 __uuidof(IMFTransform), | 826 __uuidof(IMFTransform), |
830 video_format_converter_mft_.ReceiveVoid()); | 827 video_format_converter_mft_.ReceiveVoid()); |
831 if (FAILED(hr)) { | 828 if (FAILED(hr)) { |
832 base::debug::Alias(&hr); | 829 base::debug::Alias(&hr); |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1028 // with any dimension smaller than 48 pixels: | 1025 // with any dimension smaller than 48 pixels: |
1029 // http://msdn.microsoft.com/en-us/library/windows/desktop/dd797815 | 1026 // http://msdn.microsoft.com/en-us/library/windows/desktop/dd797815 |
1030 profile.min_resolution.SetSize(48, 48); | 1027 profile.min_resolution.SetSize(48, 48); |
1031 // Use 1088 to account for 16x16 macroblocks. | 1028 // Use 1088 to account for 16x16 macroblocks. |
1032 profile.max_resolution.SetSize(1920, 1088); | 1029 profile.max_resolution.SetSize(1920, 1088); |
1033 profiles.push_back(profile); | 1030 profiles.push_back(profile); |
1034 } | 1031 } |
1035 return profiles; | 1032 return profiles; |
1036 } | 1033 } |
1037 | 1034 |
1035 // static | |
1036 void DXVAVideoDecodeAccelerator::PreSandboxInitialization() { | |
1037 ::LoadLibrary(L"MFPlat.dll"); | |
1038 ::LoadLibrary(L"msmpeg2vdec.dll"); | |
1039 | |
1040 if (base::win::GetVersion() > base::win::VERSION_WIN7) { | |
1041 LoadLibrary(L"msvproc.dll"); | |
1042 } else { | |
1043 LoadLibrary(L"dxva2.dll"); | |
1044 #if defined ENABLE_DX11_FOR_WIN7 | |
1045 LoadLibrary(L"mshtmlmedia.dll"); | |
1046 #endif | |
1047 } | |
1048 } | |
1049 | |
1038 bool DXVAVideoDecodeAccelerator::InitDecoder(media::VideoCodecProfile profile) { | 1050 bool DXVAVideoDecodeAccelerator::InitDecoder(media::VideoCodecProfile profile) { |
1039 HMODULE decoder_dll = NULL; | 1051 HMODULE decoder_dll = NULL; |
1040 | 1052 |
1041 CLSID clsid = {}; | 1053 CLSID clsid = {}; |
1042 | 1054 |
1043 // Profile must fall within the valid range for one of the supported codecs. | 1055 // Profile must fall within the valid range for one of the supported codecs. |
1044 if (profile >= media::H264PROFILE_MIN && profile <= media::H264PROFILE_MAX) { | 1056 if (profile >= media::H264PROFILE_MIN && profile <= media::H264PROFILE_MAX) { |
1045 // We mimic the steps CoCreateInstance uses to instantiate the object. This | 1057 // We mimic the steps CoCreateInstance uses to instantiate the object. This |
1046 // was previously done because it failed inside the sandbox, and now is done | 1058 // was previously done because it failed inside the sandbox, and now is done |
1047 // as a more minimal approach to avoid other side-effects CCI might have (as | 1059 // as a more minimal approach to avoid other side-effects CCI might have (as |
1048 // we are still in a reduced sandbox). | 1060 // we are still in a reduced sandbox). |
1049 decoder_dll = ::LoadLibrary(L"msmpeg2vdec.dll"); | 1061 decoder_dll = ::GetModuleHandle(L"msmpeg2vdec.dll"); |
1050 RETURN_ON_FAILURE(decoder_dll, | 1062 RETURN_ON_FAILURE(decoder_dll, |
1051 "msmpeg2vdec.dll required for decoding is not loaded", | 1063 "msmpeg2vdec.dll required for decoding is not loaded", |
1052 false); | 1064 false); |
1053 | 1065 |
1054 // Check version of DLL, version 6.7.7140 is blacklisted due to high crash | 1066 // Check version of DLL, version 6.7.7140 is blacklisted due to high crash |
1055 // rates in browsers loading that DLL. If that is the version installed we | 1067 // rates in browsers loading that DLL. If that is the version installed we |
1056 // fall back to software decoding. See crbug/403440. | 1068 // fall back to software decoding. See crbug/403440. |
1057 FileVersionInfo* version_info = | 1069 FileVersionInfo* version_info = |
1058 FileVersionInfo::CreateFileVersionInfoForModule(decoder_dll); | 1070 FileVersionInfo::CreateFileVersionInfoForModule(decoder_dll); |
1059 RETURN_ON_FAILURE(version_info, | 1071 RETURN_ON_FAILURE(version_info, |
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2273 D3DSURFACE_DESC surface_desc; | 2285 D3DSURFACE_DESC surface_desc; |
2274 hr = surface->GetDesc(&surface_desc); | 2286 hr = surface->GetDesc(&surface_desc); |
2275 RETURN_ON_HR_FAILURE(hr, "Failed to get surface description", false); | 2287 RETURN_ON_HR_FAILURE(hr, "Failed to get surface description", false); |
2276 *width = surface_desc.Width; | 2288 *width = surface_desc.Width; |
2277 *height = surface_desc.Height; | 2289 *height = surface_desc.Height; |
2278 } | 2290 } |
2279 return true; | 2291 return true; |
2280 } | 2292 } |
2281 | 2293 |
2282 } // namespace content | 2294 } // namespace content |
OLD | NEW |