summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/tests/extended-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/extended-test.c b/src/tests/extended-test.c
index ec3cc53c..f99a85c3 100644
--- a/src/tests/extended-test.c
+++ b/src/tests/extended-test.c
@@ -126,9 +126,9 @@ static void context_state_callback(pa_context *c, void *userdata) {
formats[0] = pa_format_info_new();
formats[0]->encoding = PA_ENCODING_PCM;
- pa_proplist_sets(formats[0]->plist, PA_PROP_FORMAT_SAMPLE_FORMAT, pa_sample_format_to_string(PA_SAMPLE_FLOAT32));
- pa_proplist_setf(formats[0]->plist, PA_PROP_FORMAT_RATE, "%u", SAMPLE_HZ);
- pa_proplist_setf(formats[0]->plist, PA_PROP_FORMAT_CHANNELS, "%u", 1);
+ pa_format_info_set_sample_format(formats[0], PA_SAMPLE_FLOAT32);
+ pa_format_info_set_rate(formats[0], SAMPLE_HZ);
+ pa_format_info_set_channels(formats[0], 1);
fprintf(stderr, "Creating stream %i\n", i);