Displaying 20 results from an estimated 200 matches similar to: "[Bug 11820] New: two mplayers using Xv make DMA queue hang"
2007 Oct 16
22
[Bug 12825] New: TvTime shows only the upper left corner (~ 1280x1024) in Randr1.2
http://bugs.freedesktop.org/show_bug.cgi?id=12825
Summary: TvTime shows only the upper left corner (~ 1280x1024) in
Randr1.2
Product: xorg
Version: unspecified
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2005 Dec 31
1
v4l audio
Hello all -
I'm out of my element with multimedia, can anyone point me in the right
direction?
I've a pchdtv-3000 card I am trying to record from. I can successfully
record audio/video using streamer or watch television with audio using
tvtime, so I know the audio is there.
I want to record directly to theora. I am trying to do so using
ffmpeg2theora like so:
ffmpeg2theora --v4l
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).
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 Feb 06
20
[Bug 14405] New: randr-1.2 bug tracker
http://bugs.freedesktop.org/show_bug.cgi?id=14405
Summary: randr-1.2 bug tracker
Product: xorg
Version: git
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: madman2003 at
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 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:
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
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
+++
2013 Jul 31
0
[PATCH 2/2] xv: speed up YV12 -> NV12 conversion using SSE2 if available
On 2013-07-31 19:18 +0200, Ilia Mirkin wrote:
> On Wed, Jul 31, 2013 at 1:16 PM, Sven Joachim <svenjoac at gmx.de> wrote:
>>
>> Unfortunately, immintrin.h is not available on most architectures,
>> leading to build failures as can be seen on
>> https://buildd.debian.org/status/package.php?p=xserver-xorg-video-nouveau.
>
> Sorry :( I thought that immintrin.h
2019 Jan 19
0
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
Is vlCreateAdaptorXvMC just silly, or does it really want to take
ownership of the name pointer?
On Sat, Jan 19, 2019 at 6:30 PM Rhys Kidd <rhyskidd at gmail.com> wrote:
>
> Fixes warning with gcc 8.2:
>
> nouveau_xv.c: In function ‘NVInitVideo’:
> nouveau_xv.c:2247:68: warning: passing argument 2 of ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type
2019 Jan 20
0
[PATCH xf86-video-nouveau v2] xv: Silence build warning regarding const qualifier
Silences warning with gcc 8.2:
nouveau_xv.c: In function ‘NVInitVideo’:
nouveau_xv.c:2247:68: warning: passing argument 2 of ‘vlCreateAdaptorXvMC’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
adaptorsXvMC[0] = vlCreateAdaptorXvMC(pScreen, textureAdaptor[0]->name);
~~~~~~~~~~~~~~~~~^~~~~~
In file included
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
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
2007 Sep 18
4
[Bug 12473] New: [randr12] Xv scales to match virtual resulotion, not actual resolution.
http://bugs.freedesktop.org/show_bug.cgi?id=12473
Summary: [randr12] Xv scales to match virtual resulotion, not
actual resolution.
Product: xorg
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2019 Jan 19
1
[PATCH xf86-video-nouveau] xv: fix build warning regarding const qualifier
On Sat, 19 Jan 2019 at 18:32, Ilia Mirkin <imirkin at alum.mit.edu> wrote:
> Is vlCreateAdaptorXvMC just silly, or does it really want to take
> ownership of the name pointer?
>
vlCreateAdaptorXvMC( ) doesn't need to take over ownership of the name
pointer, so yes - I guess it's being silly in one respect by not being
specific about const.
>
> On Sat, Jan 19, 2019
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
2009 Jan 31
1
[Bug 19860] New: xv texture adaptor kills X
http://bugs.freedesktop.org/show_bug.cgi?id=19860
Summary: xv texture adaptor kills X
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: