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

流媒体/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/lib/Xv/Xv.c,v 1.15 2001/05/11 08:23:22 alanh Exp $ */
  21. /*
  22. ** File: 
  23. **
  24. **   Xv.c --- Xv library extension module.
  25. **
  26. ** Author: 
  27. **
  28. **   David Carver (Digital Workstation Engineering/Project Athena)
  29. **
  30. ** Revisions:
  31. **
  32. **   26.06.91 Carver
  33. **     - changed XvFreeAdaptors to XvFreeAdaptorInfo
  34. **     - changed XvFreeEncodings to XvFreeEncodingInfo
  35. **
  36. **   11.06.91 Carver
  37. **     - changed SetPortControl to SetPortAttribute
  38. **     - changed GetPortControl to GetPortAttribute
  39. **     - changed QueryBestSize
  40. **
  41. **   15.05.91 Carver
  42. **     - version 2.0 upgrade
  43. **
  44. **   240.01.91 Carver
  45. **     - version 1.4 upgrade
  46. **
  47. */
  48. #include <stdio.h>
  49. #include "Xvlibint.h"
  50. #include <X11/extensions/Xext.h>
  51. #include <X11/extensions/XShm.h>
  52. #include "extutil.h"
  53. static XExtensionInfo _xv_info_data;
  54. static XExtensionInfo *xv_info = &_xv_info_data;
  55. static char *xv_extension_name = XvName;
  56. #define XvCheckExtension(dpy, i, val) 
  57.   XextCheckExtension(dpy, i, xv_extension_name, val)
  58. static char *xv_error_string();
  59. static int xv_close_display();
  60. static Bool xv_wire_to_event();
  61. static XExtensionHooks xv_extension_hooks = {
  62.     NULL,                               /* create_gc */
  63.     NULL,                               /* copy_gc */
  64.     NULL,                               /* flush_gc */
  65.     NULL,                               /* free_gc */
  66.     NULL,                               /* create_font */
  67.     NULL,                               /* free_font */
  68.     xv_close_display,                   /* close_display */
  69.     xv_wire_to_event,                   /* wire_to_event */
  70.     NULL,                               /* event_to_wire */
  71.     NULL,                               /* error */
  72.     xv_error_string                     /* error_string */
  73. };
  74. static char *xv_error_list[] = 
  75. {
  76.    "BadPort",     /* XvBadPort     */
  77.    "BadEncoding",   /* XvBadEncoding */
  78.    "BadControl"     /* XvBadControl  */
  79. };
  80. static XEXT_GENERATE_CLOSE_DISPLAY (xv_close_display, xv_info)
  81. static XEXT_GENERATE_FIND_DISPLAY (xv_find_display, xv_info, 
  82.                                    xv_extension_name, 
  83.                                    &xv_extension_hooks,
  84.    XvNumEvents, NULL)
  85.      
  86. static XEXT_GENERATE_ERROR_STRING (xv_error_string, xv_extension_name,
  87.                                    XvNumErrors, xv_error_list)
  88. int
  89. SDL_NAME(XvQueryExtension)(
  90.      Display *dpy,
  91.      unsigned int *p_version,
  92.      unsigned int *p_revision,
  93.      unsigned int *p_requestBase,
  94.      unsigned int *p_eventBase,
  95.      unsigned int *p_errorBase
  96. ){
  97.   XExtDisplayInfo *info = xv_find_display(dpy);
  98.   xvQueryExtensionReq *req;
  99.   xvQueryExtensionReply rep;
  100.   XvCheckExtension(dpy, info, XvBadExtension);
  101.   LockDisplay(dpy);
  102.   XvGetReq(QueryExtension, req);
  103.   if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
  104.      UnlockDisplay(dpy);
  105.      SyncHandle();
  106.      return XvBadExtension;
  107.   }
  108.   *p_version = rep.version;
  109.   *p_revision = rep.revision;
  110.   *p_requestBase = info->codes->major_opcode;
  111.   *p_eventBase = info->codes->first_event;
  112.   *p_errorBase = info->codes->first_error;
  113.   UnlockDisplay(dpy);
  114.   SyncHandle();
  115.   return Success;
  116. }
  117. int
  118. SDL_NAME(XvQueryAdaptors)(
  119.      Display *dpy,
  120.      Window window,
  121.      unsigned int *p_nAdaptors,
  122.      SDL_NAME(XvAdaptorInfo) **p_pAdaptors
  123. ){
  124.   XExtDisplayInfo *info = xv_find_display(dpy);
  125.   xvQueryAdaptorsReq *req;
  126.   xvQueryAdaptorsReply rep;
  127.   int size,ii,jj;
  128.   char *name;
  129.   SDL_NAME(XvAdaptorInfo) *pas, *pa;
  130.   SDL_NAME(XvFormat) *pfs, *pf;
  131.   char *buffer;
  132.   union 
  133.     {
  134.       char *buffer;
  135.       char *string;
  136.       xvAdaptorInfo *pa;
  137.       xvFormat *pf;
  138.     } u;
  139.   
  140.   XvCheckExtension(dpy, info, XvBadExtension);
  141.   LockDisplay(dpy);
  142.   XvGetReq(QueryAdaptors, req);
  143.   req->window = window;
  144.   /* READ THE REPLY */
  145.   if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
  146.       UnlockDisplay(dpy);
  147.       SyncHandle();
  148.       return(XvBadReply);
  149.   }
  150.   size = rep.length << 2;
  151.   if ( (buffer = (char *)Xmalloc ((unsigned) size)) == NULL) {
  152.       UnlockDisplay(dpy);
  153.       SyncHandle();
  154.       return(XvBadAlloc);
  155.   }
  156.   _XRead (dpy, buffer, size);
  157.   u.buffer = buffer;
  158.   /* GET INPUT ADAPTORS */
  159.   if (rep.num_adaptors == 0) {
  160.       pas = NULL;
  161.   } else {
  162.       size = rep.num_adaptors*sizeof(SDL_NAME(XvAdaptorInfo));
  163.       if ((pas=(SDL_NAME(XvAdaptorInfo) *)Xmalloc(size))==NULL) {
  164.           Xfree(buffer);
  165.           UnlockDisplay(dpy);
  166.           SyncHandle();
  167.           return(XvBadAlloc);
  168.       }
  169.   }
  170.   /* INIT ADAPTOR FIELDS */
  171.   pa = pas;
  172.   for (ii=0; ii<rep.num_adaptors; ii++) {
  173.       pa->num_adaptors = 0;
  174.       pa->name = (char *)NULL;
  175.       pa->formats = (SDL_NAME(XvFormat) *)NULL;
  176.       pa++;
  177.   }
  178.   pa = pas;
  179.   for (ii=0; ii<rep.num_adaptors; ii++) {
  180.       pa->type = u.pa->type;
  181.       pa->base_id = u.pa->base_id;
  182.       pa->num_ports = u.pa->num_ports;
  183.       pa->num_formats = u.pa->num_formats;
  184.       pa->num_adaptors = rep.num_adaptors - ii;
  185.       /* GET ADAPTOR NAME */
  186.       size = u.pa->name_size;
  187.       u.buffer += (sz_xvAdaptorInfo + 3) & ~3;
  188.       if ( (name = (char *)Xmalloc(size+1)) == NULL)
  189. {
  190.   SDL_NAME(XvFreeAdaptorInfo)(pas);
  191.   Xfree(buffer);
  192.           UnlockDisplay(dpy);
  193.           SyncHandle();
  194.   return(XvBadAlloc);
  195. }
  196.       (void)strncpy(name, u.string, size);
  197.       name[size] = '';
  198.       pa->name = name;
  199.       u.buffer += (size + 3) & ~3;
  200.       /* GET FORMATS */
  201.       size = pa->num_formats*sizeof(SDL_NAME(XvFormat));
  202.       if ((pfs=(SDL_NAME(XvFormat) *)Xmalloc(size))==NULL) {
  203.   SDL_NAME(XvFreeAdaptorInfo)(pas);
  204.   Xfree(buffer);
  205.           UnlockDisplay(dpy);
  206.           SyncHandle();
  207.   return(XvBadAlloc);
  208.       }
  209.       pf = pfs;
  210.       for (jj=0; jj<pa->num_formats; jj++) {
  211.   pf->depth = u.pf->depth;
  212.   pf->visual_id = u.pf->visual;
  213.   pf++;
  214.   
  215.   u.buffer += (sz_xvFormat + 3) & ~3;
  216.       }
  217.       pa->formats = pfs;
  218.       pa++;
  219.   }
  220.   *p_nAdaptors = rep.num_adaptors;
  221.   *p_pAdaptors = pas;
  222.   UnlockDisplay(dpy);
  223.   SyncHandle();
  224.   return (Success);
  225. }
  226. void
  227. SDL_NAME(XvFreeAdaptorInfo)(SDL_NAME(XvAdaptorInfo) *pAdaptors)
  228. {
  229.   SDL_NAME(XvAdaptorInfo) *pa;
  230.   int ii;
  231.   if (!pAdaptors) return;
  232.   pa = pAdaptors;
  233.   for (ii=0; ii<pAdaptors->num_adaptors; ii++, pa++)
  234.     {
  235.       if (pa->name)
  236. {
  237.   Xfree(pa->name);
  238. }
  239.       if (pa->formats)
  240. {
  241.   Xfree(pa->formats);
  242. }
  243.     } 
  244.   Xfree(pAdaptors);
  245. }
  246. int
  247. SDL_NAME(XvQueryEncodings)(
  248.      Display *dpy,
  249.      XvPortID port,
  250.      unsigned int *p_nEncodings,
  251.      SDL_NAME(XvEncodingInfo) **p_pEncodings
  252. ){
  253.   XExtDisplayInfo *info = xv_find_display(dpy);
  254.   xvQueryEncodingsReq *req;
  255.   xvQueryEncodingsReply rep;
  256.   int size, jj;
  257.   char *name;
  258.   SDL_NAME(XvEncodingInfo) *pes, *pe;
  259.   char *buffer;
  260.   union 
  261.     {
  262.       char *buffer;
  263.       char *string;
  264.       xvEncodingInfo *pe;
  265.     } u;
  266.   
  267.   XvCheckExtension(dpy, info, XvBadExtension);
  268.   LockDisplay(dpy);
  269.   XvGetReq(QueryEncodings, req);
  270.   req->port = port;
  271.   /* READ THE REPLY */
  272.   if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
  273.       UnlockDisplay(dpy);
  274.       SyncHandle();
  275.       return(XvBadReply);
  276.   }
  277.   size = rep.length << 2;
  278.   if ( (buffer = (char *)Xmalloc ((unsigned) size)) == NULL) {
  279.       UnlockDisplay(dpy);
  280.       SyncHandle();
  281.       return(XvBadAlloc);
  282.   }
  283.   _XRead (dpy, buffer, size);
  284.   u.buffer = buffer;
  285.   /* GET ENCODINGS */
  286.   size = rep.num_encodings*sizeof(SDL_NAME(XvEncodingInfo));
  287.   if ( (pes = (SDL_NAME(XvEncodingInfo) *)Xmalloc(size)) == NULL) {
  288.       Xfree(buffer);
  289.       UnlockDisplay(dpy);
  290.       SyncHandle();
  291.       return(XvBadAlloc);
  292.   }
  293.   /* INITIALIZE THE ENCODING POINTER */
  294.   pe = pes;
  295.   for (jj=0; jj<rep.num_encodings; jj++) {
  296.       pe->name = (char *)NULL;
  297.       pe->num_encodings = 0;
  298.       pe++;
  299.   }
  300.   pe = pes;
  301.   for (jj=0; jj<rep.num_encodings; jj++) {
  302.       pe->encoding_id = u.pe->encoding;
  303.       pe->width = u.pe->width;
  304.       pe->height = u.pe->height;
  305.       pe->rate.numerator = u.pe->rate.numerator;
  306.       pe->rate.denominator = u.pe->rate.denominator;
  307.       pe->num_encodings = rep.num_encodings - jj;
  308.       size = u.pe->name_size;
  309.       u.buffer += (sz_xvEncodingInfo + 3) & ~3;
  310.       if ( (name = (char *)Xmalloc(size+1)) == NULL) {
  311.   Xfree(buffer);
  312.           UnlockDisplay(dpy);
  313.           SyncHandle();
  314.   return(XvBadAlloc);
  315.       }
  316.       strncpy(name, u.string, size);
  317.       name[size] = '';
  318.       pe->name = name;
  319.       pe++;
  320.       u.buffer += (size + 3) & ~3;
  321.   }
  322.   *p_nEncodings = rep.num_encodings;
  323.   *p_pEncodings = pes;
  324.   UnlockDisplay(dpy);
  325.   SyncHandle();
  326.   return (Success);
  327. }
  328. void
  329. SDL_NAME(XvFreeEncodingInfo)(SDL_NAME(XvEncodingInfo) *pEncodings)
  330. {
  331.   SDL_NAME(XvEncodingInfo) *pe;
  332.   int ii;
  333.   if (!pEncodings) return;
  334.   pe = pEncodings;
  335.   for (ii=0; ii<pEncodings->num_encodings; ii++, pe++) {
  336.       if (pe->name) Xfree(pe->name);
  337.   }
  338.   Xfree(pEncodings);
  339. }
  340. int
  341. SDL_NAME(XvPutVideo)(
  342.      Display *dpy,
  343.      XvPortID port,
  344.      Drawable d,
  345.      GC gc,
  346.      int vx, int vy, 
  347.      unsigned int vw, unsigned int vh,
  348.      int dx, int dy,
  349.      unsigned int dw, unsigned int dh
  350. ){
  351.   XExtDisplayInfo *info = xv_find_display(dpy);
  352.   xvPutVideoReq *req;
  353.   XvCheckExtension(dpy, info, XvBadExtension);
  354.   LockDisplay(dpy);
  355.   
  356.   FlushGC(dpy, gc);
  357.   XvGetReq(PutVideo, req);
  358.   req->port = port;
  359.   req->drawable = d;
  360.   req->gc = gc->gid;
  361.   req->vid_x = vx;
  362.   req->vid_y = vy;
  363.   req->vid_w = vw;
  364.   req->vid_h = vh;
  365.   req->drw_x = dx;
  366.   req->drw_y = dy;
  367.   req->drw_w = dw;
  368.   req->drw_h = dh;
  369.   UnlockDisplay(dpy);
  370.   SyncHandle();
  371.   return Success;
  372. }
  373. int
  374. SDL_NAME(XvPutStill)(
  375.      Display *dpy,
  376.      XvPortID port,
  377.      Drawable d,
  378.      GC gc,
  379.      int vx, int vy, 
  380.      unsigned int vw, unsigned int vh,
  381.      int dx, int dy,
  382.      unsigned int dw, unsigned int dh
  383. ){
  384.   XExtDisplayInfo *info = xv_find_display(dpy);
  385.   xvPutStillReq *req;
  386.   XvCheckExtension(dpy, info, XvBadExtension);
  387.   LockDisplay(dpy);
  388.   FlushGC(dpy, gc);
  389.   XvGetReq(PutStill, req);
  390.   req->port = port;
  391.   req->drawable = d;
  392.   req->gc = gc->gid;
  393.   req->vid_x = vx;
  394.   req->vid_y = vy;
  395.   req->vid_w = vw;
  396.   req->vid_h = vh;
  397.   req->drw_x = dx;
  398.   req->drw_y = dy;
  399.   req->drw_w = dw;
  400.   req->drw_h = dh;
  401.   UnlockDisplay(dpy);
  402.   SyncHandle();
  403.   return Success;
  404. }
  405. int
  406. SDL_NAME(XvGetVideo)(
  407.      Display *dpy,
  408.      XvPortID port,
  409.      Drawable d,
  410.      GC gc,
  411.      int vx, int vy, 
  412.      unsigned int vw, unsigned int vh,
  413.      int dx, int dy,
  414.      unsigned int dw, unsigned int dh
  415. ){
  416.   XExtDisplayInfo *info = xv_find_display(dpy);
  417.   xvGetVideoReq *req;
  418.   XvCheckExtension(dpy, info, XvBadExtension);
  419.   LockDisplay(dpy);
  420.   FlushGC(dpy, gc);
  421.   XvGetReq(GetVideo, req);
  422.   req->port = port;
  423.   req->drawable = d;
  424.   req->gc = gc->gid;
  425.   req->vid_x = vx;
  426.   req->vid_y = vy;
  427.   req->vid_w = vw;
  428.   req->vid_h = vh;
  429.   req->drw_x = dx;
  430.   req->drw_y = dy;
  431.   req->drw_w = dw;
  432.   req->drw_h = dh;
  433.   UnlockDisplay(dpy);
  434.   SyncHandle();
  435.   return Success;
  436. }
  437. int
  438. SDL_NAME(XvGetStill)(
  439.      Display *dpy,
  440.      XvPortID port,
  441.      Drawable d,
  442.      GC gc,
  443.      int vx, int vy, 
  444.      unsigned int vw, unsigned int vh,
  445.      int dx, int dy,
  446.      unsigned int dw, unsigned int dh
  447. ){
  448.   XExtDisplayInfo *info = xv_find_display(dpy);
  449.   xvGetStillReq *req;
  450.   XvCheckExtension(dpy, info, XvBadExtension);
  451.   LockDisplay(dpy);
  452.   FlushGC(dpy, gc);
  453.   XvGetReq(GetStill, req);
  454.   req->port = port;
  455.   req->drawable = d;
  456.   req->gc = gc->gid;
  457.   req->vid_x = vx;
  458.   req->vid_y = vy;
  459.   req->vid_w = vw;
  460.   req->vid_h = vh;
  461.   req->drw_x = dx;
  462.   req->drw_y = dy;
  463.   req->drw_w = dw;
  464.   req->drw_h = dh;
  465.   UnlockDisplay(dpy);
  466.   SyncHandle();
  467.   return Success;
  468. }
  469. int
  470. SDL_NAME(XvStopVideo)(
  471.      Display *dpy,
  472.      XvPortID port,
  473.      Drawable draw
  474. ){
  475.   XExtDisplayInfo *info = xv_find_display(dpy);
  476.   xvStopVideoReq *req;
  477.   XvCheckExtension(dpy, info, XvBadExtension);
  478.   LockDisplay(dpy);
  479.   XvGetReq(StopVideo, req);
  480.   req->port = port;
  481.   req->drawable = draw;
  482.   UnlockDisplay(dpy);
  483.   SyncHandle();
  484.   return Success;
  485. }
  486. int
  487. SDL_NAME(XvGrabPort)(
  488.      Display *dpy,
  489.      XvPortID port,
  490.      Time time
  491. ){
  492.   XExtDisplayInfo *info = xv_find_display(dpy);
  493.   int result;
  494.   xvGrabPortReply rep;
  495.   xvGrabPortReq *req;
  496.   XvCheckExtension(dpy, info, XvBadExtension);
  497.   LockDisplay(dpy);
  498.   XvGetReq(GrabPort, req);
  499.   req->port = port;
  500.   req->time = time;
  501.   if (_XReply (dpy, (xReply *) &rep, 0, xTrue) == 0) 
  502.     rep.result = GrabSuccess;
  503.   result = rep.result;
  504.   UnlockDisplay(dpy);
  505.   SyncHandle();
  506.   return result;
  507. }
  508. int
  509. SDL_NAME(XvUngrabPort)(
  510.      Display *dpy,
  511.      XvPortID port,
  512.      Time time
  513. ){
  514.   XExtDisplayInfo *info = xv_find_display(dpy);
  515.   xvUngrabPortReq *req;
  516.   XvCheckExtension(dpy, info, XvBadExtension);
  517.   LockDisplay(dpy);
  518.   XvGetReq(UngrabPort, req);
  519.   req->port = port;
  520.   req->time = time;
  521.   UnlockDisplay(dpy);
  522.   SyncHandle();
  523.   return Success;
  524. }
  525. int
  526. SDL_NAME(XvSelectVideoNotify)(
  527.      Display *dpy,
  528.      Drawable drawable,
  529.      Bool onoff
  530. ){
  531.   XExtDisplayInfo *info = xv_find_display(dpy);
  532.   xvSelectVideoNotifyReq *req;
  533.   XvCheckExtension(dpy, info, XvBadExtension);
  534.   LockDisplay(dpy);
  535.   XvGetReq(SelectVideoNotify, req);
  536.   req->drawable = drawable;
  537.   req->onoff = onoff;
  538.   UnlockDisplay(dpy);
  539.   SyncHandle();
  540.   return Success;
  541. }
  542. int
  543. SDL_NAME(XvSelectPortNotify)(
  544.      Display *dpy,
  545.      XvPortID port,
  546.      Bool onoff
  547. ){
  548.   XExtDisplayInfo *info = xv_find_display(dpy);
  549.   xvSelectPortNotifyReq *req;
  550.   XvCheckExtension(dpy, info, XvBadExtension);
  551.   LockDisplay(dpy);
  552.   XvGetReq(SelectPortNotify, req);
  553.   req->port = port;
  554.   req->onoff = onoff;
  555.   UnlockDisplay(dpy);
  556.   SyncHandle();
  557.   return Success;
  558. }
  559. int
  560. SDL_NAME(XvSetPortAttribute) (
  561.      Display *dpy,
  562.      XvPortID port,
  563.      Atom attribute,
  564.      int value
  565. )
  566. {
  567.   XExtDisplayInfo *info = xv_find_display(dpy);
  568.   xvSetPortAttributeReq *req;
  569.   XvCheckExtension(dpy, info, XvBadExtension);
  570.   LockDisplay(dpy);
  571.   XvGetReq(SetPortAttribute, req);
  572.   req->port = port;
  573.   req->attribute = attribute;
  574.   req->value = value;
  575.   UnlockDisplay(dpy);
  576.   SyncHandle();
  577.   return (Success);
  578. }
  579. int
  580. SDL_NAME(XvGetPortAttribute) (
  581.      Display *dpy,
  582.      XvPortID port,
  583.      Atom attribute,
  584.      int *p_value
  585. )
  586. {
  587.   XExtDisplayInfo *info = xv_find_display(dpy);
  588.   xvGetPortAttributeReq *req;
  589.   xvGetPortAttributeReply rep;
  590.   XvCheckExtension(dpy, info, XvBadExtension);
  591.   LockDisplay(dpy);
  592.   XvGetReq(GetPortAttribute, req);
  593.   req->port = port;
  594.   req->attribute = attribute;
  595.   /* READ THE REPLY */
  596.   if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
  597.       UnlockDisplay(dpy);
  598.       SyncHandle();
  599.       return(XvBadReply);
  600.   }
  601.   *p_value = rep.value;
  602.   
  603.   UnlockDisplay(dpy);
  604.   SyncHandle();
  605.   return (Success);
  606. }
  607. int
  608. SDL_NAME(XvQueryBestSize)(
  609.      Display *dpy,
  610.      XvPortID port,
  611.      Bool motion,
  612.      unsigned int vid_w, 
  613.      unsigned int vid_h,
  614.      unsigned int drw_w, 
  615.      unsigned int drw_h,
  616.      unsigned int *p_actual_width, 
  617.      unsigned int *p_actual_height
  618. )
  619. {
  620.   XExtDisplayInfo *info = xv_find_display(dpy);
  621.   xvQueryBestSizeReq *req;
  622.   xvQueryBestSizeReply rep;
  623.   XvCheckExtension(dpy, info, XvBadExtension);
  624.   LockDisplay(dpy);
  625.   XvGetReq(QueryBestSize, req);
  626.   req->port = port;
  627.   req->motion = motion;
  628.   req->vid_w = vid_w;
  629.   req->vid_h = vid_h;
  630.   req->drw_w = drw_w;
  631.   req->drw_h = drw_h;
  632.   /* READ THE REPLY */
  633.   if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
  634.       UnlockDisplay(dpy);
  635.       SyncHandle();
  636.       return(XvBadReply);
  637.   }
  638.   *p_actual_width = rep.actual_width;
  639.   *p_actual_height = rep.actual_height;
  640.   UnlockDisplay(dpy);
  641.   SyncHandle();
  642.   return (Success);
  643. }
  644. SDL_NAME(XvAttribute)* 
  645. SDL_NAME(XvQueryPortAttributes)(Display *dpy, XvPortID port, int *num)
  646. {
  647.   XExtDisplayInfo *info = xv_find_display(dpy);
  648.   xvQueryPortAttributesReq *req;
  649.   xvQueryPortAttributesReply rep;
  650.   SDL_NAME(XvAttribute) *ret = NULL;
  651.   *num = 0;
  652.   XvCheckExtension(dpy, info, NULL);
  653.   LockDisplay(dpy);
  654.   XvGetReq(QueryPortAttributes, req);
  655.   req->port = port;
  656.   /* READ THE REPLY */
  657.   if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
  658.       UnlockDisplay(dpy);
  659.       SyncHandle();
  660.       return ret;
  661.   }
  662.   if(rep.num_attributes) {
  663.       int size = (rep.num_attributes * sizeof(SDL_NAME(XvAttribute))) + rep.text_size;
  664.       if((ret = Xmalloc(size))) {
  665.   char* marker = (char*)(&ret[rep.num_attributes]);
  666.   xvAttributeInfo Info;
  667.   int i;
  668.   for(i = 0; i < rep.num_attributes; i++) {
  669.              _XRead(dpy, (char*)(&Info), sz_xvAttributeInfo);
  670.       ret[i].flags = (int)Info.flags;       
  671.       ret[i].min_value = Info.min;       
  672.       ret[i].max_value = Info.max;       
  673.       ret[i].name = marker;
  674.       _XRead(dpy, marker, Info.size);
  675.       marker += Info.size;
  676.       (*num)++;
  677.   }
  678.       } else
  679. _XEatData(dpy, rep.length << 2);
  680.   }
  681.   UnlockDisplay(dpy);
  682.   SyncHandle();
  683.   return ret;
  684. }
  685. SDL_NAME(XvImageFormatValues) * SDL_NAME(XvListImageFormats) (
  686.    Display  *dpy,
  687.    XvPortID  port,
  688.    int  *num
  689. ){
  690.   XExtDisplayInfo *info = xv_find_display(dpy);
  691.   xvListImageFormatsReq *req;
  692.   xvListImageFormatsReply rep;
  693.   SDL_NAME(XvImageFormatValues) *ret = NULL;
  694.   *num = 0;
  695.   XvCheckExtension(dpy, info, NULL);
  696.   LockDisplay(dpy);
  697.   XvGetReq(ListImageFormats, req);
  698.   req->port = port;
  699.   /* READ THE REPLY */
  700.   if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
  701.       UnlockDisplay(dpy);
  702.       SyncHandle();
  703.       return NULL;
  704.   }
  705.   if(rep.num_formats) {
  706.       int size = (rep.num_formats * sizeof(SDL_NAME(XvImageFormatValues)));
  707.       if((ret = Xmalloc(size))) {
  708.   xvImageFormatInfo Info;
  709.   int i;
  710.   for(i = 0; i < rep.num_formats; i++) {
  711.               _XRead(dpy, (char*)(&Info), sz_xvImageFormatInfo);
  712.       ret[i].id = Info.id;       
  713.       ret[i].type = Info.type;       
  714.       ret[i].byte_order = Info.byte_order;       
  715.       memcpy(&(ret[i].guid[0]), &(Info.guid[0]), 16);
  716.       ret[i].bits_per_pixel = Info.bpp;       
  717.          ret[i].format = Info.format;       
  718.           ret[i].num_planes = Info.num_planes;       
  719.            ret[i].depth = Info.depth;       
  720.            ret[i].red_mask = Info.red_mask;       
  721.            ret[i].green_mask = Info.green_mask;       
  722.            ret[i].blue_mask = Info.blue_mask;       
  723.            ret[i].y_sample_bits = Info.y_sample_bits;       
  724.            ret[i].u_sample_bits = Info.u_sample_bits;       
  725.            ret[i].v_sample_bits = Info.v_sample_bits;
  726.            ret[i].horz_y_period = Info.horz_y_period;
  727.            ret[i].horz_u_period = Info.horz_u_period;
  728.            ret[i].horz_v_period = Info.horz_v_period;
  729.            ret[i].vert_y_period = Info.vert_y_period;
  730.            ret[i].vert_u_period = Info.vert_u_period;
  731.            ret[i].vert_v_period = Info.vert_v_period;
  732.       memcpy(&(ret[i].component_order[0]), &(Info.comp_order[0]), 32);
  733.            ret[i].scanline_order = Info.scanline_order;
  734.       (*num)++;
  735.   }
  736.       } else
  737. _XEatData(dpy, rep.length << 2);
  738.   }
  739.   UnlockDisplay(dpy);
  740.   SyncHandle();
  741.   return ret;
  742. }
  743. SDL_NAME(XvImage) * SDL_NAME(XvCreateImage) (
  744.    Display *dpy,
  745.    XvPortID port,
  746.    int id,
  747.    char *data,
  748.    int width, 
  749.    int height 
  750. ) {
  751.    XExtDisplayInfo *info = xv_find_display(dpy);
  752.    xvQueryImageAttributesReq *req;
  753.    xvQueryImageAttributesReply rep;
  754.    SDL_NAME(XvImage) *ret = NULL;
  755.    XvCheckExtension(dpy, info, NULL);
  756.    LockDisplay(dpy);
  757.    XvGetReq(QueryImageAttributes, req);
  758.    req->id = id;
  759.    req->port = port;
  760.    req->width = width;
  761.    req->height = height;
  762.    /* READ THE REPLY */
  763.    if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
  764.        UnlockDisplay(dpy);
  765.        SyncHandle();
  766.       return NULL;
  767.    }
  768.    if((ret = (SDL_NAME(XvImage)*)Xmalloc(sizeof(SDL_NAME(XvImage)) + (rep.num_planes << 3)))) {
  769. ret->id = id;
  770. ret->width = rep.width;
  771. ret->height = rep.height;
  772. ret->data_size = rep.data_size;
  773. ret->num_planes = rep.num_planes;
  774. ret->pitches = (int*)(&ret[1]);
  775. ret->offsets = ret->pitches + rep.num_planes;
  776. ret->data = data;
  777. ret->obdata = NULL;
  778.    _XRead(dpy, (char*)(ret->pitches), rep.num_planes << 2);
  779. _XRead(dpy, (char*)(ret->offsets), rep.num_planes << 2);
  780.    } else
  781. _XEatData(dpy, rep.length << 2);
  782.    UnlockDisplay(dpy);
  783.    SyncHandle();
  784.    return ret;
  785. }
  786. SDL_NAME(XvImage) * SDL_NAME(XvShmCreateImage) (
  787.    Display *dpy,
  788.    XvPortID port,
  789.    int id,
  790.    char *data,
  791.    int width, 
  792.    int height,
  793.    XShmSegmentInfo *shminfo
  794. ){
  795.    SDL_NAME(XvImage) *ret;
  796.    ret = SDL_NAME(XvCreateImage)(dpy, port, id, data, width, height);
  797.    if(ret) ret->obdata = (XPointer)shminfo;
  798.    return ret;
  799. }
  800. int SDL_NAME(XvPutImage) (
  801.    Display *dpy,
  802.    XvPortID port,
  803.    Drawable d,
  804.    GC gc,
  805.    SDL_NAME(XvImage) *image,
  806.    int src_x,
  807.    int src_y,
  808.    unsigned int src_w,
  809.    unsigned int src_h,
  810.    int dest_x, 
  811.    int dest_y,
  812.    unsigned int dest_w,
  813.    unsigned int dest_h
  814. ){
  815.   XExtDisplayInfo *info = xv_find_display(dpy);
  816.   xvPutImageReq *req;
  817.   int len;
  818.   XvCheckExtension(dpy, info, XvBadExtension);
  819.   LockDisplay(dpy);
  820.   FlushGC(dpy, gc);
  821.   XvGetReq(PutImage, req);
  822.   req->port = port;
  823.   req->drawable = d;
  824.   req->gc = gc->gid;
  825.   req->id = image->id;
  826.   req->src_x = src_x;
  827.   req->src_y = src_y;
  828.   req->src_w = src_w;
  829.   req->src_h = src_h;
  830.   req->drw_x = dest_x;
  831.   req->drw_y = dest_y;
  832.   req->drw_w = dest_w;
  833.   req->drw_h = dest_h;
  834.   req->width = image->width;
  835.   req->height = image->height;
  836.   len = (image->data_size + 3) >> 2;
  837.   SetReqLen(req, len, len);
  838.   /* Yes it's kindof lame that we are sending the whole thing,
  839.      but for video all of it may be needed even if displaying
  840.      only a subsection, and I don't want to go through the 
  841.      trouble of creating subregions to send */
  842.   Data(dpy, (char *)image->data, image->data_size);
  843.   UnlockDisplay(dpy);
  844.   SyncHandle();
  845.   return Success;
  846. }
  847. int SDL_NAME(XvShmPutImage) (
  848.    Display *dpy,
  849.    XvPortID port,
  850.    Drawable d,
  851.    GC gc,
  852.    SDL_NAME(XvImage) *image,
  853.    int src_x,
  854.    int src_y,
  855.    unsigned int src_w,
  856.    unsigned int src_h,
  857.    int dest_x, 
  858.    int dest_y,
  859.    unsigned int dest_w,
  860.    unsigned int dest_h,
  861.    Bool send_event
  862. ){
  863.   XExtDisplayInfo *info = xv_find_display(dpy);
  864.   XShmSegmentInfo *shminfo = (XShmSegmentInfo *)image->obdata;
  865.   xvShmPutImageReq *req;
  866.   XvCheckExtension(dpy, info, XvBadExtension);
  867.   LockDisplay(dpy);
  868.   
  869.   FlushGC(dpy, gc);
  870.   XvGetReq(ShmPutImage, req);
  871.   req->port = port;
  872.   req->drawable = d;
  873.   req->gc = gc->gid;
  874.   req->shmseg = shminfo->shmseg;
  875.   req->id = image->id;
  876.   req->src_x = src_x;
  877.   req->src_y = src_y;
  878.   req->src_w = src_w;
  879.   req->src_h = src_h;
  880.   req->drw_x = dest_x;
  881.   req->drw_y = dest_y;
  882.   req->drw_w = dest_w;
  883.   req->drw_h = dest_h;
  884.   req->offset = image->data - shminfo->shmaddr;
  885.   req->width = image->width;
  886.   req->height = image->height;
  887.   req->send_event = send_event;
  888.   UnlockDisplay(dpy);
  889.   SyncHandle();
  890.   return Success;
  891. }
  892. static Bool
  893. xv_wire_to_event(Display *dpy, XEvent *host, xEvent *wire)
  894. {
  895.   XExtDisplayInfo *info = xv_find_display(dpy);
  896.   SDL_NAME(XvEvent) *re    = (SDL_NAME(XvEvent) *)host;
  897.   xvEvent *event = (xvEvent *)wire;
  898.   XvCheckExtension(dpy, info, False);
  899.   switch((event->u.u.type & 0x7F) - info->codes->first_event)
  900.   {
  901.     case XvVideoNotify:
  902.       re->xvvideo.type = event->u.u.type & 0x7f;
  903.       re->xvvideo.serial = 
  904. _XSetLastRequestRead(dpy, (xGenericReply *)event);
  905.       re->xvvideo.send_event = ((event->u.u.type & 0x80) != 0);
  906.       re->xvvideo.display = dpy;
  907.       re->xvvideo.time = event->u.videoNotify.time;
  908.       re->xvvideo.reason = event->u.videoNotify.reason;
  909.       re->xvvideo.drawable = event->u.videoNotify.drawable;
  910.       re->xvvideo.port_id = event->u.videoNotify.port;
  911.       break;
  912.     case XvPortNotify:
  913.       re->xvport.type = event->u.u.type & 0x7f;
  914.       re->xvport.serial = 
  915. _XSetLastRequestRead(dpy, (xGenericReply *)event);
  916.       re->xvport.send_event = ((event->u.u.type & 0x80) != 0);
  917.       re->xvport.display = dpy;
  918.       re->xvport.time = event->u.portNotify.time;
  919.       re->xvport.port_id = event->u.portNotify.port;
  920.       re->xvport.attribute = event->u.portNotify.attribute;
  921.       re->xvport.value = event->u.portNotify.value;
  922.       break;
  923.     default:
  924.       return False; 
  925.   }
  926.   return (True);
  927. }