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: 1bf230a71a275db3a31aae9c91ae1051289a6b6b (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
/*
 * $Id$
 *
 * (C) 2006-2010 see AUTHORS
 *
 * This file is part of mplayerc.
 *
 * Mplayerc 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.
 *
 * Mplayerc 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"

namespace DSObjects
{
class CmadVRAllocatorPresenter
    : public ISubPicAllocatorPresenterImpl
{
    class CSubRenderCallback : public CUnknown, public ISubRenderCallback, public CCritSec
    {
        CmadVRAllocatorPresenter* m_pDXRAP;

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

        DECLARE_IUNKNOWN
        STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv)
        {
            return
                QI(ISubRenderCallback)
                __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<ISubRenderCallback> m_pSRCB;
    CSize	m_ScreenSize;

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 fCorrectAR);
    STDMETHODIMP_(bool) Paint(bool fAll);
    STDMETHODIMP GetDIB(BYTE* lpDib, DWORD* size);
    STDMETHODIMP SetPixelShader(LPCSTR pSrcData, LPCSTR pTarget);
};
}