mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
64-bit fixes.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@611 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
f59bc1ff2b
commit
1bb14c3a1d
4 changed files with 7 additions and 7 deletions
|
|
@ -64,7 +64,7 @@ static const pa_buffer_attr buffer_attr = {
|
|||
static void nop_free_cb(void *p) {}
|
||||
|
||||
static void underflow_cb(struct pa_stream *s, void *userdata) {
|
||||
int i = (int) userdata;
|
||||
int i = (int) (long) userdata;
|
||||
|
||||
fprintf(stderr, "Stream %i finished\n", i);
|
||||
|
||||
|
|
@ -86,7 +86,7 @@ static void stream_state_callback(pa_stream *s, void *userdata) {
|
|||
|
||||
case PA_STREAM_READY: {
|
||||
|
||||
int r, i = (int) userdata;
|
||||
int r, i = (int) (long) userdata;
|
||||
|
||||
fprintf(stderr, "Writing data to stream %i.\n", i);
|
||||
|
||||
|
|
@ -136,7 +136,7 @@ static void context_state_callback(pa_context *c, void *userdata) {
|
|||
|
||||
streams[i] = pa_stream_new(c, name, &sample_spec, NULL);
|
||||
assert(streams[i]);
|
||||
pa_stream_set_state_callback(streams[i], stream_state_callback, (void*) i);
|
||||
pa_stream_set_state_callback(streams[i], stream_state_callback, (void*) (long) i);
|
||||
pa_stream_connect_playback(streams[i], NULL, &buffer_attr, PA_STREAM_START_CORKED, NULL, i == 0 ? NULL : streams[0]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue