[Bug 260918] Re: needed: libv4l and associated application patches (or "gspca stopped working in 2.6.27")

2017-10-27 Thread Bug Watch Updater
Launchpad has imported 11 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=457796.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-08-04T17:32:35+00:00 Hans wrote:

Created attachment 313380
xawtv-3.95-fixes.patch

Short intro: I'm a long time Linux developer currently working on improving
webcam support in Linux, see:
http://fedoraproject.org/wiki/Features/BetterWebcamSupport

I'm one of the authors of the v4l2 rewrite of the gspca usb webcam driver
framework (which supports more then 100 different cams), this v4l2 rewrite has
been merged into the 2.6.27 kernel and thus will become available in the
official Linux kernel soon.

One of the parts of the v4l2 rewrite has been removing conversion from various
manufacturer cam specific video formats to more normal videoformats from the
drivers, as this really does not belong in kernel space.

As a result of this the gspca subdrivers can generate raw video frames in the
following formats:

#define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S', '9', '1', '0') /* SN9C10x
compressed bayer
#define V4L2_PIX_FMT_SPCA501  v4l2_fourcc('S', '5', '0', '1') /* YUYV per line 
#define V4L2_PIX_FMT_SPCA505  v4l2_fourcc('S', '5', '0', '5') /* YYUV per line 
#define V4L2_PIX_FMT_SPCA508  v4l2_fourcc('S', '5', '0', '8') /* YUVY per line 
#define V4L2_PIX_FMT_SPCA561  v4l2_fourcc('S', '5', '6', '1') /* compressed
GBRG bayer
#define V4L2_PIX_FMT_PAC207   v4l2_fourcc('P', '2', '0', '7') /* compressed
BGGR bayer

As we do not want to see each application implement (nor having to implement)
support for these various formats, as we like to have one code base and only
one code base for these formats. A library has been written (with me as the
main author) to convert from these formats to BGR24 or YUV420. For more on this
library see:
http://hansdegoede.livejournal.com/3636.html

As such I've been working (for a number of days!) on a patch to add
support for libv4l to xawtv. This has resulted in my doing a whole patch
series, listed in the order in which the patches should be applied.

xawtv-3.95-fixes.patch
--
Some small fixes which are needed for xawtv-3.95 to work with some v4l2 devices 
at all.

xawtv-3.95-libv4l2.patch

Use libv4l2 to gain support for all kind of camera specific video formats

xawtv-3.95-no-dga.patch
---
xawtv does not work on many videocards without specifying -nodga, this patch
fixes this by catching the error and continuing as if the server does not 
support DGA at all

xawtv-3.95-v4l-conf-user-bpl.patch
--
Allow root to override the detected number of bytes per line, this is needed
to get direct pci transfers to the framebuffer to work on my ati x1950pro


Note that for xawtv to work properly atleast version 0.4.0 of libv4l is needed,
rawhide currently has 0.3.9 and I cannot build 0.4.0 due to an error in the 
kernel-headers package.


p.s.

While writing all these patches and with all my recent v4l work in
general I've become quite familiar with the xawtv code, so if you want I
can become a co-maintainer (and push these patches myself).

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/10


On 2008-08-04T17:46:25+00:00 Hans wrote:

Created attachment 313381
xawtv-3.95-libv4l2.patch

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/11


On 2008-08-04T17:46:58+00:00 Hans wrote:

Created attachment 313382
xawtv-3.95-no-dga.patch

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/12


On 2008-08-04T18:20:31+00:00 Hans wrote:

Created attachment 313392
xawtv-3.95-v4l-conf-user-bpl.patch

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/13


On 2008-08-23T07:41:07+00:00 Hans wrote:

Ping,

I would really like to see this fixed before F10-beta freeze so that the
better webcam support feature can get some good testing in the Beta.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/18


On 2008-08-25T16:36:06+00:00 Dmitry wrote:

Pong.

I am still thinking how to make libv4l2 support optional...

It seems that an option is not suitable here, as there are several
applications (xawtv, streamer, fbtv, ...) and it is not good to hack all
their cmdline interfaces.

Perhaps LD_PRELOAD is a way? If the only 

[Bug 260918] Re: needed: libv4l and associated application patches (or "gspca stopped working in 2.6.27")

2017-10-26 Thread Bug Watch Updater
Launchpad has imported 10 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=456825.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-07-27T20:49:53+00:00 Hans wrote:

As you probably know I'm one of the authors of the v4l2 rewrite of the gspca usb
webcam driver framework (which supports more then 100 different cams), this v4l2
rewrite has been merged into the 2.6.27 kernel and thus will become available in
the official Linux kernel soon.

One of the parts of the v4l2 rewrite has been removing conversion from various
manufacturer cam specific video formats to more normal videoformats from the
drivers, as this really does not belong in userspace.

As a result of this the gspca subdrivers can generate raw video frames in the
following formats:

#define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S', '9', '1', '0') /* SN9C10x
compressed bayer
#define V4L2_PIX_FMT_SPCA501  v4l2_fourcc('S', '5', '0', '1') /* YUYV per line 
#define V4L2_PIX_FMT_SPCA505  v4l2_fourcc('S', '5', '0', '5') /* YYUV per line 
#define V4L2_PIX_FMT_SPCA508  v4l2_fourcc('S', '5', '0', '8') /* YUVY per line 
#define V4L2_PIX_FMT_SPCA561  v4l2_fourcc('S', '5', '6', '1') /* compressed GBRG
bayer
#define V4L2_PIX_FMT_PAC207   v4l2_fourcc('P', '2', '0', '7') /* compressed BGGR
bayer

As we do not want to see each application implement (nor having to implement)
support for these various formats, as we like to have one code base and only one
code base for these formats. A library has been written (with me as the main
author) to convert from these formats to BGR24 or YUV420. For more on this
library see:
http://hansdegoede.livejournal.com/3636.html

The attached patch adds support to the gstreamer v4l2 plugin to use this library
if available on the system, it has also been submitted upstream:
http://bugzilla.gnome.org/show_bug.cgi?id=545033

libv4l will show up in rawhide as soon as a cvsadmin gets around to creating a
cvs module for it, see libv4l'2 review request: bug 456772

Getting this patch into Fedora is important for the F-10 better webcam support
feature:
https://fedoraproject.org/wiki/Features/BetterWebcamSupport


###

A note about the patch, the patch is actually quite simple, as libv4l has been
designed for quick porting of existing apps to libv4l, for this reason libv4l
fully mimicks the raw /dev/video interface (and if no conversion is needed and
for non relevant calls like setting ctrl's, passes through all calls 
unmodified).

All that the patch does and all that needs to be changed to use libv4l is
replace the relevant xxx calls on /dev/video with v4l2_xxx calls.

The only special thing about the patch is that it passes the
V4L2_ENABLE_ENUM_FMT_EMULATION flag to libv4l2 on open, this patch tells libv4l2
to report the "emulated" formats in the ENUM_FMT ioctl results. Which libv4l2
does not do be default so that ENUM_FMT only reports the really supported
formats (a TRY_FMT with one of the 2 supported emulated formats can then be done
to see if conversion is supported for the specific device). Given the working of
the v4l2 plugin, enabling the ENUM_FMT emulation is needed.

I've successfully tested this patch with cheese and 2 spca561 cams (quite
popular IC, used by both logitech and creative), 2 pac207 cams (another quite
popular IC), 3 SN9C10X cams (also very popular) and 1 spca501 cam. All of which
do not work without this patch, as gstreamer does not support their proprietary
video formats (and rightfully so).

###

p.s.

While doing a local rpm testbuild of gstreamer-plugins-good with this patch, it
failed because it build a couple of plugins not in the %files list due to me
having to much foo-devel packages installed, can you please add:
"--disable-esd --disable-libcaca --disable-aalib" to the %configure flags to fix
this?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/0


On 2008-07-27T20:49:53+00:00 Hans wrote:

Created attachment 312745
PATCH adding support for using libv4l to the v4l2 plugin

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/1


On 2008-07-28T09:28:03+00:00 Hans wrote:

libv4l has just been build for rawhide, and should show up in the next rawhide
push, in the mean time you can get it from koji:
http://koji.fedoraproject.org/koji/buildinfo?buildID=57774


Reply at: 
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/2


On 2008-07-28T13:45:56+00:00 Adam wrote:

Patch looks plausible, but I'm no expert.  I'm curious to see how the upstream
bug 

[Bug 260918] Re: needed: libv4l and associated application patches (or "gspca stopped working in 2.6.27")

2017-10-26 Thread Bug Watch Updater
Launchpad has imported 6 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=456868.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-07-28T09:28:08+00:00 Hans wrote:

Short intro: I'm a long time Linux developer currently working on improving
webcam support in Linux, see:
http://fedoraproject.org/wiki/Features/BetterWebcamSupport

I'm one of the authors of the v4l2 rewrite of the gspca usb webcam driver
framework (which supports more then 100 different cams), this v4l2 rewrite has
been merged into the 2.6.27 kernel and thus will become available in the
official Linux kernel soon.

One of the parts of the v4l2 rewrite has been removing conversion from various
manufacturer cam specific video formats to more normal videoformats from the
drivers, as this really does not belong in kernel space.

As a result of this the gspca subdrivers can generate raw video frames in the
following formats:

#define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S', '9', '1', '0') /* SN9C10x
compressed bayer
#define V4L2_PIX_FMT_SPCA501  v4l2_fourcc('S', '5', '0', '1') /* YUYV per line 
#define V4L2_PIX_FMT_SPCA505  v4l2_fourcc('S', '5', '0', '5') /* YYUV per line 
#define V4L2_PIX_FMT_SPCA508  v4l2_fourcc('S', '5', '0', '8') /* YUVY per line 
#define V4L2_PIX_FMT_SPCA561  v4l2_fourcc('S', '5', '6', '1') /* compressed
GBRG bayer
#define V4L2_PIX_FMT_PAC207   v4l2_fourcc('P', '2', '0', '7') /* compressed
BGGR bayer

As we do not want to see each application implement (nor having to implement)
support for these various formats, as we like to have one code base and only
one code base for these formats. A library has been written (with me as the
main author) to convert from these formats to BGR24 or YUV420. For more on this
library see:
http://hansdegoede.livejournal.com/3636.html

The attached patch adds support to the pwlib v4l2 plugin to use this
library if available on the system.

It has also been submitted upstream:
http://bugzilla.gnome.org/show_bug.cgi?id=545108

libv4l has just been build for rawhide, and should show up in the next rawhide
push, in the mean time you can get it from koji:
http://koji.fedoraproject.org/koji/buildinfo?buildID=57774

###

A note about the patch, the patch is actually quite simple, as libv4l has been
designed for quick porting of existing apps to libv4l, for this reason libv4l
fully mimicks the raw /dev/video interface (and if no conversion is needed and
for non relevant calls like setting ctrl's, passes through all calls
unmodified).

All that the patch does and all that needs to be changed to use libv4l is
replace the relevant xxx calls on /dev/video with v4l2_xxx calls.

I've successfully tested this patch with ekiga and 2 spca561 cams (quite
popular IC, used by both logitech and creative), 2 pac207 cams (another quite
popular IC), 3 SN9C10X cams (also very popular) and 1 spca501 cam. All of which
do not work (unless using gspca version 1) without this patch, as pwlib does
not support their proprietary video formats (and rightfully so).

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/0


On 2008-07-28T09:28:08+00:00 Hans wrote:

Created attachment 312759
PATCH: use libv4l in v4l2 plugin, adding support for many cam specific formats

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/1


On 2008-07-29T19:08:36+00:00 Hans wrote:

Note that this patch has just been accepted upstream, see:
http://bugzilla.gnome.org/show_bug.cgi?id=545108

If you want and the CVS ACL's allow it I can push this to rawhide
myself.


Reply at: 
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/2


On 2008-08-23T07:40:11+00:00 Hans wrote:

Ping!

I really want to see this hit rawhide before we go into a beta freeze,
and as the patch has been accepted upstream I so no reasons for not
putting this in rawhide. If I get no response soon I'll commit it to
rawhide myself (assuming the ACL's will let me).

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/3


On 2008-09-19T21:08:37+00:00 Jesse wrote:

Seems it's a bit late for that.  Punting to F10Target.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/7


On 2008-09-20T17:19:12+00:00 Hans wrote:

(In reply to comment #4)
> Seems it's a bit late for that.  Punting to F10Target.

Actually this is long fixed, byt I 

[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2015-01-12 Thread Amr Ibrahim
** Changed in: libv4l (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-flash-plugin-tools/+bug/260918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2013-06-12 Thread Phillip Susi
** No longer affects: amsn (Ubuntu Lucid)

** No longer affects: came (Ubuntu Lucid)

** No longer affects: camorama (Ubuntu Lucid)

** Changed in: camorama (Ubuntu)
   Status: Confirmed = Invalid

** No longer affects: camstream (Ubuntu Lucid)

** No longer affects: ekiga (Ubuntu Lucid)

** No longer affects: gst-plugins-good0.10 (Ubuntu Lucid)

** No longer affects: libv4l (Ubuntu Lucid)

** No longer affects: mplayer (Ubuntu Lucid)

** No longer affects: pwlib (Ubuntu Lucid)

** No longer affects: vlc (Ubuntu Lucid)

** No longer affects: xawtv (Ubuntu Lucid)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-flash-plugin-tools/+bug/260918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2012-05-07 Thread Petr_Kosv
This is still an issue in Ubuntu 12.04 with Genius iSlim 300X (ID
093a:262c - gspca drivers). Linux seems unable to recognize the device.
There are workarounds, at first site uneasy; being a novice I think I
cannot help much.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-flash-plugin-tools/+bug/260918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2012-05-07 Thread Petr_Kosv
I am sorry - in terminal type gstreamer-properties, click enter,
click video, try v4l1 or v4l2 - AND MY WEBCAM WORKS for me (v4l2 works with 
genius islim 300x).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-flash-plugin-tools/+bug/260918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2012-05-07 Thread praveen
Thank u so much its working fine now :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-flash-plugin-tools/+bug/260918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2011-02-03 Thread Bug Watch Updater
** Changed in: kopete
   Importance: Unknown = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2011-01-11 Thread PascalCavy
And people concerned by the v4l2 webcam support on firefox/flash plugin please 
vote for the bug there
 https://bugs.adobe.com/jira/browse/FP-204

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped working 
in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2011-01-09 Thread Bug Watch Updater
Launchpad has imported 2 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=621358.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2010-12-25T06:18:19+00:00 PascalCavy wrote:

User-Agent:   Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) 
Gecko/20101206 Ubuntu/10.10 (maverick) Firefox/3.6.13
Build Identifier: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) 
Gecko/20101206 Ubuntu/10.10 (maverick) Firefox/3.6.13

I have the following webcam under Kubuntu maverick 10.10 :
Bus 003 Device 002: ID 04fc:0561 Sunplus Technology Co., Ltd Flexcam 100
  idVendor   0x04fc Sunplus Technology Co., Ltd
  idProduct  0x0561 Flexcam 100

The webcam is working well under other software such as skype, kopete,
cheese ...

But on firefox with site using flash to manage the webcam, the webcam is
not detected by flash plugin.

Reproducible: Always

Reply at: https://bugs.launchpad.net/adobe-flash-plugin-
tools/+bug/260918/comments/235


On 2010-12-25T06:33:45+00:00 Kevin Brosnan wrote:

Report this issue to Adobe.
http://blogs.adobe.com/penguinswf/2008/07/paparazzi_v2_1.html may be
helpful for the Adobe report.

Reply at: https://bugs.launchpad.net/adobe-flash-plugin-
tools/+bug/260918/comments/236


** Changed in: firefox
   Status: Unknown = Invalid

** Changed in: firefox
   Importance: Unknown = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped working 
in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2011-01-07 Thread dolphinaura
libv4l support depends on the Adobe Flash Plugin itself, which is
closed-source propriety software. As a result, please refer to the adobe
bug report mentioned above instead of reporting against the flash plugin
tools.

** Changed in: adobe-flash-plugin-tools
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped working 
in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-12-25 Thread PascalCavy
https://bugs.adobe.com/jira/browse/FP-204

** Also affects: adobe-flash-plugin-tools
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped working 
in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-12-24 Thread PascalCavy
2 years have passed and gspca webcams are still not working with firefox
on maverick 10.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped working 
in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-12-24 Thread PascalCavy
** Bug watch added: Mozilla Bugzilla #621358
   https://bugzilla.mozilla.org/show_bug.cgi?id=621358

** Also affects: firefox via
   https://bugzilla.mozilla.org/show_bug.cgi?id=621358
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped working 
in 2.6.27)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-10-10 Thread praveen
MY WEBCAM IS NOT WORKING PLS HELP ME

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-10-02 Thread Adam Niedling
Strangely my webcam (logitech c500) doesn't work with firefox but it
does work with chromium and epiphany. Even the LD_PRELOAD trick doesn't
work with firefox.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-09-20 Thread Bug Watch Updater
** Changed in: kdenlive
   Status: Unknown = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-09-16 Thread Bug Watch Updater
** Changed in: gstreamer
   Importance: Unknown = Medium

** Changed in: gst-plugins-good
   Importance: Unknown = Medium

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-09-15 Thread Bug Watch Updater
** Changed in: ekiga
   Importance: Unknown = Medium

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-09-15 Thread Bug Watch Updater
** Changed in: cheese
   Importance: Unknown = Critical

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-08-22 Thread Vish
Upstream has closed the cheese bug as Not Gnome , Quoting Upstream:

You should be able to have cheese working again installing libv4l = 0.5.7 and
a recent uvcvideo driver. If you are running ubuntu intrepid this means
enabling intrepid-proposed and upgrading kernel from there.
Unfortunately libv4l didn't enter intrepid repositories yet but you can install
it from Loic Minier's PPA at https://launchpad.net/~lool/+archive
If you're not using Ubuntu check if your distribution already packaged latest
libv4l and upgrade it or install it from source.

Little update: libv4l 0.5.7 entered intrepid-proposed. Installing from Loic
Minier's PPA is not needed anymore.

Closing cheese task.

** Changed in: cheese (Ubuntu)
   Status: Confirmed = Invalid

** Changed in: cheese (Ubuntu Lucid)
   Status: New = Invalid

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-06-19 Thread Benjamin Drung
@Alessio:

1. I couldn't apply your patch:
patch:  malformed patch at line 324:

2. To allow SRUs for older releases than lucid, you should add the
release version into the version string: 0.19-2ubuntu0.1 -
0.19-2ubuntu0.10.04.1

@Stéphane:

The patch from from Debian is shorter than the one from Fedora.
Therefore we should take the one from Debian.

I am unsubcribing ubuntu-sponsors for now. Please resubscribe the team
once you have an updated debdiff.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-06-19 Thread Benjamin Drung
Second notice: I think it's better to open a new bug report for
camorama. This bug report is abused for too many packages.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-22 Thread PascalCavy
With Lucid and firefox 3.6.3 I still have to do like in comment #198 for
webcam to work under flashplayer in firefox !

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-20 Thread Bug Watch Updater
** Changed in: camorama (Debian)
   Status: Confirmed = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-20 Thread Alessio Treglia
** Also affects: amsn (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: came (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: camorama (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: camstream (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: cheese (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: ekiga (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: gst-plugins-good0.10 (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: libv4l (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: mplayer (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: pwlib (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: vlc (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: xawtv (Ubuntu Lucid)
   Importance: Undecided
   Status: New

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-20 Thread Alessio Treglia
The attached patch solves the issue and makes camorama working again on
Lucid.


-- 
Alessio Treglia quadris...@ubuntu.com
Ubuntu MOTU Developer | Homepage: http://www.alessiotreglia.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0


** Attachment added: camorama_0.19-2ubuntu0.1.debdiff
   http://launchpadlibrarian.net/48809260/camorama_0.19-2ubuntu0.1.debdiff

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-09 Thread Lucio M Nicolosi
@Alex

Camorama doesn't seem to be maintained anymore (last entry at the site:
October 9, 2007) and will not work with every Ubuntu release since, I
guess, Intrepid. After your last post, installed Camorama and tried to
run it again (Lucid AMD 64). Same stuff, doesn't work. I wonder why it
is still available on repositories.

terminal info for:

camorama -D:

VIDIOCGCAP
device name = CIF Single Chip 
device type = 1
can use mmap()
# of channels = 1
# of audio devices = 0
max width = 352
max height = 288
min width = 48
min height = 32

VIDIOCGWIN
x = 0
y = 0
width = 176
height = 144
chromakey = 0
flags = 0

VIDIOCGWIN
x = 0
y = 0
width = 176
height = 144
chromakey = 0
flags = 0

VIDIOCGPICT:
bright = 11822
hue = 0
colour = 0
contrast = 0
whiteness = 0
colour depth = 8

VIDIOCGMBUF
mb.size = 409600
mb.frames = 4
mb.offset = 102400

(camorama:11996): Gtk-WARNING **: GtkSpinButton: setting an adjustment with 
non-zero page size is deprecated
update_tooltip called
tip - acap off
** Message: SET PIC
update_tooltip called
tip - acap off
Unable to capture image (VIDIOCSYNC)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-09 Thread Alex Valavanis
Confirmed that this exists in camorama 0.19-2 package.

** Changed in: camorama (Ubuntu)
   Status: Incomplete = Confirmed

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-09 Thread Alex Valavanis
Confirmed that this exists in camorama 0.19-2 package.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-09 Thread Alex Valavanis
A debdiff is available for Camorama which fixes this bug.  I have
subscribed Ubuntu Universe Sponsors to approve the upload.

** Bug watch added: Debian Bug tracker #569089
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=569089

** Package changed: debian = camorama (Debian)

** Changed in: camorama (Debian)
   Status: Fix Released = Unknown

** Changed in: camorama (Debian)
 Remote watch: Debian Bug tracker #488117 = Debian Bug tracker #569089

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-09 Thread Bug Watch Updater
** Changed in: camorama (Debian)
   Status: Unknown = Confirmed

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-08 Thread Alex Valavanis
** Changed in: cheese (Ubuntu Intrepid)
   Status: New = Invalid

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-08 Thread Alex Valavanis
Intrepid Ibex reached end-of-life on 30 April 2010 so I am closing the
report.  Can anyone confirm whether this issue still exists in later versions 
of Ubuntu?

** Changed in: camorama (Ubuntu Intrepid)
   Status: New = Invalid

** Changed in: camorama (Ubuntu)
   Status: New = Incomplete

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-05-07 Thread Alex Valavanis
Intrepid Ibex reached end-of-life on 30 April 2010 so I am closing the
report.  The bug has been fixed in newer releases of Ubuntu.

** Changed in: camstream (Ubuntu Intrepid)
   Status: New = Invalid

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-04-20 Thread mbaho10
** Changed in: amsn (Ubuntu)
 Assignee: Devid Antonio Filoni (d.filoni) = mbaho10 (mbaho10)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-03-22 Thread Fabrice Coutadeur
Will be fixed in Lucid, with version 0.27+dfsg-4

** Changed in: camstream (Ubuntu)
   Status: New = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-03-11 Thread David Bensimon
@PascalCavy - Check Bug #358599 as it relates to not being able to use
webcam on flashed-based video conference systems.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-03-03 Thread PascalCavy
I still have to do like in comment #198 for webcam to work under
flashplayer in firefox !

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-02-08 Thread Charlie Kravetz
Attempts to reverse the changes made by a malicious user. Unsubscribed
Ubuntu Security Team, no longer security issue.

** Changed in: came (Ubuntu Intrepid)
 Assignee: dimpler18 (dimpler18) = (unassigned)

** This bug is no longer flagged as a security vulnerability

** Changed in: camorama (Ubuntu)
 Assignee: Ubuntu Security Team (ubuntu-security) = (unassigned)

** Changed in: camstream (Ubuntu)
 Assignee: Ubuntu Security Team (ubuntu-security) = (unassigned)

** Changed in: cheese (Ubuntu)
 Assignee: Ubuntu Security Team (ubuntu-security) = (unassigned)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-02-06 Thread Rhett Trappman
** Changed in: came (Ubuntu Intrepid)
 Assignee: (unassigned) = dimpler18 (dimpler18)

** Changed in: libv4l (Ubuntu Intrepid)
 Assignee: (unassigned) = Bahar Ali (baharali)

** Changed in: camorama (Ubuntu)
 Assignee: (unassigned) = Ubuntu Security Team (ubuntu-security)

** This bug has been flagged as a security vulnerability

** Changed in: camstream (Ubuntu)
 Assignee: (unassigned) = Ubuntu Security Team (ubuntu-security)

** Changed in: cheese (Ubuntu)
 Assignee: (unassigned) = Ubuntu Security Team (ubuntu-security)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-01-21 Thread Bahar Ali
** Changed in: libv4l (Ubuntu)
 Assignee: (unassigned) = Bahar Ali (baharali)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-01-10 Thread BlueG
I am still having to use LD_PRELOAD to get pidgin and camorama to work
under Ubuntu 9.10. I have custom wrapper scripts named
/usr/local/bin/${APP}-v4l1compat like:

#!/bin/bash
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so ${APP}

I edit the menu to use these scripts to launch pidgin and camorama.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-01-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/came

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2010-01-03 Thread Erik Andrén
Works as intended on karmic.

** Changed in: amsn (Ubuntu Intrepid)
   Status: In Progress = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-12-16 Thread dimpler18
** Changed in: came (Ubuntu)
 Assignee: (unassigned) = dimpler18 (dimpler18)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-11-17 Thread tgpraveen
I just tested cheese with a logitech quickcam, but if have it connected
and I start cheese, it is busy for a little while and then locks up my
computer (with blinking caps lock and scroll lock lights on the
keyboard). Is it working on other configurations and should I open a
separate bug?

i am having the exact same symptoms of locking up of computer and caps and 
scroll lock blinking when i go in gstreamer-properties on my karmic rc live cd 
on my sony vaio computer.
Please fix this. note cheese si not installed.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-11-17 Thread Fabian A. Scherschel
Those blinking Caps Lock and Scroll Lock lights mean you experienced a
kernel panic. This has nothing to do with this bug. Please file a
separate bug for your problem.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-11-17 Thread Paul Flint
Dear tpgraveen,

Here is the fix:

http://docbox.flint.com:8081/geekland#skype

Enjoy!


On Tue, 17 Nov 2009, tgpraveen wrote:

 Date: Tue, 17 Nov 2009 16:17:32 -
 From: tgpraveen tgpravee...@gmail.com
 Reply-To: Bug 260918 260...@bugs.launchpad.net
 To: fl...@flint.com
 Subject: [Bug 260918] Re: needed: libv4l and associated application patches
 (or gspca stopped working in 2.6.27)
 
 I just tested cheese with a logitech quickcam, but if have it connected
 and I start cheese, it is busy for a little while and then locks up my
 computer (with blinking caps lock and scroll lock lights on the
 keyboard). Is it working on other configurations and should I open a
 separate bug?

 i am having the exact same symptoms of locking up of computer and caps and 
 scroll lock blinking when i go in gstreamer-properties on my karmic rc live 
 cd on my sony vaio computer.
 Please fix this. note cheese si not installed.

 -- 
 needed: libv4l and associated application patches (or gspca stopped working 
 in 2.6.27)
 https://bugs.launchpad.net/bugs/260918
 You received this bug notification because you are a direct subscriber
 of a duplicate bug.


Kindest Regards,


Paul Flint
(802) 479-2360


/
Based upon email reliability concerns,
please send an acknowledgment in response to this note.

Paul Flint
Barre Open Systems Institute
17 Averill Street
Barre, VT
05641

http://www.bosivt.org
http://www.flint.com/home
skype: flintinfotech
Work: (202) 537-0480

Consilium   _
gratuitum.~. ASCII ribbon campaign ( )
valet/V\  against HTML e-mail   X
quanti  /( )\ www.asciiribbon.org  / \
numerantur  ^^-^^

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-08-18 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/karmic/mplayer

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-08-14 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/karmic/xawtv

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-08-08 Thread js rathee
** Changed in: libv4l (Ubuntu)
   Status: Fix Released = New

** Changed in: libv4l (Ubuntu)
   Status: New = Fix Committed

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-08-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/karmic/amsn

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-28 Thread Sergio Zanchetta
** Also affects: cheese (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: cheese (Ubuntu)
   Importance: Undecided = High

** Changed in: cheese (Ubuntu)
   Status: New = Confirmed

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/karmic/pwlib

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-24 Thread sliq
is anything being done for kopete?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-24 Thread Nerd_bloke
** Bug watch added: KDE Bug Tracking System #177338
   http://bugs.kde.org/show_bug.cgi?id=177338

** Changed in: kopete
   Importance: Undecided = Unknown

** Changed in: kopete
   Status: New = Unknown

** Changed in: kopete
 Remote watch: None = KDE Bug Tracking System #177338

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-24 Thread Bug Watch Updater
** Changed in: kopete
   Status: Unknown = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-24 Thread Nerd_bloke
** Bug watch added: GNOME Bug Tracker #566212
   http://bugzilla.gnome.org/show_bug.cgi?id=566212

** Changed in: cheese
   Importance: Undecided = Unknown

** Changed in: cheese
   Status: Confirmed = Unknown

** Changed in: cheese
 Remote watch: None = GNOME Bug Tracker #566212

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-19 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/karmic/came

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-15 Thread Stéphane Marguet
New debdiff with new maintainer set to motu

** Attachment added: Debdiff for camorama
   http://launchpadlibrarian.net/29052308/camorama_0.19-2ubuntu1.debdiff

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-14 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/karmic/vlc

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-07-10 Thread Stéphane Marguet

** Attachment added: Debdiff for camorama
   http://launchpadlibrarian.net/28887947/camorama_0.19-2ubuntu1.debdiff

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-06-07 Thread Launchpad Bug Tracker
This bug was fixed in the package mplayer -
2:1.0~rc3+svn20090426-1ubuntu1

---
mplayer (2:1.0~rc3+svn20090426-1ubuntu1) karmic; urgency=low

  * Switch to debian packaging for the mplayer package
  * New upstream release, LP: #336697, #260918, #246675, #243453, #74282
  * Fixes security issues: CVE-2008-5616, LP: #308939
  * many flv fixes LP: #73271, #347021
  * Build and install mencoder
  * Bump epoch

mplayer (1.0~rc3+svn20090426-1) unstable; urgency=low

  [ fabrice ]
  * Introduce the mplayer-nogui package, that does not depend on GTK+

  [ Reinhard Tartler ]
  * new upstream svn version based on the 1.0rc3 branch
  * various cleanups and refactoring in debian/rules
  * no longer remove mencoder.c: It does hardly contain any dangerous
or patented code. Instead:
  * strip libavcodec similar to how its done in the ffmpeg package. This
brings the patent policy of the mplayer and ffmpeg package in debian
finally in sync. c.f. the comments and the discussion in #522373.
  * install upstream's version of binary_codecs.sh

mplayer (1.0~rc3+svn20090405-1) unstable; urgency=low

  * New upstream version. Track the 1.0rc3 release branch for now.
  * remove 50_r28803_segfault_print_int.patch, merged upstream.
  * no longer remove the TOOLS subdirectory from the upstream source.
  * make get-orig-source rule actually work.
  * disable musepack support. Closes: #476384
  * completely delegate handling of /etc/mplayer/mplayer.conf to
dpkg. This change removes also all debconf templates and reduces
package complexity.
  * move .gbp.conf to debian/gbp.conf
  * cleanups in debian/rules: prefer external debhelper helper files
  * enhance upstream Makefile to install gmplayer manpages
 - implement as quilt patch, submitted upstream
 - debian/rules: make use of the added rules
  * use dh_prep instead of dh_clean -k
  * bump Standards-Version to 3.8.1

mplayer (1.0~rc2+svn20090303-7) unstable; urgency=low

  * various cleanups in  debian/rules.
  * as a side effect, DEB_BUILD_OPTIONS set to noopt no longer works. It
really needs to be implemented in ./configure instead of weird hackery
in debian/rules. patches welcome.
  * run 'make distclean' only of config.mak exists.
  * remove debian/control.mplayer* variants.
  * don't --enable-debug on mipsen. This hopfully fixes the FTBFS on mipsen.

mplayer (1.0~rc2+svn20090303-6) unstable; urgency=low

  [ A Mennucc1 ]

  * use ./configure flags to dynamically link FFmpeg,
delete patch  30link-system-ffmpeg.patch

  [ Reinhard Tartler ]

  * cleanup debian/rules: use --enable-debug on all architectures but mips.
in order to fix a FTBFS. This results in making the -dbg package on mips
useless. If you are interested in having a usable mplayer-dbg package on
mips, please try enabling that switch in debian/rules and send us your
buildlog!
  * run 'make distclean' only of config.mak exists
  * cleanup debian/rules: remove unnecessary clean statements

mplayer (1.0~rc2+svn20090303-5) unstable; urgency=low

  * debian/control : move docbook-xml,docbook-xsl,xsltproc from
Build-Depends-Indep to Build-Depends, since they are needed to run
configure

mplayer (1.0~rc2+svn20090303-4) unstable; urgency=low

  * try another fix for bug 520113
  * disable specific patch for powerpc, that was reducing optimization to -O
to avoid gcc bug 475153

mplayer (1.0~rc2+svn20090303-3) unstable; urgency=low

  * try a fix for bug 520113

mplayer (1.0~rc2+svn20090303-2) unstable; urgency=low

  * always build documentation. Fixes FTBFS.

mplayer (1.0~rc2+svn20090303-1) unstable; urgency=low

  * new upstream snapshot (Closes: #517774)
  * this version has dvdnav:// support (Closes: #430211)
  * rebuild against new ffmpeg in unstable,
(Closes: #518670, #516933, #492229, #505048, #512892, #496709)
  * converted package to use git Closes: #508483
  * completly reworked the way the .orig.tar.gz is created, please see
debian/README.upstream-upgrade and debian/get-orig-source.sh for details
  * large refactoring of debian/control and debian/rules
  * dropped many unnecessary versioned build dependencies
  * bumped debhelper compatibility level 4-7
  * replace patch system from dpatch to quilt
  * dropped the following patches, merged upstream:
- 10configure-alpha.dpatch
- 12configure-vidix-alpha.dpatch
- 24mplayer.desktop.dpatch
- 25kFreeBDS.dpatch
- 25mplayer-desktop.dpatch
- 30vorbis-block-alloc.dpatch
- 40rtsp_demux.dpatch
- 51xsai.dpatch
- CVE-2008-0073--rtsp_fix.diff
- CVE-2008-0629--stream_cddb.c.diff
- CVE-2008-0630.diff
- SA33136_demux_vqf.c.diff
- demux.patch
- demux_audio_fix_20080129.diff
- demux_mov_fix_20080129.diff
- oCERT-2008-013--realfix.diff
- theora_length_fix_svn27354.diff
- to-ffmpeg-free-0.svn20080206.diff
  * reworked the way the control file for the 

[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-06-06 Thread Launchpad Bug Tracker
This bug was fixed in the package vlc - 1.0.0~rc2-1ubuntu1

---
vlc (1.0.0~rc2-1ubuntu1) karmic; urgency=low

  * New upstream version.
  * tighten build-dependencies on libschroedinger-dev, fixes FTBFS.
  * Following bugs have an associated and now closed upstream ticket in
Launchpad: LP: #281295, #73449, #282567, #117640, #172938, #260918,
#273685, #275043, #277834, #282394, #290753, #294136, #298925, #304265,
#309728, #311742, #314038

vlc (1.0.0~rc2-1) experimental; urgency=low

  * New Upstream Release Candidate
+ Closes: #527010, #491441, #508618, #522824
  * Delete patches which were picked from upstream
  * Refresh patches
  * Remove vlc-plugin-esd and vlc-plugin-arts as they have been removed
by upstream
  * SONAME change for libvlccore
  * Add new symbols for libvlc2
  * Fix static libs compile
  * Use vlc-wrapper manpage from upstream
  * vlc.install: add drawable and screen was renamed x11_screen
  * vlc-nox.install: Add and remove modules added/removed upstream
  * Point out in NEWS the modules renamed or splited
  * Add links to upstream NEWS and co in vlc-nox
  * Version the depedency of libvlcore2 on vlc-data
  * Remove unnecessary Section: in debian/control

vlc (0.9.9a-3) unstable; urgency=low

  * Correct typo in 0.9.9a-2 changelog entry
  * Disable more optimization with DEB_BUILD_OPTIONS=noopt
  * Cache the configure test results as we're running configure several
times
  * Fix building as root
  * Fix the clean target
  * Remove unexistant config options
  * Better check commad line
  * Use all the procs on i386 and amd64
  * Build a version of libvlccore without altivec (Closes: #523035)
  * Fix typo (thanks to Salvatore Bonaccorso)(Closes: #528044)
  * Reword the command line to get full logs in bug/presubj (Closes: #527012)
  * Remove duplicate extended Settings entry in context menu
   (Closes: #526603) - thanks to Matt Kraai

 -- Reinhard Tartler siret...@tauware.de   Fri, 05 Jun 2009 12:28:15
+0200

** Changed in: vlc (Ubuntu)
   Status: New = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-05-07 Thread Jaime Rave
Hi Scott, Well I've been testing this bug since it appear in Ubuntu
8.10. You can see my report and the programs that are affected so far in
the bug http://bugs.winehq.org/show_bug.cgi?id=16147. So if you want to
test some applications, you can find some examples in that bug.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-05-06 Thread Devid Antonio Filoni
Does amsn work on Jaunty? Please test it, I don't have a webcam so I
cannot test it. If it works I will update the intrepid package.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-05-06 Thread .cobnet
I've tested the webcam functionality of the Genius VideoCAM Express
Webcam in aMSN and it worked out of the box with a Jaunty 9.04
installation (upgraded from 8.10). Is that what you mean Devid Antonio
Filoni?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-05-06 Thread vivia
v4l2 cams are confirmed to work.

I have a v4l1-only cam that I would like to test as well, but it looks
like it's not supported at all in Jaunty - either this, or I broke it
after having followed this guide:
http://ubuntuforums.org/showthread.php?t=1130582 (I had no choice - had
frequent freezes!) If someone has a webcam that only works with v4l1
(for example, using the ov511 module), please test and report.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-05-06 Thread Scott Ritchie
This bug has a task against Wine - is there a particular Windows webcam
application I should be testing here?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-04-12 Thread Sudipto Sarkar
I compiled version 2.6.29.1 of the kernel from kernel.org, and checked
if the module was working, which to my surprise was not. Then I
downloaded the v4l-dvb from linuxtv.org and compiled and installed it,
and I did a modprobe gspca_vc032x which adds the /dev/video0. But then I
get this I/O error:

libv4l2: error dequeuing buf: Input/output error

:(

I'm working in Ubuntu 8.10 and have an HP vga cam, which has the same
usb id as HP 2.0 Megapixel rz406aa and uses vc032x driver, which has
been added in this kernel release.

Any solution?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-04-12 Thread Sudipto Sarkar
I compiled version 2.6.29.1 of the kernel from kernel.org, and checked
if the module was working, which to my surprise was not. Then I
downloaded the v4l-dvb from linuxtv.org and compiled and installed it,
and I did a modprobe gspca_vc032x which adds the /dev/video0. But then I
get this I/O error:

libv4l2: error dequeuing buf: Input/output error

:(

I'm working in Ubuntu 8.10 and have an HP vga cam, which has the same
usb id as HP 2.0 Megapixel rz406aa and uses vc032x driver, which has
been added in this kernel release.

Any solution?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-03-27 Thread Bug Watch Updater
** Changed in: kdenlive
   Status: New = Unknown

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-03-20 Thread Scott
** Bug watch added: Kdenlive Mantis #726
   http://www.kdenlive.org/mantis/view.php?id=726

** Also affects: kdenlive via
   http://www.kdenlive.org/mantis/view.php?id=726
   Importance: Unknown
   Status: Unknown

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-03-20 Thread Bug Watch Updater
** Changed in: kdenlive
   Status: Unknown = New

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-03-01 Thread isayhelloyousaygoodbye
Sorry if this is not the place, but I'm desperate for guidance on how to access 
an webcam with Pixart PAC207BCA (vid/pid 0x093A:0x2468) via gspca pac207. Ekiga 
can retrieve image data, but apparently it uses a different system!?
When I try to grab a frame with FFmpeg version 
r11872+debian_3:0.svn20080206-12ubuntu3 I get 
...
[video4linux2 @ 0xb80aa388][3]Capabilities: 501
[video4linux2 @ 0xb80aa388]Cannot find a proper format.
/dev/video0: I/O error occured
Usually that means that input file is truncated and/or corrupted.

and dmesg shows
gspca: usb_submit_urb [0] err -28

I have compiled and installed libv4l-0.5.8-1 but no difference.
I need to stream from the camera and tried 
http://mjpg-streamer.wiki.sourceforge.net/ which does not work.
Could someone give instructions on how to get this working?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-03-01 Thread isayhelloyousaygoodbye
Follow up to: 
https://bugs.edge.launchpad.net/ubuntu/+source/libv4l/+bug/260918/comments/180
I just noticed that http://mjpg-streamer.wiki.sourceforge.net/ is based on 
http://linux-uvc.berlios.de/ and thus probably will not work for PAC207 anyway.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-03-01 Thread Steven
** Bug watch added: SourceForge.net Tracker #2653321
   http://sourceforge.net/support/tracker.php?aid=2653321

** Also affects: opencvlib via
   http://sourceforge.net/support/tracker.php?aid=2653321
   Importance: Unknown
   Status: Unknown

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-25 Thread darthanubis
Feb 25 15:39:29 core2duo zmwatch[5259]: INF [Restarting capture daemon for New, 
time since last capture 8 seconds (1235594369-1235594361)] 
Feb 25 15:39:29 core2duo zmdc[9991]: INF ['zmc -d /dev/video1' started at 
09/02/25 15:39:29] 
Feb 25 15:39:29 core2duo zmc_dvideo1[9991]: INF [Debug Level = 0, Debug Log = 
none]
Feb 25 15:39:29 core2duo zmdc[5226]: INF ['zmc -d /dev/video1' starting at 
09/02/25 15:39:29, pid = 9991] 
Feb 25 15:39:29 core2duo zmc_dvideo1[9991]: INF [Starting Capture]
Feb 25 15:39:29 core2duo zmwatch[5259]: INF ['zmc -d /dev/video1' starting at 
09/02/25 15:39:29, pid = 9991] 
Feb 25 15:39:31 core2duo kernel: [92311.647197] zc3xx: probe 2wr ov vga 0x

Linux core2duo 2.6.27-12-generic #1 SMP Thu Feb 5 09:26:42 UTC 2009
x86_64 GNU/Linux

Cheese, and Skype works just fine. Zoneminder is not working though.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-21 Thread Andres Mujica
miia: those are kernels from proposed...  they're not mean to be used in
production systems... However, that info is very useful to take into
account for the testing of proposed kernel.

Thanks, just use the 2.6.27-11 kernel from the menu in the meanwhile...

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-17 Thread Miia Ranta
is this something that needs to be issued every time the kernel changes? 
because now that I just installed the following packages:
linux-backports-modules-2.6.27-12-generic (2.6.27-12.13)
linux-headers-2.6.27-12 (2.6.27-12.28)
linux-headers-2.6.27-12-generic (2.6.27-12.28)
linux-image-2.6.27-12-generic (2.6.27-12.28)
linux-restricted-modules-2.6.27-12-generic (2.6.27-12.17)
today, and my webcam Bus 006 Device 002: ID 0ac8:301b Z-Star Microelectronics 
Corp. ZC0301 WebCam wont work unless I specifically start applications using 
the cam  LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so

with love
Miia the cam worked fine with 2.6.27-11 just yesterday Ranta...

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-16 Thread Loïc Minier
** Changed in: libv4l (Ubuntu)
 Assignee: Loïc Minier (lool) = (unassigned)

** Changed in: libv4l (Ubuntu Intrepid)
 Assignee: Loïc Minier (lool) = (unassigned)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-15 Thread newuser
Hi to all, I'd like to know if the problem is fixed! Because I updated gspca 
module following this 
(http://stemp.wordpress.com/2008/09/15/intrepid-les-webcams-et-les-drivers-gspca/)
 and libv4l to 0.5.8-1 version but still doesn't work! So I'd like to know why!!
Thank you penguins :)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-11 Thread Bug Watch Updater
** Changed in: vlc
   Status: New = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-02-07 Thread Gavin Tweedie
amsn:   ii  amsn  0.97.2~debian-1ubuntu3An MSN 
messenger written in Tcl
Kernel:  Linux pygmy 2.6.28-6-generic #17-Ubuntu SMP Fri Jan 30 15:34:36 UTC 
2009 i686 GNU/Linux

Latest amsn package still requires LD_PRELOAD for webcam to function.
Hardware is the integrated webcam on the dell mini 9.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-29 Thread Launchpad Bug Tracker
This bug was fixed in the package amsn - 0.97.2~debian-1ubuntu3

---
amsn (0.97.2~debian-1ubuntu3) jaunty; urgency=low

  * Add 11_svn10867.dpatch from upstream svn to fix an issue with v4l1 webcams
not working with v4l2. Fix LP: #260918.

 -- Devid Antonio Filoni d.fil...@ubuntu.com   Thu, 29 Jan 2009
16:10:22 +0100

** Changed in: amsn (Ubuntu)
   Status: In Progress = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-29 Thread Devid Antonio Filoni
Please test the new amsn package and report if it works or not. Thanks.

** Changed in: amsn (Ubuntu Intrepid)
 Assignee: (unassigned) = Devid Antonio Filoni (d.filoni)

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-13 Thread Bug Watch Updater
** Changed in: wine
   Status: New = Confirmed

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-12 Thread Bug Watch Updater
** Changed in: wine
   Status: Unknown = New

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-11 Thread Andres Mujica
** Also affects: wine via
   http://bugs.winehq.org/show_bug.cgi?id=16147
   Importance: Unknown
   Status: Unknown

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-11 Thread Stéphane Marguet
libv4l 0.5.8 is out.
Fixed problem with camorama for me.
Grab it in my PPA (or elsewhere):
i386 : 
https://edge.launchpad.net/%7Estemp/+archive/+files/libv4l-0_0.5.8-1~intrepidppa1_i386.deb
amd64 : 
https://edge.launchpad.net/%7Estemp/+archive/+files/libv4l-0_0.5.8-1~intrepidppa1_amd64.deb
amd64 compatibility : 
https://edge.launchpad.net/%7Estemp/+archive/+files/lib32v4l-0_0.5.8-1~intrepidppa1_amd64.deb

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-05 Thread Jaime Rave
Looks like Wine is affected by this bug also. Check
http://bugs.winehq.org/show_bug.cgi?id=16147

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2009-01-04 Thread Dusan Maliarik
recent update to libv4l fixed Cheese and many other applications. It
justt have small problem, the captured image is vertically FLIPPED! see
attachment

using uvcvideo, Intrepid proposed


** Attachment added: Flipped image
   http://launchpadlibrarian.net/20897317/screenshot1.png

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2008-12-30 Thread lann

I've tested the SVN revision 10792 for amsn and I've got these errors in the 
terminal : 

libv4l2: error attempting to open more then 16 video devices
open(/dev/video0): Device or resource busy

i saw a black image without control preferences.

my webcam is 046d:08ce - logitech quickcam pro 5000 and work fine with
xawtv and this errors :

/dev/video0 [v4l2]: no overlay support
v4l-conf had some trouble, trying to continue anyway
Warning: Cannot convert string -*-ledfixed-medium-r-*--39-*-*-*-c-*-*-* to 
type FontStruct
ioctl: VIDIOC_G_STD(std=0xb792ddb0b7ef29a8 
[PAL_H,PAL_D,PAL_K,PAL_M,PAL_60,NTSC_M_JP,SECAM_B,SECAM_D,SECAM_G,SECAM_H,SECAM_K1,SECAM_L,?ATSC_8_VSB,ATSC_16_VSB,(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null)]):
 Argument invalide
ioctl: VIDIOC_S_STD(std=0x0 []): Argument invalide

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2008-12-22 Thread Devid Antonio Filoni
Can someone please test the amsn package?

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2008-12-19 Thread Ryan Lovett
I'm running intrepid and cheese does not work for me with my QuickCam
Communicate STX. It printed

libv4l2: error dequeuing buf: Input/output error

to standard out 50 or so times.

$ lsmod | grep gspca
gspca_zc3xx55936  0 
gspca_main 29312  1 gspca_zc3xx
videodev   41344  1 gspca_main
usbcore   148848  9 
gspca_zc3xx,gspca_main,snd_usb_audio,snd_usb_lib,usblp,usbhid,ohci_hcd,ehci_hcd

$ lsusb
...
Bus 001 Device 005: ID 046d:08ad Logitech, Inc. QuickCam Communicate STX

$ dmesg
...
[80054.160400] zc3xx: probe 2wr ov vga 0x
[80490.308464] zc3xx: probe 2wr ov vga 0x

I tried the LD_PRELOAD trick mentioned in this bug, but no app was able
to handle the webcam. There are a lot of gspca launchpad bugs so I'm not
sure where to file this one. I picked 260918 since it was listed as the
mother bug, but 292086 might be more appropriate.

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2008-12-17 Thread Bug Watch Updater
** Changed in: debian
   Status: Fix Committed = Fix Released

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2008-12-16 Thread Steve Beattie
This bug was found in the Intrepid development cycle; removing
regression-potential and marking as regression-release.

** Tags added: regression-release

** Tags removed: regression-potential

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2008-12-16 Thread Carl-Erik Kopseng
Used to work with 8.04. Doesn't work anymore. Attached hardware info
from lshw and lspci -vvnn

** Attachment added: hwinfo.zip
   http://launchpadlibrarian.net/20476465/hwinfo.zip

-- 
needed: libv4l and associated application patches (or gspca stopped working in 
2.6.27)
https://bugs.launchpad.net/bugs/260918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   >