Home | History | Annotate | Download | only in Xv

Lines Matching refs:req

115   xvQueryExtensionReq *req;
122 XvGetReq(QueryExtension, req);
150 xvQueryAdaptorsReq *req;
169 XvGetReq(QueryAdaptors, req);
170 req->window = window;
311 xvQueryEncodingsReq *req;
328 XvGetReq(QueryEncodings, req);
329 req->port = port;
433 xvPutVideoReq *req;
441 XvGetReq(PutVideo, req);
443 req->port = port;
444 req->drawable = d;
445 req->gc = gc->gid;
446 req->vid_x = vx;
447 req->vid_y = vy;
448 req->vid_w = vw;
449 req->vid_h = vh;
450 req->drw_x = dx;
451 req->drw_y = dy;
452 req->drw_w = dw;
453 req->drw_h = dh;
473 xvPutStillReq *req;
481 XvGetReq(PutStill, req);
482 req->port = port;
483 req->drawable = d;
484 req->gc = gc->gid;
485 req->vid_x = vx;
486 req->vid_y = vy;
487 req->vid_w = vw;
488 req->vid_h = vh;
489 req->drw_x = dx;
490 req->drw_y = dy;
491 req->drw_w = dw;
492 req->drw_h = dh;
512 xvGetVideoReq *req;
520 XvGetReq(GetVideo, req);
521 req->port = port;
522 req->drawable = d;
523 req->gc = gc->gid;
524 req->vid_x = vx;
525 req->vid_y = vy;
526 req->vid_w = vw;
527 req->vid_h = vh;
528 req->drw_x = dx;
529 req->drw_y = dy;
530 req->drw_w = dw;
531 req->drw_h = dh;
551 xvGetStillReq *req;
559 XvGetReq(GetStill, req);
560 req->port = port;
561 req->drawable = d;
562 req->gc = gc->gid;
563 req->vid_x = vx;
564 req->vid_y = vy;
565 req->vid_w = vw;
566 req->vid_h = vh;
567 req->drw_x = dx;
568 req->drw_y = dy;
569 req->drw_w = dw;
570 req->drw_h = dh;
585 xvStopVideoReq *req;
591 XvGetReq(StopVideo, req);
592 req->port = port;
593 req->drawable = draw;
610 xvGrabPortReq *req;
616 XvGetReq(GrabPort, req);
617 req->port = port;
618 req->time = time;
638 xvUngrabPortReq *req;
644 XvGetReq(UngrabPort, req);
645 req->port = port;
646 req->time = time;
661 xvSelectVideoNotifyReq *req;
667 XvGetReq(SelectVideoNotify, req);
668 req->drawable = drawable;
669 req->onoff = onoff;
684 xvSelectPortNotifyReq *req;
690 XvGetReq(SelectPortNotify, req);
691 req->port = port;
692 req->onoff = onoff;
709 xvSetPortAttributeReq *req;
715 XvGetReq(SetPortAttribute, req);
716 req->port = port;
717 req->attribute = attribute;
718 req->value = value;
735 xvGetPortAttributeReq *req;
742 XvGetReq(GetPortAttribute, req);
743 req->port = port;
744 req->attribute = attribute;
776 xvQueryBestSizeReq *req;
783 XvGetReq(QueryBestSize, req);
784 req->port = port;
785 req->motion = motion;
786 req->vid_w = vid_w;
787 req->vid_h = vid_h;
788 req->drw_w = drw_w;
789 req->drw_h = drw_h;
813 xvQueryPortAttributesReq *req;
823 XvGetReq(QueryPortAttributes, req);
824 req->port = port;
868 xvListImageFormatsReq *req;
878 XvGetReq(ListImageFormats, req);
879 req->port = port;
941 xvQueryImageAttributesReq *req;
949 XvGetReq(QueryImageAttributes, req);
950 req->id = id;
951 req->port = port;
952 req->width = width;
953 req->height = height;
1017 xvPutImageReq *req;
1026 XvGetReq(PutImage, req);
1028 req->port = port;
1029 req->drawable = d;
1030 req->gc = gc->gid;
1031 req->id = image->id;
1032 req->src_x = src_x;
1033 req->src_y = src_y;
1034 req->src_w = src_w;
1035 req->src_h = src_h;
1036 req->drw_x = dest_x;
1037 req->drw_y = dest_y;
1038 req->drw_w = dest_w;
1039 req->drw_h = dest_h;
1040 req->width = image->width;
1041 req->height = image->height;
1044 SetReqLen(req, len, len);
1076 xvShmPutImageReq *req;
1084 XvGetReq(ShmPutImage, req);
1086 req->port = port;
1087 req->drawable = d;
1088 req->gc = gc->gid;
1089 req->shmseg = shminfo->shmseg;
1090 req->id = image->id;
1091 req->src_x = src_x;
1092 req->src_y = src_y;
1093 req->src_w = src_w;
1094 req->src_h = src_h;
1095 req->drw_x = dest_x;
1096 req->drw_y = dest_y;
1097 req->drw_w = dest_w;
1098 req->drw_h = dest_h;
1099 req->offset = image->data - shminfo->shmaddr;
1100 req->width = image->width;
1101 req->height = image->height;
1102 req->send_event = send_event;