From 5c8b4abab2d23006e49619092477fdef6aea40eb Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 2 Jun 2011 19:36:08 +0530 Subject: tests: Update extended API test The test wasn't updated after we changed the pa_format_info proplist format. --- src/tests/extended-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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); -- cgit