Xv.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /***********************************************************
  2. Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.                         All Rights Reserved
  5. Permission to use, copy, modify, and distribute this software and its 
  6. documentation for any purpose and without fee is hereby granted, 
  7. provided that the above copyright notice appear in all copies and that
  8. both that copyright notice and this permission notice appear in 
  9. supporting documentation, and that the names of Digital or MIT not be
  10. used in advertising or publicity pertaining to distribution of the
  11. software without specific, written prior permission.  
  12. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  13. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  14. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  15. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  16. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  17. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  18. SOFTWARE.
  19. ******************************************************************/
  20. /* $XFree86: xc/include/extensions/Xv.h,v 1.5 1999/12/11 19:28:48 mvojkovi Exp $ */
  21. #ifndef XV_H
  22. #define XV_H
  23. /*
  24. ** File: 
  25. **
  26. **   Xv.h --- Xv shared library and server header file
  27. **
  28. ** Author: 
  29. **
  30. **   David Carver (Digital Workstation Engineering/Project Athena)
  31. **
  32. ** Revisions:
  33. **
  34. **   05.15.91 Carver
  35. **     - version 2.0 upgrade
  36. **
  37. **   01.24.91 Carver
  38. **     - version 1.4 upgrade
  39. **
  40. */
  41. #include <X11/X.h>
  42. #define XvName "XVideo"
  43. #define XvVersion 2
  44. #define XvRevision 2
  45. /* Symbols */
  46. typedef XID XvPortID;
  47. typedef XID XvEncodingID;
  48. #define XvNone 0
  49. #define XvInput          0
  50. #define XvOutput         1
  51. #define XvInputMask      (1L<<XvInput)
  52. #define XvOutputMask     (1L<<XvOutput)
  53. #define XvVideoMask  0x00000004
  54. #define XvStillMask  0x00000008
  55. #define XvImageMask  0x00000010
  56. /* These two are not client viewable */
  57. #define XvPixmapMask  0x00010000
  58. #define XvWindowMask  0x00020000
  59. #define XvGettable 0x01
  60. #define XvSettable 0x02
  61. #define XvRGB 0
  62. #define XvYUV 1
  63. #define XvPacked 0
  64. #define XvPlanar 1
  65. #define XvTopToBottom 0
  66. #define XvBottomToTop 1
  67. /* Events */
  68. #define XvVideoNotify 0
  69. #define XvPortNotify 1
  70. #define XvNumEvents 2
  71. /* Video Notify Reasons */
  72. #define XvStarted 0
  73. #define XvStopped 1
  74. #define XvBusy 2
  75. #define XvPreempted 3
  76. #define XvHardError 4
  77. #define XvLastReason 4
  78. #define XvNumReasons (XvLastReason + 1)
  79. #define XvStartedMask     (1L<<XvStarted)
  80. #define XvStoppedMask     (1L<<XvStopped)
  81. #define XvBusyMask        (1L<<XvBusy)
  82. #define XvPreemptedMask   (1L<<XvPreempted)
  83. #define XvHardErrorMask   (1L<<XvHardError)
  84. #define XvAnyReasonMask   ((1L<<XvNumReasons) - 1)
  85. #define XvNoReasonMask    0
  86. /* Errors */
  87. #define XvBadPort 0
  88. #define XvBadEncoding 1
  89. #define XvBadControl 2
  90. #define XvNumErrors 3
  91. /* Status */
  92. #define XvBadExtension 1
  93. #define XvAlreadyGrabbed 2
  94. #define XvInvalidTime 3
  95. #define XvBadReply 4
  96. #define XvBadAlloc 5
  97. #endif /* XV_H */