Re: [Bug 260918]

2020-07-07 Thread Clive Rodeo
Sorry, bug fixed after Sys update (facepalm)

On Tue, Jul 7, 2020 at 5:24 PM Jeremielapuree <260...@bugs.launchpad.net>
wrote:

> Does the bug still occur with wine-5.12?
>
> --
> You received this bug notification because you are subscribed to a
> duplicate bug report (283421).
> 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
>

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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

[Bug 260918]

2020-07-07 Thread Jeremielapuree
Does the bug still occur with wine-5.12?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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

[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 

[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, by

[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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-26 Thread Damjan Jovanovic
Fwink creates a NullRenderer. It adds it to the filter graph. On the
CaptureGraphBuilder2, it calls RenderStream(), asking it to link the
preview pin to the the default renderer. Then it calls RenderStream()
again, asking it to link the output pin to the NullRenderer. Finally it
adds the sample grabber in front of the NullRenderer, allowing it to
take photos.

Since the camera doesn't have a preview pin, CaptureGraphBuilder2 must
support the SmartTeeFilter which creates one by duplicating the output
pin. Wine's doesn't have that filter. Furthermore, Wine's
CaptureGraphBuilder2 doesn't even link the pins correctly. With my patch
above, it at least links both to the NullRenderer, allowing Fwink to
take photos, but not show preview video (since that needs the
SmartTeeFilter).

Those that believe Fwink worked before must have been using native qcap?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-26 Thread Robert Benjamin
(In reply to comment #35)
 Fwink creates a NullRenderer. It adds it to the filter graph. On the
 CaptureGraphBuilder2, it calls RenderStream(), asking it to link the preview
 pin to the the default renderer. Then it calls RenderStream() again, asking it
 to link the output pin to the NullRenderer. Finally it adds the sample grabber
 in front of the NullRenderer, allowing it to take photos.
 
 Since the camera doesn't have a preview pin, CaptureGraphBuilder2 must support
 the SmartTeeFilter which creates one by duplicating the output pin. Wine's
 doesn't have that filter. Furthermore, Wine's CaptureGraphBuilder2 doesn't 
 even
 link the pins correctly. With my patch above, it at least links both to the
 NullRenderer, allowing Fwink to take photos, but not show preview video (since
 that needs the SmartTeeFilter).
 
 Those that believe Fwink worked before must have been using native qcap?

 Thanks for your comments (#35). Don't understand it but from a previous
comment I think it said to try and install ispq9.x with wine 1.4 or
1.4.2 when available if not already so. If this is a good idea I will
try it and report what happens to you here if this is the correct place.
Thanks.   Bob

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Damjan Jovanovic
MSN Messenger is now Skype, Yahoo Messenger crashes on login (#32695),
iSpQ9 won't install due to MSI problems
(https://bugs.launchpad.net/ubuntu/+source/wine1.2/+bug/614546), so how
do you even test this?

Otherwise I've made changes that allow VLC on Wine to capture video from
my webcam, please retest with the latest Git or Wine version 1.4.2 when
it comes out.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Robert Benjamin
(In reply to comment #28)
 MSN Messenger is now Skype, Yahoo Messenger crashes on login (#32695), iSpQ9
 won't install due to MSI problems
 (https://bugs.launchpad.net/ubuntu/+source/wine1.2/+bug/614546), so how do you
 even test this?
 
 Otherwise I've made changes that allow VLC on Wine to capture video from my
 webcam, please retest with the latest Git or Wine version 1.4.2 when it comes
 out.

Will wait for Wine 1.4.2 and test ispq again. Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Damjan Jovanovic
(In reply to comment #29)
 (In reply to comment #28)
  MSN Messenger is now Skype, Yahoo Messenger crashes on login (#32695), iSpQ9
  won't install due to MSI problems
  (https://bugs.launchpad.net/ubuntu/+source/wine1.2/+bug/614546), so how do 
  you
  even test this?
  
  Otherwise I've made changes that allow VLC on Wine to capture video from my
  webcam, please retest with the latest Git or Wine version 1.4.2 when it 
  comes
  out.
 
 Will wait for Wine 1.4.2 and test ispq again. Thanks

Actually you can test with 1.5.22 as well.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Bruno Gonçalves de Jesus
fwink no longer runs in wine 1.5.22, it did in wine 1.5.18, it will take
time to do the regressiont test.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Bruno Gonçalves de Jesus
Created attachment 43229
+qcap,+qcap_v4l in wine 1.5.22

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Damjan Jovanovic
Created attachment 43230
Patch to render even if the output pin is NULL

I tested it before my patches, and Fwink didn't work. I actually just
wrote a patch that gets it to start. Doesn't seem to generate proper
photos though, I suspect that gdiplus interpolation 7 fixme.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-21 Thread Robert Benjamin
(In reply to comment #33)
 Created attachment 43230 [details]
 Patch to render even if the output pin is NULL
 
 I tested it before my patches, and Fwink didn't work. I actually just wrote a
 patch that gets it to start. Doesn't seem to generate proper photos though, I
 suspect that gdiplus interpolation 7 fixme.

 I can test ispq9.x by installing it in wine 1.4.x or try 1.5.x. Will
make a clean install of either and try the .msi and report to you what
results. Let me know which wine version is best to try. I am a novice
and probably not much help other than simple testing as I mentioned
above. Will try and follow simple instructions you may have if I
understand them. Sorry for not being much help but I really appreciate
every effort you guys make to get it to work. Hopefully others do too.
Thanks again.  Bob

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-16 Thread Robert Benjamin
(In reply to comment #26)
 (In reply to comment #25)
   Any progress on getting the webcams to work?
 
 Still wondering if the webcams (specifically Logitech 9000) works with ispq 
 9.x
 and wine 1.4 with Ubuntu v 12.04 or Linux Mint v 14. Thanks for the help.

   Logitech webcam 9000 works perfectly with ispq9.x in win 7 and win xp
and the Mac too I believe. In Ubuntu 12.04 and Mint 14 with wine 1.4 it
doesn't work. Some users said they could see me and read some text but I
can't see users nor read see any text. The camera is great with Skype
for Linux and is fine with that in Mint and Ubuntu. Also works with
cheese but that isn't a video conferencing program I believe.  Hope some
day the webcam will work in Linux. Hate to use win 7 to chat with
friends. Would love to stay in Linux and use ispq9.x. BTW, I emailed
tech support in ispq late last year re: supporting Linux after they did
it for the Mac. The reply was no, they have no interest in Linux at this
time and it would be too difficult to have techs work on it now. Bummer.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2013-01-08 Thread Robert Benjamin
(In reply to comment #25)
  Any progress on getting the webcams to work?

Still wondering if the webcams (specifically Logitech 9000) works with
ispq 9.x and wine 1.4 with Ubuntu v 12.04 or Linux Mint v 14. Thanks for
the help.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2012-10-11 Thread Robert Benjamin
Any progress on getting the webcams to work?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


Re: [Bug 260918]

2012-10-11 Thread Jean-Paul Saman
Hi,

Just discovered your e-mail in my inbox.

On Fri, Oct 5, 2012 at 1:32 PM, Robert Benjamin
260...@bugs.launchpad.net wrote:
 Any progress on getting the webcams to work?

I am not working on this issue.

Also I am very surprised that this launchpad bug report is sent to me
specifically. Shouldn't it be sent to vlc-devel or videolan@v.o. ???

Kind regards,

Jean-Paul Saman.

 --
 You received this bug notification because you are a member of Videolan,
 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)

 Status in Adobe Flash Plugin Tools:
   Won't Fix
 Status in Cheese Camera Application:
   Unknown
 Status in Ekiga Voice Over IP Suite:
   Fix Released
 Status in The Mozilla Firefox Browser:
   Invalid
 Status in GStreamer Plugins (Good):
   Fix Released
 Status in The GStreamer Multimedia Framework:
   Fix Released
 Status in KDE Non-Linear Video Editor:
   Fix Released
 Status in Kopete:
   Fix Released
 Status in Medibuntu:
   Fix Released
 Status in Open Source Computer Vision library:
   Unknown
 Status in VLC media player:
   Fix Released
 Status in Wine:
   Confirmed
 Status in “amsn” package in Ubuntu:
   Fix Released
 Status in “came” package in Ubuntu:
   Fix Released
 Status in “camorama” package in Ubuntu:
   Confirmed
 Status in “camstream” package in Ubuntu:
   Fix Released
 Status in “cheese” package in Ubuntu:
   Invalid
 Status in “ekiga” package in Ubuntu:
   Invalid
 Status in “gst-plugins-good0.10” package in Ubuntu:
   Fix Released
 Status in “libv4l” package in Ubuntu:
   Fix Committed
 Status in “mplayer” package in Ubuntu:
   Fix Released
 Status in “pwlib” package in Ubuntu:
   Fix Released
 Status in “vlc” package in Ubuntu:
   Fix Released
 Status in “xawtv” package in Ubuntu:
   Fix Released
 Status in “amsn” source package in Lucid:
   New
 Status in “came” source package in Lucid:
   New
 Status in “camorama” source package in Lucid:
   New
 Status in “camstream” source package in Lucid:
   New
 Status in “cheese” source package in Lucid:
   Invalid
 Status in “ekiga” source package in Lucid:
   New
 Status in “gst-plugins-good0.10” source package in Lucid:
   New
 Status in “libv4l” source package in Lucid:
   New
 Status in “mplayer” source package in Lucid:
   New
 Status in “pwlib” source package in Lucid:
   New
 Status in “vlc” source package in Lucid:
   New
 Status in “xawtv” source package in Lucid:
   New
 Status in “amsn” source package in Intrepid:
   Fix Released
 Status in “came” source package in Intrepid:
   Fix Released
 Status in “camorama” source package in Intrepid:
   Invalid
 Status in “camstream” source package in Intrepid:
   Invalid
 Status in “cheese” source package in Intrepid:
   Invalid
 Status in “ekiga” source package in Intrepid:
   Invalid
 Status in “gst-plugins-good0.10” source package in Intrepid:
   Fix Released
 Status in “libv4l” source package in Intrepid:
   Fix Released
 Status in “mplayer” source package in Intrepid:
   Won't Fix
 Status in “pwlib” source package in Intrepid:
   Fix Released
 Status in “vlc” source package in Intrepid:
   Won't Fix
 Status in “xawtv” source package in Intrepid:
   Fix Released
 Status in “camorama” package in Debian:
   Fix Released
 Status in “gst-plugins-good0.10” package in Fedora:
   Fix Released
 Status in “pwlib” package in Fedora:
   Fix Released
 Status in “xawtv” package in Fedora:
   Fix Released

 Bug description:
   libv4l is a user-space library used by several applications in order
   to convert webcam streams in user-space instead of kernel-space. As
   gspca is included in 2.6.27 this is needed in order to (re)support a
   multitude of webcams supported with ordinary applications.

   See http://hansdegoede.livejournal.com/3636.html for a more complete
   description of the software.

   The latest version is 0.4.0 and is available from
   http://people.atrpms.net/~hdegoede/

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

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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

[Bug 260918]

2012-09-05 Thread Bruno Gonçalves de Jesus
No answer to last reminder, no download.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2012-09-05 Thread Robert Benjamin
AFAIK, icu2 is now multi-platform, linux, mac, and windows, via a web
based system I guess. I don't use it anymore so not sure if the webcams
work. My guess is it does, without wine.Just heard this from friends.
Haven't tried it. Webpage is video.icu2.com to get the multiplatform
site. Anyone try it out?

 iSpQ is version 9.2 or will be shortly. They are multi-platform also,
using windows and mac only. Their webpage is www.ispq.com. I still use
it in win7 only. Haven't tried recently ( a few years ) to use wine and
my Logitech 9000 webcam. If wine supports the webcam and ispq I will
install it, and never go back to windows. So I hope this bug stays open
and others can comment on the use of webcams and ispq and other video
conferencing programs. Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2012-09-05 Thread Bruno Gonçalves de Jesus
I have found a simpler application to test, it's called FWink.
http://www.lundie.ca/fwink/

After selecting the webcam and pressing OK the program crashes in qcap.
I'll attach the file.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2012-09-05 Thread Bruno Gonçalves de Jesus
Created attachment 41551
+qcap,+qcap_v4l in wine 1.5.12

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2012-02-03 Thread Bruno Gonçalves de Jesus
The links in this bug are not available anymore. Is this still a problem
in 1.4-rc1? Can anyone provide a new link to reproduce this issue?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
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

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


[Bug 260918]

2011-02-21 Thread Robert Benjamin
Update comment: Still wondering if anyone is working on the webcams(USB
cams) to work in ICU2 and iSpQ. They still aren't recognized in Wine or
native Linux as far as I can tell. Would appreciate an update of efforts
to get webcams to work with these programs.
http://www.icu.com/downloads and http://www.ispq.com/downloads.   Thanks
for an update.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

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


[Bug 260918]

2011-01-11 Thread PascalCavy
Already reported here 
https://bugs.adobe.com/jira/browse/FP-204 

people please vote for this bug on JIRA

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

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


[Bug 260918]

2011-01-09 Thread Robert Benjamin
 I guess it is a long slow process to get USB devices like webcams to
work in Linux. Still the cam does work with Cheese and native Skype.
Love to know if anyone is working on getting webcams to work with iSpQ
or icuii.  iSpQ is from Nanocorp  http://www.ispq.com/downloads and
icuii is from cybration http://www.ispq.com/downloads. I have accounts
with both so can help trying to enter my username and password in either
one if that's any help. Thanks for trying. Appreciate your efforts. I
have Ubuntu 10.10 and Fedora fc 14 on separate HDs. Use the latest wine
version in both.  Bob

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.
https://bugs.launchpad.net/bugs/260918

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

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-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
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in ubuntu.

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


  1   2   3   4   >