mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-28 18:23:54 +02:00
88 lines
2.8 KiB
C
88 lines
2.8 KiB
C
/*
|
|
* Copyright 2024 Rémi Bernon for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "video_decoder.h"
|
|
|
|
#include "rpcproxy.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmo);
|
|
|
|
/***********************************************************************
|
|
* DllGetClassObject (msmpeg2vdec.@)
|
|
*/
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID riid, void **out)
|
|
{
|
|
if (IsEqualGUID(clsid, &CLSID_MSH264DecoderMFT))
|
|
return IClassFactory_QueryInterface(&h264_decoder_factory, riid, out);
|
|
|
|
*out = NULL;
|
|
FIXME("Unknown clsid %s.\n", debugstr_guid(clsid));
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* DllRegisterServer (msmpeg2vdec.@)
|
|
*/
|
|
HRESULT WINAPI DllRegisterServer(void)
|
|
{
|
|
MFT_REGISTER_TYPE_INFO h264_decoder_mft_inputs[] =
|
|
{
|
|
{MFMediaType_Video, MFVideoFormat_H264},
|
|
{MFMediaType_Video, MFVideoFormat_H264_ES},
|
|
};
|
|
MFT_REGISTER_TYPE_INFO h264_decoder_mft_outputs[] =
|
|
{
|
|
{MFMediaType_Video, MFVideoFormat_NV12},
|
|
{MFMediaType_Video, MFVideoFormat_YV12},
|
|
{MFMediaType_Video, MFVideoFormat_IYUV},
|
|
{MFMediaType_Video, MFVideoFormat_I420},
|
|
{MFMediaType_Video, MFVideoFormat_YUY2},
|
|
};
|
|
HRESULT hr;
|
|
|
|
TRACE("\n");
|
|
|
|
if (FAILED(hr = __wine_register_resources()))
|
|
return hr;
|
|
if (FAILED(hr = MFTRegister(CLSID_MSH264DecoderMFT, MFT_CATEGORY_VIDEO_DECODER,
|
|
(WCHAR *)L"Microsoft H264 Video Decoder MFT", MFT_ENUM_FLAG_SYNCMFT,
|
|
ARRAY_SIZE(h264_decoder_mft_inputs), h264_decoder_mft_inputs,
|
|
ARRAY_SIZE(h264_decoder_mft_outputs), h264_decoder_mft_outputs, NULL)))
|
|
return hr;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* DllUnregisterServer (msmpeg2vdec.@)
|
|
*/
|
|
HRESULT WINAPI DllUnregisterServer(void)
|
|
{
|
|
HRESULT hr;
|
|
|
|
TRACE("\n");
|
|
|
|
if (FAILED(hr = __wine_unregister_resources()))
|
|
return hr;
|
|
if (FAILED(hr = MFTUnregister(CLSID_MSH264DecoderMFT)))
|
|
return hr;
|
|
|
|
return S_OK;
|
|
}
|