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

IMPCVideoDecFilter.h « MPCVideoDec « transform « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfd8ad5ecd784413b885296abcd29139d8a2b969 (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
/*
 * $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

// Internal codec list (use to enable/disable codec in standalone mode)
typedef enum {
	MPCVD_H264      = 1,
	MPCVD_VC1       = MPCVD_H264<<1,
	MPCVD_XVID      = MPCVD_VC1<<1,
	MPCVD_DIVX      = MPCVD_XVID<<1,
	MPCVD_WMV       = MPCVD_DIVX<<1,
	MPCVD_MSMPEG4   = MPCVD_WMV<<1,
	MPCVD_H263      = MPCVD_MSMPEG4<<1,
	MPCVD_SVQ3      = MPCVD_H263<<1,
	MPCVD_THEORA    = MPCVD_SVQ3<<1,
	MPCVD_AMVV      = MPCVD_THEORA<<1,
	MPCVD_FLASH     = MPCVD_AMVV<<1,
	MPCVD_H264_DXVA = MPCVD_FLASH<<1,
	MPCVD_VC1_DXVA  = MPCVD_H264_DXVA<<1,
	MPCVD_VP6       = MPCVD_VC1_DXVA<<1,
	MPCVD_VP8       = MPCVD_VP6<<1
} MPC_VIDEO_CODEC;

interface __declspec(uuid("CDC3B5B3-A8B0-4c70-A805-9FC80CDEF262"))
IMPCVideoDecFilter :
public IUnknown {
	STDMETHOD(Apply()) = 0;

	STDMETHOD(SetThreadNumber(int nValue)) = 0;
	STDMETHOD_(int, GetThreadNumber()) = 0;

	STDMETHOD(SetDiscardMode(int nValue)) = 0;
	STDMETHOD_(int, GetDiscardMode()) = 0;

	STDMETHOD(SetErrorRecognition(int nValue)) = 0;
	STDMETHOD_(int, GetErrorRecognition()) = 0;

	STDMETHOD(SetIDCTAlgo(int nValue)) = 0;
	STDMETHOD_(int, GetIDCTAlgo()) = 0;

	STDMETHOD_(GUID*, GetDXVADecoderGuid()) = 0;

	STDMETHOD(SetActiveCodecs(MPC_VIDEO_CODEC nValue)) = 0;
	STDMETHOD_(MPC_VIDEO_CODEC, GetActiveCodecs()) = 0;

	STDMETHOD_(LPCTSTR, GetVideoCardDescription()) = 0;

	STDMETHOD(SetARMode(int nValue)) = 0;
	STDMETHOD_(int, GetARMode()) = 0;

	STDMETHOD(SetDXVACheckCompatibility(int nValue)) = 0;
	STDMETHOD_(int, GetDXVACheckCompatibility()) = 0;

	STDMETHOD(SetDXVA_SD(int nValue)) = 0;
	STDMETHOD_(int, GetDXVA_SD()) = 0;
};