diff options
author | Matthew Gregan <[email protected]> | 2016-01-21 13:59:36 +1300 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2016-01-21 13:59:36 +1300 |
commit | ff08f6601f7bfefafdd364cf11a621f6e063dc9b (patch) | |
tree | 1091824bfc9eeaae4164c277e9b3ed776353ee39 /src/cubeb-internal.h | |
parent | d29ab0efd861eb9bb6bf3e5ace179dd92820110c (diff) | |
download | cubeb-ff08f6601f7bfefafdd364cf11a621f6e063dc9b.tar.gz cubeb-ff08f6601f7bfefafdd364cf11a621f6e063dc9b.zip |
cubeb_stream_init should take a cubeb_devid rather than a char const *.
Diffstat (limited to 'src/cubeb-internal.h')
-rw-r--r-- | src/cubeb-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cubeb-internal.h b/src/cubeb-internal.h index a0c4416..11e8c99 100644 --- a/src/cubeb-internal.h +++ b/src/cubeb-internal.h @@ -23,9 +23,9 @@ struct cubeb_ops { cubeb_device_collection ** collection); void (* destroy)(cubeb * context); int (* stream_init)(cubeb * context, cubeb_stream ** stream, char const * stream_name, - char const * input_device_name, + cubeb_devid input_device, cubeb_stream_params * input_stream_params, - char const * output_device_name, + cubeb_devid output_device, cubeb_stream_params * output_stream_params, unsigned int latency, cubeb_data_callback data_callback, |