1 /******************************************************************************
5 * Audio driver for EasyCAP USB2.0 Video Capture Device DC60 *
8 ******************************************************************************/
11 * Copyright (C) 2010 R.M. Thomas <rmthomas@sciolus.org>
14 * This is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * The software is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this software; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 /*****************************************************************************/
33 /*--------------------------------------------------------------------------*/
35 * PARAMETERS USED WHEN REGISTERING THE AUDIO INTERFACE
37 /*--------------------------------------------------------------------------*/
38 static const struct snd_pcm_hardware alsa_hardware
= {
39 .info
= SNDRV_PCM_INFO_BLOCK_TRANSFER
|
41 SNDRV_PCM_INFO_INTERLEAVED
|
42 SNDRV_PCM_INFO_MMAP_VALID
,
43 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
44 .rates
= SNDRV_PCM_RATE_32000
| SNDRV_PCM_RATE_48000
,
49 .buffer_bytes_max
= PAGE_SIZE
*
50 PAGES_PER_AUDIO_FRAGMENT
*
52 .period_bytes_min
= PAGE_SIZE
* PAGES_PER_AUDIO_FRAGMENT
,
53 .period_bytes_max
= PAGE_SIZE
* PAGES_PER_AUDIO_FRAGMENT
* 2,
54 .periods_min
= AUDIO_FRAGMENT_MANY
,
55 .periods_max
= AUDIO_FRAGMENT_MANY
* 2,
59 /*****************************************************************************/
60 /*---------------------------------------------------------------------------*/
62 * ON COMPLETION OF AN AUDIO URB ITS DATA IS COPIED TO THE DAM BUFFER
63 * PROVIDED peasycap->audio_idle IS ZERO. REGARDLESS OF THIS BEING TRUE,
64 * IT IS RESUBMITTED PROVIDED peasycap->audio_isoc_streaming IS NOT ZERO.
66 /*---------------------------------------------------------------------------*/
68 easycap_alsa_complete(struct urb
*purb
)
70 struct easycap
*peasycap
;
71 struct snd_pcm_substream
*pss
;
72 struct snd_pcm_runtime
*prt
;
73 int dma_bytes
, fragment_bytes
;
77 int i
, j
, more
, much
, rc
;
80 s16 oldaudio
, newaudio
, delta
;
86 SAY("ERROR: purb is NULL\n");
89 peasycap
= purb
->context
;
91 SAY("ERROR: peasycap is NULL\n");
95 if (peasycap
->audio_idle
) {
96 JOM(16, "%i=audio_idle %i=audio_isoc_streaming\n",
97 peasycap
->audio_idle
, peasycap
->audio_isoc_streaming
);
98 if (peasycap
->audio_isoc_streaming
)
101 /*---------------------------------------------------------------------------*/
102 pss
= peasycap
->psubstream
;
108 dma_bytes
= (int)prt
->dma_bytes
;
111 fragment_bytes
= 4 * ((int)prt
->period_size
);
112 if (0 == fragment_bytes
)
114 /* -------------------------------------------------------------------------*/
116 if ((-ESHUTDOWN
== purb
->status
) || (-ENOENT
== purb
->status
)) {
117 JOM(16, "urb status -ESHUTDOWN or -ENOENT\n");
120 SAM("ERROR: non-zero urb status: -%s: %d\n",
121 strerror(purb
->status
), purb
->status
);
124 /*---------------------------------------------------------------------------*/
126 * PROCEED HERE WHEN NO ERROR
128 /*---------------------------------------------------------------------------*/
131 oldaudio
= peasycap
->oldaudio
;
134 for (i
= 0; i
< purb
->number_of_packets
; i
++) {
135 if (purb
->iso_frame_desc
[i
].status
< 0) {
137 strerror(purb
->iso_frame_desc
[i
].status
),
138 purb
->iso_frame_desc
[i
].status
);
140 if (purb
->iso_frame_desc
[i
].status
) {
141 JOM(12, "discarding audio samples because "
142 "%i=purb->iso_frame_desc[i].status\n",
143 purb
->iso_frame_desc
[i
].status
);
146 more
= purb
->iso_frame_desc
[i
].actual_length
;
148 peasycap
->audio_mt
++;
152 SAM("MISTAKE: more is negative\n");
156 if (peasycap
->audio_mt
) {
157 JOM(12, "%4i empty audio urb frames\n",
159 peasycap
->audio_mt
= 0;
162 p1
= (u8
*)(purb
->transfer_buffer
+
163 purb
->iso_frame_desc
[i
].offset
);
166 * COPY more BYTES FROM ISOC BUFFER
167 * TO THE DMA BUFFER, CONVERTING
168 * 8-BIT MONO TO 16-BIT SIGNED
169 * LITTLE-ENDIAN SAMPLES IF NECESSARY
172 much
= dma_bytes
- peasycap
->dma_fill
;
174 SAM("MISTAKE: much is negative\n");
178 peasycap
->dma_fill
= 0;
179 peasycap
->dma_next
= fragment_bytes
;
180 JOM(8, "wrapped dma buffer\n");
182 if (!peasycap
->microphone
) {
185 memcpy(prt
->dma_area
+ peasycap
->dma_fill
,
192 JOM(8, "MISTAKE? much"
193 " is not divisible by 16\n");
194 if (much
> (16 * more
))
196 p2
= (u8
*)(prt
->dma_area
+ peasycap
->dma_fill
);
198 for (j
= 0; j
< (much
/ 16); j
++) {
199 newaudio
= ((int) *p1
) - 128;
200 newaudio
= 128 * newaudio
;
202 delta
= (newaudio
- oldaudio
) / 4;
203 tmp
= oldaudio
+ delta
;
205 for (k
= 0; k
< 4; k
++) {
206 *p2
= (0x00FF & tmp
);
207 *(p2
+ 1) = (0xFF00 & tmp
) >> 8;
209 *p2
= (0x00FF & tmp
);
210 *(p2
+ 1) = (0xFF00 & tmp
) >> 8;
219 if (much
> (2 * more
))
221 p2
= (u8
*)(prt
->dma_area
+ peasycap
->dma_fill
);
223 for (j
= 0; j
< (much
/ 2); j
++) {
224 tmp
= ((int) *p1
) - 128;
226 *p2
= (0x00FF & tmp
);
227 *(p2
+ 1) = (0xFF00 & tmp
) >> 8;
234 peasycap
->dma_fill
+= much
;
235 if (peasycap
->dma_fill
>= peasycap
->dma_next
) {
236 isfragment
= peasycap
->dma_fill
/ fragment_bytes
;
237 if (0 > isfragment
) {
238 SAM("MISTAKE: isfragment is negative\n");
241 peasycap
->dma_read
= (isfragment
- 1) * fragment_bytes
;
242 peasycap
->dma_next
= (isfragment
+ 1) * fragment_bytes
;
243 if (dma_bytes
< peasycap
->dma_next
)
244 peasycap
->dma_next
= fragment_bytes
;
246 if (0 <= peasycap
->dma_read
) {
247 JOM(8, "snd_pcm_period_elapsed(), %i="
248 "isfragment\n", isfragment
);
249 snd_pcm_period_elapsed(pss
);
255 peasycap
->oldaudio
= oldaudio
;
259 /*---------------------------------------------------------------------------*/
263 /*---------------------------------------------------------------------------*/
265 if (peasycap
->audio_isoc_streaming
== 0)
268 rc
= usb_submit_urb(purb
, GFP_ATOMIC
);
270 if ((-ENODEV
!= rc
) && (-ENOENT
!= rc
)) {
271 SAM("ERROR: while %i=audio_idle, usb_submit_urb failed "
272 "with rc: -%s :%d\n",
273 peasycap
->audio_idle
, strerror(rc
), rc
);
275 if (0 < peasycap
->audio_isoc_streaming
)
276 peasycap
->audio_isoc_streaming
--;
280 /*****************************************************************************/
281 static int easycap_alsa_open(struct snd_pcm_substream
*pss
)
283 struct snd_pcm
*psnd_pcm
;
284 struct snd_card
*psnd_card
;
285 struct easycap
*peasycap
;
289 SAY("ERROR: pss is NULL\n");
294 SAY("ERROR: psnd_pcm is NULL\n");
297 psnd_card
= psnd_pcm
->card
;
299 SAY("ERROR: psnd_card is NULL\n");
303 peasycap
= psnd_card
->private_data
;
305 SAY("ERROR: peasycap is NULL\n");
308 if (peasycap
->psnd_card
!= psnd_card
) {
309 SAM("ERROR: bad peasycap->psnd_card\n");
312 if (peasycap
->psubstream
) {
313 SAM("ERROR: bad peasycap->psubstream\n");
316 pss
->private_data
= peasycap
;
317 peasycap
->psubstream
= pss
;
318 pss
->runtime
->hw
= peasycap
->alsa_hardware
;
319 pss
->runtime
->private_data
= peasycap
;
320 pss
->private_data
= peasycap
;
322 if (0 != easycap_sound_setup(peasycap
)) {
323 JOM(4, "ending unsuccessfully\n");
326 JOM(4, "ending successfully\n");
329 /*****************************************************************************/
330 static int easycap_alsa_close(struct snd_pcm_substream
*pss
)
332 struct easycap
*peasycap
;
336 SAY("ERROR: pss is NULL\n");
339 peasycap
= snd_pcm_substream_chip(pss
);
341 SAY("ERROR: peasycap is NULL\n");
344 pss
->private_data
= NULL
;
345 peasycap
->psubstream
= NULL
;
346 JOT(4, "ending successfully\n");
349 /*****************************************************************************/
350 static int easycap_alsa_vmalloc(struct snd_pcm_substream
*pss
, size_t sz
)
352 struct snd_pcm_runtime
*prt
;
356 SAY("ERROR: pss is NULL\n");
361 SAY("ERROR: substream.runtime is NULL\n");
365 if (prt
->dma_bytes
> sz
)
367 vfree(prt
->dma_area
);
369 prt
->dma_area
= vmalloc(sz
);
375 /*****************************************************************************/
376 static int easycap_alsa_hw_params(struct snd_pcm_substream
*pss
,
377 struct snd_pcm_hw_params
*phw
)
381 JOT(4, "%i\n", (params_buffer_bytes(phw
)));
383 SAY("ERROR: pss is NULL\n");
386 rc
= easycap_alsa_vmalloc(pss
, params_buffer_bytes(phw
));
391 /*****************************************************************************/
392 static int easycap_alsa_hw_free(struct snd_pcm_substream
*pss
)
394 struct snd_pcm_runtime
*prt
;
398 SAY("ERROR: pss is NULL\n");
403 SAY("ERROR: substream.runtime is NULL\n");
407 JOT(8, "prt->dma_area = %p\n", prt
->dma_area
);
408 vfree(prt
->dma_area
);
409 prt
->dma_area
= NULL
;
411 JOT(8, "dma_area already freed\n");
414 /*****************************************************************************/
415 static int easycap_alsa_prepare(struct snd_pcm_substream
*pss
)
417 struct easycap
*peasycap
;
418 struct snd_pcm_runtime
*prt
;
422 SAY("ERROR: pss is NULL\n");
426 peasycap
= snd_pcm_substream_chip(pss
);
428 SAY("ERROR: peasycap is NULL\n");
432 JOM(16, "ALSA decides %8i Hz=rate\n", pss
->runtime
->rate
);
433 JOM(16, "ALSA decides %8ld =period_size\n", pss
->runtime
->period_size
);
434 JOM(16, "ALSA decides %8i =periods\n", pss
->runtime
->periods
);
435 JOM(16, "ALSA decides %8ld =buffer_size\n", pss
->runtime
->buffer_size
);
436 JOM(16, "ALSA decides %8zd =dma_bytes\n", pss
->runtime
->dma_bytes
);
437 JOM(16, "ALSA decides %8ld =boundary\n", pss
->runtime
->boundary
);
438 JOM(16, "ALSA decides %8i =period_step\n", pss
->runtime
->period_step
);
439 JOM(16, "ALSA decides %8i =sample_bits\n", pss
->runtime
->sample_bits
);
440 JOM(16, "ALSA decides %8i =frame_bits\n", pss
->runtime
->frame_bits
);
441 JOM(16, "ALSA decides %8ld =min_align\n", pss
->runtime
->min_align
);
442 JOM(12, "ALSA decides %8ld =hw_ptr_base\n", pss
->runtime
->hw_ptr_base
);
443 JOM(12, "ALSA decides %8ld =hw_ptr_interrupt\n",
444 pss
->runtime
->hw_ptr_interrupt
);
446 if (prt
->dma_bytes
!= 4 * ((int)prt
->period_size
) * ((int)prt
->periods
)) {
447 SAY("MISTAKE: unexpected ALSA parameters\n");
452 /*****************************************************************************/
453 static int easycap_alsa_ack(struct snd_pcm_substream
*pss
)
457 /*****************************************************************************/
458 static int easycap_alsa_trigger(struct snd_pcm_substream
*pss
, int cmd
)
460 struct easycap
*peasycap
;
463 JOT(4, "%i=cmd cf %i=START %i=STOP\n", cmd
, SNDRV_PCM_TRIGGER_START
,
464 SNDRV_PCM_TRIGGER_STOP
);
466 SAY("ERROR: pss is NULL\n");
469 peasycap
= snd_pcm_substream_chip(pss
);
471 SAY("ERROR: peasycap is NULL\n");
475 case SNDRV_PCM_TRIGGER_START
: {
476 peasycap
->audio_idle
= 0;
479 case SNDRV_PCM_TRIGGER_STOP
: {
480 peasycap
->audio_idle
= 1;
488 /*****************************************************************************/
489 static snd_pcm_uframes_t
easycap_alsa_pointer(struct snd_pcm_substream
*pss
)
491 struct easycap
*peasycap
;
492 snd_pcm_uframes_t offset
;
496 SAY("ERROR: pss is NULL\n");
499 peasycap
= snd_pcm_substream_chip(pss
);
501 SAY("ERROR: peasycap is NULL\n");
504 if ((0 != peasycap
->audio_eof
) || (0 != peasycap
->audio_idle
)) {
505 JOM(8, "returning -EIO because "
506 "%i=audio_idle %i=audio_eof\n",
507 peasycap
->audio_idle
, peasycap
->audio_eof
);
510 /*---------------------------------------------------------------------------*/
511 if (0 > peasycap
->dma_read
) {
512 JOM(8, "returning -EBUSY\n");
515 offset
= ((snd_pcm_uframes_t
)peasycap
->dma_read
)/4;
516 JOM(8, "ALSA decides %8i =hw_ptr_base\n", (int)pss
->runtime
->hw_ptr_base
);
517 JOM(8, "ALSA decides %8i =hw_ptr_interrupt\n",
518 (int)pss
->runtime
->hw_ptr_interrupt
);
519 JOM(8, "%7i=offset %7i=dma_read %7i=dma_next\n",
520 (int)offset
, peasycap
->dma_read
, peasycap
->dma_next
);
523 /*****************************************************************************/
525 easycap_alsa_page(struct snd_pcm_substream
*pss
, unsigned long offset
)
527 return vmalloc_to_page(pss
->runtime
->dma_area
+ offset
);
529 /*****************************************************************************/
531 static struct snd_pcm_ops easycap_alsa_pcm_ops
= {
532 .open
= easycap_alsa_open
,
533 .close
= easycap_alsa_close
,
534 .ioctl
= snd_pcm_lib_ioctl
,
535 .hw_params
= easycap_alsa_hw_params
,
536 .hw_free
= easycap_alsa_hw_free
,
537 .prepare
= easycap_alsa_prepare
,
538 .ack
= easycap_alsa_ack
,
539 .trigger
= easycap_alsa_trigger
,
540 .pointer
= easycap_alsa_pointer
,
541 .page
= easycap_alsa_page
,
544 /*****************************************************************************/
545 /*---------------------------------------------------------------------------*/
547 * THE FUNCTION snd_card_create() HAS THIS_MODULE AS AN ARGUMENT. THIS
548 * MEANS MODULE easycap. BEWARE.
550 /*---------------------------------------------------------------------------*/
551 int easycap_alsa_probe(struct easycap
*peasycap
)
554 struct snd_card
*psnd_card
;
555 struct snd_pcm
*psnd_pcm
;
558 SAY("ERROR: peasycap is NULL\n");
561 if (0 > peasycap
->minor
) {
562 SAY("ERROR: no minor\n");
566 peasycap
->alsa_hardware
= alsa_hardware
;
567 if (peasycap
->microphone
) {
568 peasycap
->alsa_hardware
.rates
= SNDRV_PCM_RATE_32000
;
569 peasycap
->alsa_hardware
.rate_min
= 32000;
570 peasycap
->alsa_hardware
.rate_max
= 32000;
572 peasycap
->alsa_hardware
.rates
= SNDRV_PCM_RATE_48000
;
573 peasycap
->alsa_hardware
.rate_min
= 48000;
574 peasycap
->alsa_hardware
.rate_max
= 48000;
577 if (0 != snd_card_create(SNDRV_DEFAULT_IDX1
, "easycap_alsa",
578 THIS_MODULE
, 0, &psnd_card
)) {
579 SAY("ERROR: Cannot do ALSA snd_card_create()\n");
583 sprintf(&psnd_card
->id
[0], "EasyALSA%i", peasycap
->minor
);
584 strcpy(&psnd_card
->driver
[0], EASYCAP_DRIVER_DESCRIPTION
);
585 strcpy(&psnd_card
->shortname
[0], "easycap_alsa");
586 sprintf(&psnd_card
->longname
[0], "%s", &psnd_card
->shortname
[0]);
588 psnd_card
->dev
= &peasycap
->pusb_device
->dev
;
589 psnd_card
->private_data
= peasycap
;
590 peasycap
->psnd_card
= psnd_card
;
592 rc
= snd_pcm_new(psnd_card
, "easycap_pcm", 0, 0, 1, &psnd_pcm
);
594 SAM("ERROR: Cannot do ALSA snd_pcm_new()\n");
595 snd_card_free(psnd_card
);
599 snd_pcm_set_ops(psnd_pcm
, SNDRV_PCM_STREAM_CAPTURE
,
600 &easycap_alsa_pcm_ops
);
601 psnd_pcm
->info_flags
= 0;
602 strcpy(&psnd_pcm
->name
[0], &psnd_card
->id
[0]);
603 psnd_pcm
->private_data
= peasycap
;
604 peasycap
->psnd_pcm
= psnd_pcm
;
605 peasycap
->psubstream
= NULL
;
607 rc
= snd_card_register(psnd_card
);
609 SAM("ERROR: Cannot do ALSA snd_card_register()\n");
610 snd_card_free(psnd_card
);
614 SAM("registered %s\n", &psnd_card
->id
[0]);
618 /*****************************************************************************/
619 /*****************************************************************************/
620 /*****************************************************************************/
621 /*****************************************************************************/
622 /*****************************************************************************/
623 /*****************************************************************************/
624 /*---------------------------------------------------------------------------*/
626 * COMMON AUDIO INITIALIZATION
628 /*---------------------------------------------------------------------------*/
630 easycap_sound_setup(struct easycap
*peasycap
)
634 JOM(4, "starting initialization\n");
637 SAY("ERROR: peasycap is NULL.\n");
640 if (!peasycap
->pusb_device
) {
641 SAM("ERROR: peasycap->pusb_device is NULL\n");
644 JOM(16, "0x%08lX=peasycap->pusb_device\n", (long int)peasycap
->pusb_device
);
646 rc
= audio_setup(peasycap
);
647 JOM(8, "audio_setup() returned %i\n", rc
);
649 if (!peasycap
->pusb_device
) {
650 SAM("ERROR: peasycap->pusb_device has become NULL\n");
653 /*---------------------------------------------------------------------------*/
654 if (!peasycap
->pusb_device
) {
655 SAM("ERROR: peasycap->pusb_device has become NULL\n");
658 rc
= usb_set_interface(peasycap
->pusb_device
, peasycap
->audio_interface
,
659 peasycap
->audio_altsetting_on
);
660 JOM(8, "usb_set_interface(.,%i,%i) returned %i\n", peasycap
->audio_interface
,
661 peasycap
->audio_altsetting_on
, rc
);
663 rc
= wakeup_device(peasycap
->pusb_device
);
664 JOM(8, "wakeup_device() returned %i\n", rc
);
666 peasycap
->audio_eof
= 0;
667 peasycap
->audio_idle
= 0;
669 peasycap
->timeval1
.tv_sec
= 0;
670 peasycap
->timeval1
.tv_usec
= 0;
672 submit_audio_urbs(peasycap
);
674 JOM(4, "finished initialization\n");
677 /*****************************************************************************/
678 /*---------------------------------------------------------------------------*/
680 * SUBMIT ALL AUDIO URBS.
682 /*---------------------------------------------------------------------------*/
684 submit_audio_urbs(struct easycap
*peasycap
)
686 struct data_urb
*pdata_urb
;
688 struct list_head
*plist_head
;
689 int j
, isbad
, nospc
, m
, rc
;
693 SAY("ERROR: peasycap is NULL\n");
696 if (!peasycap
->purb_audio_head
) {
697 SAM("ERROR: peasycap->urb_audio_head uninitialized\n");
700 if (!peasycap
->pusb_device
) {
701 SAM("ERROR: peasycap->pusb_device is NULL\n");
705 if (peasycap
->audio_isoc_streaming
) {
706 JOM(4, "already streaming audio urbs\n");
710 JOM(4, "initial submission of all audio urbs\n");
711 rc
= usb_set_interface(peasycap
->pusb_device
,
712 peasycap
->audio_interface
,
713 peasycap
->audio_altsetting_on
);
714 JOM(8, "usb_set_interface(.,%i,%i) returned %i\n",
715 peasycap
->audio_interface
,
716 peasycap
->audio_altsetting_on
, rc
);
721 list_for_each(plist_head
, peasycap
->purb_audio_head
) {
722 pdata_urb
= list_entry(plist_head
, struct data_urb
, list_head
);
723 if (pdata_urb
&& pdata_urb
->purb
) {
724 purb
= pdata_urb
->purb
;
725 isbuf
= pdata_urb
->isbuf
;
728 purb
->dev
= peasycap
->pusb_device
;
729 purb
->pipe
= usb_rcvisocpipe(peasycap
->pusb_device
,
730 peasycap
->audio_endpointnumber
);
731 purb
->transfer_flags
= URB_ISO_ASAP
;
732 purb
->transfer_buffer
= peasycap
->audio_isoc_buffer
[isbuf
].pgo
;
733 purb
->transfer_buffer_length
= peasycap
->audio_isoc_buffer_size
;
734 purb
->complete
= easycap_alsa_complete
;
735 purb
->context
= peasycap
;
736 purb
->start_frame
= 0;
737 purb
->number_of_packets
= peasycap
->audio_isoc_framesperdesc
;
738 for (j
= 0; j
< peasycap
->audio_isoc_framesperdesc
; j
++) {
739 purb
->iso_frame_desc
[j
].offset
= j
* peasycap
->audio_isoc_maxframesize
;
740 purb
->iso_frame_desc
[j
].length
= peasycap
->audio_isoc_maxframesize
;
743 rc
= usb_submit_urb(purb
, GFP_KERNEL
);
746 SAM("ERROR: usb_submit_urb() failed"
747 " for urb with rc: -%s: %d\n",
757 SAM("-ENOSPC=usb_submit_urb() for %i urbs\n", nospc
);
758 SAM("..... possibly inadequate USB bandwidth\n");
759 peasycap
->audio_eof
= 1;
762 JOM(4, "attempting cleanup instead of submitting\n");
763 list_for_each(plist_head
, (peasycap
->purb_audio_head
)) {
764 pdata_urb
= list_entry(plist_head
, struct data_urb
, list_head
);
765 if (pdata_urb
&& pdata_urb
->purb
)
766 usb_kill_urb(pdata_urb
->purb
);
768 peasycap
->audio_isoc_streaming
= 0;
770 peasycap
->audio_isoc_streaming
= m
;
771 JOM(4, "submitted %i audio urbs\n", m
);
776 /*****************************************************************************/
777 /*---------------------------------------------------------------------------*/
779 * KILL ALL AUDIO URBS.
781 /*---------------------------------------------------------------------------*/
783 kill_audio_urbs(struct easycap
*peasycap
)
786 struct list_head
*plist_head
;
787 struct data_urb
*pdata_urb
;
790 SAY("ERROR: peasycap is NULL\n");
794 if (!peasycap
->audio_isoc_streaming
) {
795 JOM(8, "%i=audio_isoc_streaming, no audio urbs killed\n",
796 peasycap
->audio_isoc_streaming
);
800 if (!peasycap
->purb_audio_head
) {
801 SAM("ERROR: peasycap->purb_audio_head is NULL\n");
805 peasycap
->audio_isoc_streaming
= 0;
806 JOM(4, "killing audio urbs\n");
808 list_for_each(plist_head
, (peasycap
->purb_audio_head
)) {
809 pdata_urb
= list_entry(plist_head
, struct data_urb
, list_head
);
810 if (pdata_urb
&& pdata_urb
->purb
) {
811 usb_kill_urb(pdata_urb
->purb
);
815 JOM(4, "%i audio urbs killed\n", m
);
819 /*****************************************************************************/