Welcome to mirror list, hosted at ThFree Co, Russian Federation.

madVRAllocatorPresenter.h « VideoRenderers « renderer « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b72901034918d73dc48ed5ba062bf7cac14ed4f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * (C) 2006-2014 see Authors.txt
 *
 * This file is part of MPC-HC.
 *
 * MPC-HC is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * MPC-HC 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#pragma once

#include "AllocatorCommon.h"
#include "../../../SubPic/SubPicAllocatorPresenterImpl.h"
#include "../../../SubPic/ISubRender.h"

#include <mvrInterfaces.h>

namespace DSObjects
{
    class CmadVRAllocatorPresenter
        : public CSubPicAllocatorPresenterImpl
    {
        class CSubRenderCallback : public CUnknown, public ISubRenderCallback2, public CCritSec
        {
            CmadVRAllocatorPresenter* m_pDXRAP;

        public:
            CSubRenderCallback(CmadVRAllocatorPresenter* pDXRAP)
                : CUnknown(_T("CSubRender"), nullptr)
                , m_pDXRAP(pDXRAP) {
            }

            DECLARE_IUNKNOWN
            STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv) {
                return
                    QI(ISubRenderCallback)
                    QI(ISubRenderCallback2)
                    __super::NonDelegatingQueryInterface(riid, ppv);
            }

            void SetDXRAP(CmadVRAllocatorPresenter* pDXRAP) {
                CAutoLock cAutoLock(this);
                m_pDXRAP = pDXRAP;
            }

            // ISubRenderCallback

            STDMETHODIMP SetDevice(IDirect3DDevice9* pD3DDev) {
                CAutoLock cAutoLock(this);
                return m_pDXRAP ? m_pDXRAP->SetDevice(pD3DDev) : E_UNEXPECTED;
            }

            STDMETHODIMP Render(REFERENCE_TIME rtStart, int left, int top, int right, int bottom, int width, int height) {
                CAutoLock cAutoLock(this);
                return m_pDXRAP ? m_pDXRAP->Render(rtStart, 0, 0, left, top, right, bottom, width, height) : E_UNEXPECTED;
            }

            // ISubRendererCallback2

            STDMETHODIMP RenderEx(REFERENCE_TIME rtStart, REFERENCE_TIME rtStop, REFERENCE_TIME AvgTimePerFrame, int left, int top, int right, int bottom, int width, int height) {
                CAutoLock cAutoLock(this);
                return m_pDXRAP ? m_pDXRAP->Render(rtStart, rtStop, AvgTimePerFrame, left, top, right, bottom, width, height) : E_UNEXPECTED;
            }
        };

        CComPtr<IUnknown> m_pDXR;
        CComPtr<ISubRenderCallback2> m_pSRCB;
        CSize m_ScreenSize;
        bool  m_bIsFullscreen;

    public:
        CmadVRAllocatorPresenter(HWND hWnd, HRESULT& hr, CString& _Error);
        virtual ~CmadVRAllocatorPresenter();

        DECLARE_IUNKNOWN
        STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);

        HRESULT SetDevice(IDirect3DDevice9* pD3DDev);
        HRESULT Render(
            REFERENCE_TIME rtStart, REFERENCE_TIME rtStop, REFERENCE_TIME atpf,
            int left, int top, int bottom, int right, int width, int height);

        // ISubPicAllocatorPresenter
        STDMETHODIMP CreateRenderer(IUnknown** ppRenderer);
        STDMETHODIMP_(void) SetPosition(RECT w, RECT v);
        STDMETHODIMP_(SIZE) GetVideoSize(bool bCorrectAR) const;
        STDMETHODIMP_(bool) Paint(bool bAll);
        STDMETHODIMP GetDIB(BYTE* lpDib, DWORD* size);
        STDMETHODIMP SetPixelShader(LPCSTR pSrcData, LPCSTR pTarget);
        STDMETHODIMP SetPixelShader2(LPCSTR pSrcData, LPCSTR pTarget, bool bScreenSpace);

        // ISubPicAllocatorPresenter2
        STDMETHODIMP_(bool) IsRendering() {
            return false; // For testing
        }
    };
}