xv: move XvVideoNotifyRec into xvmain.c
This struct is only used in xvmain.c, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1512>
This commit is contained in:
parent
4d0b5833da
commit
354f42b25c
|
@ -85,13 +85,6 @@ typedef struct {
|
||||||
ClientPtr client;
|
ClientPtr client;
|
||||||
} XvGrabRec, *XvGrabPtr;
|
} XvGrabRec, *XvGrabPtr;
|
||||||
|
|
||||||
typedef struct _XvVideoNotifyRec {
|
|
||||||
struct _XvVideoNotifyRec *next;
|
|
||||||
ClientPtr client;
|
|
||||||
unsigned long id;
|
|
||||||
unsigned long mask;
|
|
||||||
} XvVideoNotifyRec, *XvVideoNotifyPtr;
|
|
||||||
|
|
||||||
typedef struct _XvPortNotifyRec {
|
typedef struct _XvPortNotifyRec {
|
||||||
struct _XvPortNotifyRec *next;
|
struct _XvPortNotifyRec *next;
|
||||||
ClientPtr client;
|
ClientPtr client;
|
||||||
|
|
|
@ -110,6 +110,13 @@ SOFTWARE.
|
||||||
#define SCREEN_EPILOGUE(pScreen, field, wrapper)\
|
#define SCREEN_EPILOGUE(pScreen, field, wrapper)\
|
||||||
((pScreen)->field = wrapper)
|
((pScreen)->field = wrapper)
|
||||||
|
|
||||||
|
typedef struct _XvVideoNotifyRec {
|
||||||
|
struct _XvVideoNotifyRec *next;
|
||||||
|
ClientPtr client;
|
||||||
|
unsigned long id;
|
||||||
|
unsigned long mask;
|
||||||
|
} XvVideoNotifyRec, *XvVideoNotifyPtr;
|
||||||
|
|
||||||
static DevPrivateKeyRec XvScreenKeyRec;
|
static DevPrivateKeyRec XvScreenKeyRec;
|
||||||
|
|
||||||
Bool noXvExtension = FALSE;
|
Bool noXvExtension = FALSE;
|
||||||
|
|
Loading…
Reference in New Issue