Commit ad0b948a authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

directx-va: directx_va_mode_t is only used in directx_va.c

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 031caeb2
...@@ -139,6 +139,13 @@ DEFINE_GUID(DXVA_ModeH263_D, 0x1b81be06, 0xa0c7, 0x11d3, ...@@ -139,6 +139,13 @@ DEFINE_GUID(DXVA_ModeH263_D, 0x1b81be06, 0xa0c7, 0x11d3,
DEFINE_GUID(DXVA_ModeH263_E, 0x1b81be07, 0xa0c7, 0x11d3, 0xb9, 0x84, 0x00, 0xc0, 0x4f, 0x2e, 0x73, 0xc5); DEFINE_GUID(DXVA_ModeH263_E, 0x1b81be07, 0xa0c7, 0x11d3, 0xb9, 0x84, 0x00, 0xc0, 0x4f, 0x2e, 0x73, 0xc5);
DEFINE_GUID(DXVA_ModeH263_F, 0x1b81be08, 0xa0c7, 0x11d3, 0xb9, 0x84, 0x00, 0xc0, 0x4f, 0x2e, 0x73, 0xc5); DEFINE_GUID(DXVA_ModeH263_F, 0x1b81be08, 0xa0c7, 0x11d3, 0xb9, 0x84, 0x00, 0xc0, 0x4f, 0x2e, 0x73, 0xc5);
typedef struct {
const char *name;
const GUID *guid;
int codec;
const int *p_profiles; // NULL or ends with 0
} directx_va_mode_t;
/* XXX Prefered modes must come first */ /* XXX Prefered modes must come first */
static const directx_va_mode_t DXVA_MODES[] = { static const directx_va_mode_t DXVA_MODES[] = {
/* MPEG-1/2 */ /* MPEG-1/2 */
......
...@@ -41,13 +41,6 @@ ...@@ -41,13 +41,6 @@
#include <unknwn.h> #include <unknwn.h>
typedef struct {
const char *name;
const GUID *guid;
int codec;
const int *p_profiles; // NULL or ends with 0
} directx_va_mode_t;
/* */ /* */
typedef struct { typedef struct {
int refcount; int refcount;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment