aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBrendan Early <[email protected]>2020-09-30 19:52:00 -0500
committerMatthew Gregan <[email protected]>2020-10-07 11:27:54 +1300
commit01e0997c75abeff9c361568f2bdc645f6c3c0ade (patch)
tree2e3312fa69baab86f4425004afd87f0c4eddbcdf
parent2e842a01f743a734e3720f817c22224af0a80298 (diff)
downloadcubeb-01e0997c75abeff9c361568f2bdc645f6c3c0ade.tar.gz
cubeb-01e0997c75abeff9c361568f2bdc645f6c3c0ade.zip
Add stream_set_name = null to cubeb_ops structs
-rw-r--r--src/cubeb_alsa.c1
-rw-r--r--src/cubeb_audiotrack.c1
-rw-r--r--src/cubeb_audiounit.cpp1
-rw-r--r--src/cubeb_jack.cpp1
-rw-r--r--src/cubeb_kai.c1
-rw-r--r--src/cubeb_opensl.c1
-rw-r--r--src/cubeb_sndio.c1
-rw-r--r--src/cubeb_sun.c1
-rw-r--r--src/cubeb_wasapi.cpp1
-rw-r--r--src/cubeb_winmm.c1
10 files changed, 10 insertions, 0 deletions
diff --git a/src/cubeb_alsa.c b/src/cubeb_alsa.c
index 4b479dc..deac271 100644
--- a/src/cubeb_alsa.c
+++ b/src/cubeb_alsa.c
@@ -1446,6 +1446,7 @@ static struct cubeb_ops const alsa_ops = {
.stream_get_latency = alsa_stream_get_latency,
.stream_get_input_latency = NULL,
.stream_set_volume = alsa_stream_set_volume,
+ .stream_set_name = NULL,
.stream_get_current_device = NULL,
.stream_device_destroy = NULL,
.stream_register_device_changed_callback = NULL,
diff --git a/src/cubeb_audiotrack.c b/src/cubeb_audiotrack.c
index 352473d..6496df0 100644
--- a/src/cubeb_audiotrack.c
+++ b/src/cubeb_audiotrack.c
@@ -435,6 +435,7 @@ static struct cubeb_ops const audiotrack_ops = {
.stream_get_latency = audiotrack_stream_get_latency,
.stream_get_input_latency = NULL,
.stream_set_volume = audiotrack_stream_set_volume,
+ .stream_set_name = NULL,
.stream_get_current_device = NULL,
.stream_device_destroy = NULL,
.stream_register_device_changed_callback = NULL,
diff --git a/src/cubeb_audiounit.cpp b/src/cubeb_audiounit.cpp
index 4b506d0..f0586a1 100644
--- a/src/cubeb_audiounit.cpp
+++ b/src/cubeb_audiounit.cpp
@@ -3623,6 +3623,7 @@ cubeb_ops const audiounit_ops = {
/*.stream_get_latency =*/ audiounit_stream_get_latency,
/*.stream_get_input_latency =*/ NULL,
/*.stream_set_volume =*/ audiounit_stream_set_volume,
+ /*.stream_set_name =*/ NULL,
/*.stream_get_current_device =*/ audiounit_stream_get_current_device,
/*.stream_device_destroy =*/ audiounit_stream_device_destroy,
/*.stream_register_device_changed_callback =*/ audiounit_stream_register_device_changed_callback,
diff --git a/src/cubeb_jack.cpp b/src/cubeb_jack.cpp
index 300aab1..96d96e6 100644
--- a/src/cubeb_jack.cpp
+++ b/src/cubeb_jack.cpp
@@ -134,6 +134,7 @@ static struct cubeb_ops const cbjack_ops = {
.stream_get_latency = cbjack_get_latency,
.stream_get_input_latency = NULL,
.stream_set_volume = cbjack_stream_set_volume,
+ .stream_set_name = NULL,
.stream_get_current_device = cbjack_stream_get_current_device,
.stream_device_destroy = cbjack_stream_device_destroy,
.stream_register_device_changed_callback = NULL,
diff --git a/src/cubeb_kai.c b/src/cubeb_kai.c
index 0a621c9..36eaf12 100644
--- a/src/cubeb_kai.c
+++ b/src/cubeb_kai.c
@@ -363,6 +363,7 @@ static struct cubeb_ops const kai_ops = {
/*.stream_get_latency = */ kai_stream_get_latency,
/*.stream_get_input_latency = */ NULL,
/*.stream_set_volume =*/ kai_stream_set_volume,
+ /*.stream_set_name =*/ NULL,
/*.stream_get_current_device =*/ NULL,
/*.stream_device_destroy =*/ NULL,
/*.stream_register_device_changed_callback=*/ NULL,
diff --git a/src/cubeb_opensl.c b/src/cubeb_opensl.c
index 65520cf..f34ab7a 100644
--- a/src/cubeb_opensl.c
+++ b/src/cubeb_opensl.c
@@ -1756,6 +1756,7 @@ static struct cubeb_ops const opensl_ops = {
.stream_get_latency = opensl_stream_get_latency,
.stream_get_input_latency = NULL,
.stream_set_volume = opensl_stream_set_volume,
+ .stream_set_name = NULL,
.stream_get_current_device = NULL,
.stream_device_destroy = NULL,
.stream_register_device_changed_callback = NULL,
diff --git a/src/cubeb_sndio.c b/src/cubeb_sndio.c
index 6f4c1e5..41fa59a 100644
--- a/src/cubeb_sndio.c
+++ b/src/cubeb_sndio.c
@@ -662,6 +662,7 @@ static struct cubeb_ops const sndio_ops = {
.stream_get_position = sndio_stream_get_position,
.stream_get_latency = sndio_stream_get_latency,
.stream_set_volume = sndio_stream_set_volume,
+ .stream_set_name = NULL,
.stream_get_current_device = NULL,
.stream_device_destroy = NULL,
.stream_register_device_changed_callback = NULL,
diff --git a/src/cubeb_sun.c b/src/cubeb_sun.c
index a0d77ee..206de44 100644
--- a/src/cubeb_sun.c
+++ b/src/cubeb_sun.c
@@ -723,6 +723,7 @@ static struct cubeb_ops const sun_ops = {
.stream_get_latency = sun_stream_get_latency,
.stream_get_input_latency = NULL,
.stream_set_volume = sun_stream_set_volume,
+ .stream_set_name = NULL,
.stream_get_current_device = sun_get_current_device,
.stream_device_destroy = sun_stream_device_destroy,
.stream_register_device_changed_callback = NULL,
diff --git a/src/cubeb_wasapi.cpp b/src/cubeb_wasapi.cpp
index 653dd99..10bf331 100644
--- a/src/cubeb_wasapi.cpp
+++ b/src/cubeb_wasapi.cpp
@@ -3211,6 +3211,7 @@ cubeb_ops const wasapi_ops = {
/*.stream_get_latency =*/ wasapi_stream_get_latency,
/*.stream_get_input_latency =*/ wasapi_stream_get_input_latency,
/*.stream_set_volume =*/ wasapi_stream_set_volume,
+ /*.stream_set_name =*/ NULL,
/*.stream_get_current_device =*/ NULL,
/*.stream_device_destroy =*/ NULL,
/*.stream_register_device_changed_callback =*/ NULL,
diff --git a/src/cubeb_winmm.c b/src/cubeb_winmm.c
index 363fcd4..a94c2a1 100644
--- a/src/cubeb_winmm.c
+++ b/src/cubeb_winmm.c
@@ -1061,6 +1061,7 @@ static struct cubeb_ops const winmm_ops = {
/*.stream_get_latency = */ winmm_stream_get_latency,
/*.stream_get_input_latency = */ NULL,
/*.stream_set_volume =*/ winmm_stream_set_volume,
+ /*.stream_set_name =*/ NULL,
/*.stream_get_current_device =*/ NULL,
/*.stream_device_destroy =*/ NULL,
/*.stream_register_device_changed_callback=*/ NULL,