Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5530f41b
Commit
5530f41b
authored
Apr 27, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/caiaq' into for-linus
* fix/caiaq: ALSA: snd-usb-caiaq: fix reported elapsed periods
parents
0995f9db
a9b487fa
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
sound/usb/caiaq/audio.c
sound/usb/caiaq/audio.c
+7
-5
sound/usb/caiaq/device.c
sound/usb/caiaq/device.c
+1
-1
No files found.
sound/usb/caiaq/audio.c
View file @
5530f41b
...
...
@@ -195,10 +195,13 @@ static int snd_usb_caiaq_pcm_prepare(struct snd_pcm_substream *substream)
debug
(
"%s(%p)
\n
"
,
__func__
,
substream
);
if
(
substream
->
stream
==
SNDRV_PCM_STREAM_PLAYBACK
)
if
(
substream
->
stream
==
SNDRV_PCM_STREAM_PLAYBACK
)
{
dev
->
period_out_count
[
index
]
=
BYTES_PER_SAMPLE
+
1
;
dev
->
audio_out_buf_pos
[
index
]
=
BYTES_PER_SAMPLE
+
1
;
else
}
else
{
dev
->
period_in_count
[
index
]
=
BYTES_PER_SAMPLE
;
dev
->
audio_in_buf_pos
[
index
]
=
BYTES_PER_SAMPLE
;
}
if
(
dev
->
streaming
)
return
0
;
...
...
@@ -300,8 +303,7 @@ static void check_for_elapsed_periods(struct snd_usb_caiaqdev *dev,
if
(
!
sub
)
continue
;
pb
=
frames_to_bytes
(
sub
->
runtime
,
sub
->
runtime
->
period_size
);
pb
=
snd_pcm_lib_period_bytes
(
sub
);
cnt
=
(
sub
->
stream
==
SNDRV_PCM_STREAM_PLAYBACK
)
?
&
dev
->
period_out_count
[
stream
]
:
&
dev
->
period_in_count
[
stream
];
...
...
sound/usb/caiaq/device.c
View file @
5530f41b
...
...
@@ -35,7 +35,7 @@
#include "input.h"
MODULE_AUTHOR
(
"Daniel Mack <daniel@caiaq.de>"
);
MODULE_DESCRIPTION
(
"caiaq USB audio, version 1.3.1
3
"
);
MODULE_DESCRIPTION
(
"caiaq USB audio, version 1.3.1
4
"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_SUPPORTED_DEVICE
(
"{{Native Instruments, RigKontrol2},"
"{Native Instruments, RigKontrol3},"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment