similar to: [Bug 17359] New: NV50 XV crash often

Displaying 20 results from an estimated 8000 matches similar to: "[Bug 17359] New: NV50 XV crash often"

2008 Apr 27
8
[Bug 15729] New: nouveau fails to get ddc info from screen
http://bugs.freedesktop.org/show_bug.cgi?id=15729 Summary: nouveau fails to get ddc info from screen Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: minor Priority: low Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2018 Feb 04
0
[PATCH 2/2] nv50/xv: add support for depth 30 xv output
Ostensibly it should probably be looking at the pixmap format. However it's always the window pixmap, so we can assume it's what we expect. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- src/nouveau_xv.c | 11 +++++++++-- src/nv50_xv.c | 3 ++- src/nvc0_xv.c | 3 ++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/nouveau_xv.c
2008 Dec 26
1
NV50: xv fullscreen issues
Hi, I've been trying out nouveau for a while now and I must say I'm impressed. Performance in KDE4 in general seems better than the nvidia blob; way to go! There are a couple of annoyances though: XV in fullscreen doesn't work. I'm running in composite mode, and non fullscreen video works well enough. Going fullscreen in e.g gmplayer gives me: [ws] Error in display. -0.005 ct:
2010 Jul 22
1
Is it posible to resume the TiNDC's?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The last TiNDC is more than a year old, and if I remember right, the previous editor isn't around to make a new one, so i was thinking about doing it myself. I think the TiNDC's were very interesting to know the current status of things in a more enjoyable and friendly way than the status matrix. I know they were a summary of the channel
2008 Aug 03
7
[Bug 16978] New: "tile offscreen pixmaps" causing graphics corruption on NV50?
http://bugs.freedesktop.org/show_bug.cgi?id=16978 Summary: "tile offscreen pixmaps" causing graphics corruption on NV50? Product: xorg Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2015 Jan 13
3
nv50/ir: Implement short notation for MAD V2
V2: clarify code, commit msgs, add comments. Drop code to was supposed to make register assignment prefer SDST == SRC2 (patch 2) for now, because it didn't quite do what I intended.
2015 Feb 06
2
[PATCH 1/3] nv50/ir: Add support for MAD 4-byte opcode
Add emission rules for negative and saturate flags for MAD 4-byte opcodes, and get rid of some of the constraints. Obviously tested with a wide variety of shaders. V2: Document MAD as supported short form V3: Split up IMM from short-form modifiers Signed-off-by: Roy Spliet <rspliet at eclipso.eu> --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp | 10 ++++------
2009 Mar 29
1
nv50: wfb patches
Not much has changed, except that i've test run these patches for a few weeks now. I'm actually surprised i've avoided Out-Of-Memory issues. Patch 2 remains a temporary hack, awaiting a structural fix by darktama. The whole thing works fine, but XSHM is an issue (http://stillunknown.livejournal.com/928.html). With it disabled most apps are fine, although a few issues remain. As
2015 Jan 23
3
[PATCH 1/2] nv50/ir: Add support for MAD short+IMM notation
Add emission rules for negative and saturate flags for MAD 4-byte opcodes, and get rid of constraints. Short MAD has a very specific SDST == SSRC2 requirement, and since MAD IMM is short notation + 4-byte immediate, don't have the compiler create MAD IMM instructions yet. V2: Document MAD as supported short form Signed-off-by: Roy Spliet <rspliet at eclipso.eu> ---
2008 Apr 29
46
[Bug 15758] New: Invisible mouse pointer on NV4E (C51)
http://bugs.freedesktop.org/show_bug.cgi?id=15758 Summary: Invisible mouse pointer on NV4E (C51) Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2007 May 20
1
centos 5 with mplayer and xv driver
Hi all I am trying to get mplayer working on centos 5. On centos 4.X I just did a ./configure and make and make install for mplayer.... Can use prepaged mplayer for other reasons. anyway, when I play a video I cannot get it to use the xv driver (acceleated video). What package might I be missing or not installed to get the xv driver ??? I am using the binary nvidia drivers (latest version).
2008 Aug 30
1
[Bug 17371] New: Xv on NV18: HD video flickers with Adaptor #0, going back and forth
http://bugs.freedesktop.org/show_bug.cgi?id=17371 Summary: Xv on NV18: HD video flickers with Adaptor #0, going back and forth Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2007 May 20
1
centos 5 with mplayer and xv driver - solved
>Hi all >I am trying to get mplayer working on centos 5. >On centos 4.X I just did a ./configure and make and make install for >mplayer.... Can use prepaged mplayer for other reasons. >anyway, when I play a video I cannot get it to use the xv driver >(acceleated video). >What package might I be missing or not installed to get the xv driver ??? >I am using the binary
2008 Mar 16
3
[Bug 15065] New: xv overlay when rotated is fail
http://bugs.freedesktop.org/show_bug.cgi?id=15065 Summary: xv overlay when rotated is fail Product: xorg Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy:
2010 Mar 14
1
[Bug 27076] New: [C51/6100 GO] Image corruption / broken Xv
http://bugs.freedesktop.org/show_bug.cgi?id=27076 Summary: [C51/6100 GO] Image corruption / broken Xv Product: xorg Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2019 Jan 21
2
[PATCH xf86-video-nouveau 1/2] xv: Avoid shadowed declaration of 'int i' in NVPutImage
int i is accessed outside immediate scope so leave declaration at the highest common scope level: 1073: int ret, i; ... // Highest common scope ... 1193: if (newTTSize <= destination_buffer->size) { ... // Used in this scope ... 1248: } else { ... // Used in this scope ... 1316: }
2008 Jun 23
3
[Bug 16490] New: Xv overlay tearing
http://bugs.freedesktop.org/show_bug.cgi?id=16490 Summary: Xv overlay tearing Product: xorg Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: pq at
2013 Jul 29
0
[PATCH 2/2] xv: speed up YV12 -> NV12 conversion using SSE2 if available
memcpy() goes from taking 45% to 66% of total function time, which translates to a 30% decrease in NVPutImage runtime. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- src/nouveau_xv.c | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/src/nouveau_xv.c b/src/nouveau_xv.c index 567e30c..5569b7c 100644 --- a/src/nouveau_xv.c +++
2019 Jan 21
0
[PATCH xf86-video-nouveau 2/2] xv: Avoid shadowed declaration of 'int ret' in NVPutImage
Warning reported by gcc 8.2: nouveau_xv.c: In function ‘NVPutImage’: nouveau_xv.c:1369:7: warning: declaration of ‘ret’ shadows a previous local [-Wshadow] int ret = BadImplementation; ^~~ nouveau_xv.c:1073:6: note: shadowed declaration is here int ret, i; ^~~ Fixes: a50bba6 ("xv: misc cleanups") Cc: Ben Skeggs <bskeggs at redhat.com> Signed-off-by: Rhys Kidd
2013 Oct 27
3
[Bug 70931] New: Xv causes player segfaults when 4K is decoded
https://bugs.freedesktop.org/show_bug.cgi?id=70931 Priority: medium Bug ID: 70931 Assignee: nouveau at lists.freedesktop.org Summary: Xv causes player segfaults when 4K is decoded QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: nikoli at gmx.us