- Update to 1.4.0
- Update maintainer mail adress PR: 114268 Submitted by: Raaf <raaf@zen.mooo.com> (maintainer)
This commit is contained in:
parent
23316dca12
commit
518bc5bf16
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=194906
7 changed files with 9 additions and 232 deletions
|
@ -6,14 +6,13 @@
|
|||
#
|
||||
|
||||
PORTNAME= pwcbsd
|
||||
PORTVERSION= 1.3.1
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 1.4.0
|
||||
CATEGORIES= multimedia sysutils kld
|
||||
MASTER_SITES= http://raaf.atspace.org/ \
|
||||
${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= miwi
|
||||
|
||||
MAINTAINER= freebsd@luna.afraid.org
|
||||
MAINTAINER= raaf@zen.mooo.com
|
||||
COMMENT= The Linux pwc webcam driver ported to FreeBSD
|
||||
|
||||
MAN4= pwc.4
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (pwcbsd-1.3.1.tar.gz) = 8fdc3ef6b3c81de81ddfd4a9e4344fe6
|
||||
SHA256 (pwcbsd-1.3.1.tar.gz) = 06820c64696d82f5d34cea7b0a374dc1bc0736e492cf865dede35415ce3885dd
|
||||
SIZE (pwcbsd-1.3.1.tar.gz) = 60316
|
||||
MD5 (pwcbsd-1.4.0.tar.gz) = 772acd1514f2e85a03f01ecbb9ba78cd
|
||||
SHA256 (pwcbsd-1.4.0.tar.gz) = 0c4ad5be40b049b13508a46d9e46a541fae79b9f0a2884236acf2abbfbc6aebd
|
||||
SIZE (pwcbsd-1.4.0.tar.gz) = 65793
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
--- pwc-ctrl.c Thu Jun 8 20:28:32 2006
|
||||
+++ pwc-ctrl.c Fri Dec 15 14:37:57 2006
|
||||
@@ -434,8 +434,9 @@
|
||||
if (ret == -ENOENT)
|
||||
Info("Video mode %s@%d fps is only supported with the decompressor module (pwcx).\n", size2name[size], frames);
|
||||
else {
|
||||
- printf("%s: Failed to set video mode to %s@%d fps; return code = %d\n",
|
||||
- USBDEVNAME(pdev->sc_dev),size2name[size], frames, -ret);
|
||||
+ device_printf(pdev->sc_dev,
|
||||
+ "Failed to set video mode to %s@%d fps; return code = %d\n",
|
||||
+ size2name[size], frames, -ret);
|
||||
}
|
||||
return ret;
|
||||
}
|
|
@ -1,196 +0,0 @@
|
|||
--- pwc.c Sun Sep 24 06:58:43 2006
|
||||
+++ pwc.c Fri Dec 15 14:37:13 2006
|
||||
@@ -149,8 +149,9 @@
|
||||
|
||||
info = pwc_lookup(uaa->vendor, uaa->product);
|
||||
if(info == NULL) {
|
||||
- printf("%s: attach error vendor/product mismatch (vendor=0x%x product=0x%x)\n",
|
||||
- USBDEVNAME(sc->sc_dev),uaa->vendor,uaa->product);
|
||||
+ device_printf(sc->sc_dev,
|
||||
+ "attach error vendor/product mismatch (vendor=0x%x product=0x%x)\n",
|
||||
+ uaa->vendor,uaa->product);
|
||||
USB_ATTACH_ERROR_RETURN;
|
||||
}
|
||||
|
||||
@@ -159,7 +160,7 @@
|
||||
|
||||
err = usbd_device2interface_handle(uaa->device,0,&sc->sc_iface);
|
||||
if(err) {
|
||||
- printf("%s: failed to get interface handle\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "failed to get interface handle\n");
|
||||
USB_ATTACH_ERROR_RETURN;
|
||||
}
|
||||
|
||||
@@ -192,7 +193,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- mtx_init(&sc->ptrlock,USBDEVNAME(sc->sc_dev),NULL,MTX_DEF);
|
||||
+ mtx_init(&sc->ptrlock,device_get_name(sc->sc_dev),NULL,MTX_DEF);
|
||||
|
||||
tmpstr = "video";
|
||||
resource_string_value("pwc",device_get_unit(self),"devname",&tmpstr);
|
||||
@@ -256,7 +257,7 @@
|
||||
resource_int_value("pwc",device_get_unit(self),"pad",&sc->pwc_pad);
|
||||
|
||||
pwc_construct(sc);
|
||||
- printf("%s: %s USB webcam\n",USBDEVNAME(sc->sc_dev),sc->name);
|
||||
+ device_printf(sc->sc_dev, "%s USB webcam\n", sc->name);
|
||||
|
||||
if(pwc_get_cmos_sensor(sc, &i) >= 0) {
|
||||
|
||||
@@ -274,7 +275,8 @@
|
||||
default: tmpstr = "unknown type of sensor"; break;
|
||||
}
|
||||
|
||||
- printf("%s: This camera is equipped with a %s (%d)\n",USBDEVNAME(sc->sc_dev),tmpstr, i);
|
||||
+ device_printf(sc->sc_dev, "This camera is equipped with a %s (%d)\n",
|
||||
+ tmpstr, i);
|
||||
}
|
||||
|
||||
pwc_set_leds(sc, 0, 0);
|
||||
@@ -308,7 +310,7 @@
|
||||
sc->state &= ~PWC_POLL;
|
||||
selwakeuppri(&sc->rsel,PZERO);
|
||||
}
|
||||
- printf("%s: Disconnected while webcam is in use!\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Disconnected while webcam is in use!\n");
|
||||
}
|
||||
|
||||
if(sc->sc_dev_t != NULL)
|
||||
@@ -345,7 +347,8 @@
|
||||
if (sc->power_save) {
|
||||
err = pwc_camera_power(sc, 1);
|
||||
if (err < 0)
|
||||
- printf("%s: Failed to restore power to the camera! (%d)\n", USBDEVNAME(sc->sc_dev),-err);
|
||||
+ device_printf(sc->sc_dev,
|
||||
+ "Failed to restore power to the camera! (%d)\n", -err);
|
||||
}
|
||||
|
||||
pwc_set_leds(sc, sc->led_on, sc->led_off);
|
||||
@@ -354,7 +357,8 @@
|
||||
/* Allocate frame buffer structure */
|
||||
sc->fbuf = malloc(sc->pwc_fbufs * sizeof(struct pwc_frame_buf), M_USBDEV, M_WAITOK);
|
||||
if (sc->fbuf == NULL) {
|
||||
- printf("%s: Failed to allocate frame buffer structure.\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev,
|
||||
+ "Failed to allocate frame buffer structure.\n");
|
||||
goto bad;
|
||||
}
|
||||
memset(sc->fbuf, 0, sc->pwc_fbufs * sizeof(struct pwc_frame_buf));
|
||||
@@ -364,7 +368,7 @@
|
||||
|
||||
sc->fbuf[i].data = malloc(PWC_FRAME_SIZE,M_USBDEV,M_WAITOK);
|
||||
if (sc->fbuf[i].data == NULL) {
|
||||
- printf("%s: Failed to allocate frame buffer\n", USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to allocate frame buffer\n");
|
||||
goto bad;
|
||||
}
|
||||
memset(sc->fbuf[i].data, 128, PWC_FRAME_SIZE);
|
||||
@@ -376,7 +380,7 @@
|
||||
sc->decompress_data = malloc(sizeof(struct pwc_dec23_private), M_USBDEV, M_WAITOK);/* Timon & Kiara */
|
||||
|
||||
if(sc->decompress_data == NULL) {
|
||||
- printf("%s: Failed to allocate decompress table.\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to allocate decompress table.\n");
|
||||
goto bad;
|
||||
}
|
||||
|
||||
@@ -384,7 +388,7 @@
|
||||
if(sc->image_data == NULL) {
|
||||
sc->image_data = malloc(sc->pwc_mbufs * round_page(sc->len_per_image), M_USBDEV, M_WAITOK);
|
||||
if(sc->image_data == NULL) {
|
||||
- printf("%s: Failed to allocate image buffers\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to allocate image buffers\n");
|
||||
goto bad;
|
||||
}
|
||||
}
|
||||
@@ -404,13 +408,13 @@
|
||||
sc->sbuf[i].xfer = usbd_alloc_xfer(sc->udev);
|
||||
|
||||
if(sc->sbuf[i].xfer == NULL) {
|
||||
- printf("%s: Failed to allocate transfer\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to allocate transfer\n");
|
||||
goto bad;
|
||||
}
|
||||
|
||||
sc->sbuf[i].data = usbd_alloc_buffer(sc->sbuf[i].xfer, ISO_BUFFER_SIZE);
|
||||
if(sc->sbuf[i].data == NULL) {
|
||||
- printf("%s: Failed to allocate transferbuffer\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to allocate transferbuffer\n");
|
||||
goto bad;
|
||||
}
|
||||
}
|
||||
@@ -466,8 +470,9 @@
|
||||
programs)
|
||||
*/
|
||||
if(sc->vframe_count > 20 && sc->stats) {
|
||||
- printf("%s: %d frames received, dumped %d frames, %d frames with errors.\n"
|
||||
- ,USBDEVNAME(sc->sc_dev),sc->vframe_count, sc->vframes_dumped, sc->vframes_error);
|
||||
+ device_printf(sc->sc_dev,
|
||||
+ "%d frames received, dumped %d frames, %d frames with errors.\n",
|
||||
+ sc->vframe_count, sc->vframes_dumped, sc->vframes_error);
|
||||
}
|
||||
|
||||
if(sc->type == 645 || sc->type == 646)
|
||||
@@ -491,7 +496,7 @@
|
||||
|
||||
if(sc->power_save) {
|
||||
if(pwc_camera_power(sc, 0) < 0)
|
||||
- printf("%s: Failed to power down the camera\n", USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to power down the camera\n");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -662,13 +667,15 @@
|
||||
|
||||
err = usbd_set_interface(sc->sc_iface,sc->valternate);
|
||||
if(err != USBD_NORMAL_COMPLETION) {
|
||||
- printf("%s: Failed to set alternate interface to: %d (%d)\n",USBDEVNAME(sc->sc_dev),sc->valternate,err);
|
||||
+ device_printf(sc->sc_dev,
|
||||
+ "Failed to set alternate interface to: %d (%d)\n",
|
||||
+ sc->valternate,err);
|
||||
return -err;
|
||||
}
|
||||
|
||||
err = usbd_endpoint_count(sc->sc_iface, &nendpt);
|
||||
if(err != USBD_NORMAL_COMPLETION) {
|
||||
- printf("%s: Failed to get endpoint count (%d)\n",USBDEVNAME(sc->sc_dev),err);
|
||||
+ device_printf(sc->sc_dev, "Failed to get endpoint count (%d)\n",err);
|
||||
return -err;
|
||||
}
|
||||
for (i = 0; i < nendpt; i++) {
|
||||
@@ -677,20 +684,20 @@
|
||||
break;
|
||||
}
|
||||
if(i == nendpt) {
|
||||
- printf("%s: Failed to find videoendpoint\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev, "Failed to find videoendpoint\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
sc->vmax_packet_size = UGETW(edesc->wMaxPacketSize);
|
||||
if(sc->vmax_packet_size < 0 || sc->vmax_packet_size > ISO_MAX_FRAME_SIZE) {
|
||||
- printf("%s: Invalid packetsize (%d) for endpoint %d\n",USBDEVNAME(sc->sc_dev),
|
||||
+ device_printf(sc->sc_dev, "Invalid packetsize (%d) for endpoint %d\n",
|
||||
sc->vmax_packet_size,edesc->bEndpointAddress);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
err = usbd_open_pipe(sc->sc_iface,edesc->bEndpointAddress, 0, &sc->sc_videopipe);
|
||||
if(err != USBD_NORMAL_COMPLETION) {
|
||||
- printf("%s: Failed to open videopipe (%d)\n",USBDEVNAME(sc->sc_dev),err);
|
||||
+ device_printf(sc->sc_dev, "Failed to open videopipe (%d)\n", err);
|
||||
return -err;
|
||||
}
|
||||
|
||||
@@ -771,7 +778,8 @@
|
||||
if (++sc->visoc_errors > MAX_ISOC_ERRORS) {
|
||||
|
||||
if(sc->error_status != EIO)
|
||||
- printf("%s: Too many ISOC errors, bailing out.\n",USBDEVNAME(sc->sc_dev));
|
||||
+ device_printf(sc->sc_dev,
|
||||
+ "Too many ISOC errors, bailing out.\n");
|
||||
|
||||
sc->error_status = EIO;
|
||||
awake = 1;
|
|
@ -1,11 +0,0 @@
|
|||
--- pwc.h Thu Jun 8 20:27:39 2006
|
||||
+++ pwc.h Fri Dec 15 14:29:52 2006
|
||||
@@ -133,7 +133,7 @@
|
||||
|
||||
struct pwc_softc
|
||||
{
|
||||
- USBBASEDEVICE sc_dev;
|
||||
+ device_t sc_dev;
|
||||
usbd_device_handle udev;
|
||||
usbd_interface_handle sc_iface;
|
||||
usbd_pipe_handle sc_videopipe;
|
|
@ -1,5 +1,6 @@
|
|||
This port provides a FreeBSD kernel module that
|
||||
video4linux enabled and raw yuv420p applications
|
||||
can use to access several USB based webcams.
|
||||
video4linux enabled applications and applications
|
||||
that can handle raw YUV420P data can use to access
|
||||
several USB based webcams.
|
||||
|
||||
WWW: http://raaf.atspace.org/
|
||||
|
|
|
@ -15,8 +15,6 @@ To load the kernel module at boot, add the following line to
|
|||
pwc_load="YES"
|
||||
|
||||
CAUTION: If you enabled mmap support in the driver, beware that
|
||||
unplugging your webcam while it is in use may crash your system. So
|
||||
if you enabled mmap support, always remember to first exit the
|
||||
application that is using the webcam before unplugging the webcam.
|
||||
unplugging your webcam while it is in use may crash your system.
|
||||
|
||||
===============================================================================
|
||||
|
|
Loading…
Reference in a new issue