From: Arun Raghavan Date: Thu, 2 Jun 2011 14:06:08 +0000 (+0530) Subject: tests: Update extended API test X-Git-Tag: 1.0_branch~560 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c8b4abab2d23006e49619092477fdef6aea40eb;p=profile%2Fivi%2Fpulseaudio.git tests: Update extended API test The test wasn't updated after we changed the pa_format_info proplist format. --- diff --git a/src/tests/extended-test.c b/src/tests/extended-test.c index ec3cc53..f99a85c 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);