|
@@ -192,13 +192,10 @@ static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
|
|
|
urb_frames = urb_size / bytes_per_frame;
|
|
|
urb_out->transfer_buffer =
|
|
|
line6pcm->buffer_out +
|
|
|
- LINE6_ISO_PACKETS * line6pcm->max_packet_size * line6pcm->index_out;
|
|
|
+ index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
|
|
|
urb_out->transfer_buffer_length = urb_size;
|
|
|
urb_out->context = line6pcm;
|
|
|
|
|
|
- if (++line6pcm->index_out == LINE6_ISO_BUFFERS)
|
|
|
- line6pcm->index_out = 0;
|
|
|
-
|
|
|
if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags) &&
|
|
|
!test_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags)) {
|
|
|
struct snd_pcm_runtime *runtime =
|