Displaying 7 results from an estimated 7 matches for "xvimag".
Did you mean:
xvimage
2005 Dec 01
0
[fdo] Programming problems in Dual Head Mode.
...!= window);
>
> gc = DefaultGC(display, screen);
>
> yuv_height = hheight;
> yuv_width = hwidth;
>
> XvQueryAdaptors(display, RootWindow(display, screen), &numAdaptors,
> &info);
> for(i = 0; i < numAdaptors; i++) {
> if(info[i].type & XvImageMask) {
> /* Adaptor has XvImage support */
> formats = XvListImageFormats(display, info[i].base_id,
> &numImages);
>
> for(j = 0; j < numImages; j++) {
> if(formats[j].id == GUID_MBX1_PLANAR) {
>...
2005 Dec 05
0
[fdo] Programming problems in Dual Head Mode with Tiny-X.
...!= window);
>
> gc = DefaultGC(display, screen);
>
> yuv_height = hheight;
> yuv_width = hwidth;
>
> XvQueryAdaptors(display, RootWindow(display, screen), &numAdaptors,
> &info);
> for(i = 0; i < numAdaptors; i++) {
> if(info[i].type & XvImageMask) {
> /* Adaptor has XvImage support */
> formats = XvListImageFormats(display, info[i].base_id,
> &numImages);
>
> for(j = 0; j < numImages; j++) {
> if(formats[j].id == GUID_MBX1_PLANAR) {
>...
2014 Aug 04
3
[Bug 82118] New: nouveau tearing with xvideo
..." "disable"
xvinfo:
X-Video Extension version 2.2
screen #0
Adaptor #0: "Intel(R) Textured Video"
number of ports: 16
port base: 89
operations supported: PutImage
supported visuals:
depth 24, visualID 0x21
no port attributes defined
maximum XvImage size: 2048 x 2048
Number of image formats: 5
id: 0x32595559 (YUY2)
guid: 59555932-0000-0010-8000-00aa00389b71
bits per pixel: 16
number of planes: 1
type: YUV (packed)
id: 0x32315659 (YV12)
guid: 59563132-0000-0010-8000-00aa00389b71
b...
2009 Aug 07
9
[Bug 23198] New: nv50/NVS135M: video hangs/flickers when fullscreen
http://bugs.freedesktop.org/show_bug.cgi?id=23198
Summary: nv50/NVS135M: video hangs/flickers when fullscreen
Product: xorg
Version: 7.3
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
2007 Nov 20
9
[Bug 13319] New: YV12 and YUY2 overlay broken on PPC with NV34M
..."XV_HUE" (range 0 to 360)
client settable attribute
client gettable attribute (current value is 0)
"XV_ITURBT_709" (range 0 to 1)
client settable attribute
client gettable attribute (current value is 0)
maximum XvImage size: 2046 x 2046
Number of image formats: 4
id: 0x32595559 (YUY2)
guid: 59555932-0000-0010-8000-00aa00389b71
bits per pixel: 16
number of planes: 1
type: YUV (packed)
id: 0x32315659 (YV12)
guid: 59563132-0000-0010-8000-00aa00389b71
b...
2009 Mar 11
8
[Bug 20612] New: nouveau xv crash with BadMatch ( invalid parameter attributes)
...eo Extension version 2.2
screen #0
Adaptor #0: "Nouveau GeForce 8/9 Textured Video"
number of ports: 32
port base: 63
operations supported: PutImage
supported visuals:
depth 24, visualID 0x21
depth 24, visualID 0x22
no port attributes defined
maximum XvImage size: 4096 x 4096
Number of image formats: 3
id: 0x32315659 (YV12)
guid: 59563132-0000-0010-8000-00aa00389b71
bits per pixel: 12
number of planes: 3
type: YUV (planar)
id: 0x30323449 (I420)
guid: 49343230-0000-0010-8000-00aa00389b71
b...
2007 May 30
0
[PATCH] added comments
...046
+
#define OFF_DELAY 500 /* milliseconds */
#define FREE_DELAY 5000
@@ -74,7 +83,7 @@ static XF86VideoEncodingRec DummyEncoding =
{
0,
"XV_IMAGE",
- 2046, 2046,
+ IMAGE_MAX_W, IMAGE_MAX_H,
{1, 1}
};
@@ -140,6 +149,13 @@ static XF86ImageRec NVImages[NUM_IMAGES_ALL] =
XVIMAGE_RGB
};
+/**
+ * NVSetPortDefaults
+ * set attributes of port "pPriv" to complied-in (except for colorKey) defaults
+ *
+ * @param pScrnInfo screen to get the default colorKey from
+ * @param pPriv port to reset to defaults
+ */
static void
NVSetPortDefaults (ScrnInfoPtr pScrnInfo,...