xf86xvpriv.h revision 4642e01f
1 2/* 3 * Copyright (c) 2003 by The XFree86 Project, Inc. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included in 13 * all copies or substantial portions of the Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21 * OTHER DEALINGS IN THE SOFTWARE. 22 * 23 * Except as contained in this notice, the name of the copyright holder(s) 24 * and author(s) shall not be used in advertising or otherwise to promote 25 * the sale, use or other dealings in this Software without prior written 26 * authorization from the copyright holder(s) and author(s). 27 */ 28 29#ifndef _XF86XVPRIV_H_ 30#define _XF86XVPRIV_H_ 31 32#include "xf86xv.h" 33#include "privates.h" 34 35/*** These are DDX layer privates ***/ 36 37extern DevPrivateKey XF86XvScreenKey; 38 39typedef struct { 40 DestroyWindowProcPtr DestroyWindow; 41 ClipNotifyProcPtr ClipNotify; 42 WindowExposuresProcPtr WindowExposures; 43 void (*AdjustFrame)(int, int, int, int); 44 Bool (*EnterVT)(int, int); 45 void (*LeaveVT)(int, int); 46 GCPtr videoGC; 47} XF86XVScreenRec, *XF86XVScreenPtr; 48 49typedef struct { 50 int flags; 51 PutVideoFuncPtr PutVideo; 52 PutStillFuncPtr PutStill; 53 GetVideoFuncPtr GetVideo; 54 GetStillFuncPtr GetStill; 55 StopVideoFuncPtr StopVideo; 56 SetPortAttributeFuncPtr SetPortAttribute; 57 GetPortAttributeFuncPtr GetPortAttribute; 58 QueryBestSizeFuncPtr QueryBestSize; 59 PutImageFuncPtr PutImage; 60 ReputImageFuncPtr ReputImage; 61 QueryImageAttributesFuncPtr QueryImageAttributes; 62} XvAdaptorRecPrivate, *XvAdaptorRecPrivatePtr; 63 64typedef struct { 65 ScrnInfoPtr pScrn; 66 DrawablePtr pDraw; 67 unsigned char type; 68 unsigned int subWindowMode; 69 DDXPointRec clipOrg; 70 RegionPtr clientClip; 71 RegionPtr pCompositeClip; 72 Bool FreeCompositeClip; 73 XvAdaptorRecPrivatePtr AdaptorRec; 74 XvStatus isOn; 75 Bool moved; 76 int vid_x, vid_y, vid_w, vid_h; 77 int drw_x, drw_y, drw_w, drw_h; 78 DevUnion DevPriv; 79} XvPortRecPrivate, *XvPortRecPrivatePtr; 80 81typedef struct _XF86XVWindowRec{ 82 XvPortRecPrivatePtr PortRec; 83 struct _XF86XVWindowRec *next; 84 GCPtr pGC; 85} XF86XVWindowRec, *XF86XVWindowPtr; 86 87#endif /* _XF86XVPRIV_H_ */ 88