search for: srcpitch2

Displaying 4 results from an estimated 4 matches for "srcpitch2".

2013 May 03
0
[PATCH] nouveau_xv: Avoid reading off the end of the source image on NV50+
.../nouveau_xv.c b/src/nouveau_xv.c index f7dc2bc..8eafcf0 100644 --- a/src/nouveau_xv.c +++ b/src/nouveau_xv.c @@ -1095,7 +1095,7 @@ NVPutImage(ScrnInfoPtr pScrn, short src_x, short src_y, short drw_x, NVCopyNV12ColorPlanes(buf + s2offset, buf + s3offset, dst, line_len, srcPitch2, - nlines, line_len); + nlines, npixels); } } else { for (i = 0; i < nlines; i++) { @@ -1161,7 +1161,7 @@ CPU_copy: NVCopyNV12ColorPlanes(buf + s2offset, buf + s3offset, map, dstPitch, srcPitch2, - nlines, line_len); +...
2008 Jan 21
1
[Bug 14168] New: endian bug on powerpc
...short *vud = (unsigned short *) vuvud; -#if X_BYTE_ORDER == X_BIG_ENDIAN - *vud = (vs[0]<<8) | (us[0] << 0); -#else *vud = vs[0] | (us[0]<<8); -#endif } dst += dstPitch ; src1 += srcPitch2; -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
2007 May 30
0
[PATCH] added comments
...VPutImage() function to copy (image)data from + * system RAM to VRAM and change data order. + * + * @param src1 source buffer (luma ?) + * @param src2 source buffer (chroma1 ?) + * @param src3 source buffer (chroma2 ?) + * @param dst1 destination buffer + * @param srcPitch pitch of src1 + * @param srcPitch2 pitch of src2, src3 + * @param dstPitch pitch of dst1 + * @param h number of lines to copy + * @param w length of lines to copy + */ static void NVCopyData420(unsigned char *src1, unsigned char *src2, unsigned char *src3, unsigned char *dst1, int srcPitch, int srcPitch2, @@ -690,7 +885...
2013 Apr 08
6
[Bug 63263] New: X server crash in nouveau_xv.c:NVPutImage (NVCopyNV12ColorPlanes)
https://bugs.freedesktop.org/show_bug.cgi?id=63263 Priority: medium Bug ID: 63263 Assignee: nouveau at lists.freedesktop.org Summary: X server crash in nouveau_xv.c:NVPutImage (NVCopyNV12ColorPlanes) QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All)