tests: Update extended API test
authorArun Raghavan <arun.raghavan@collabora.co.uk>
Thu, 2 Jun 2011 14:06:08 +0000 (19:36 +0530)
committerArun Raghavan <arun.raghavan@collabora.co.uk>
Sun, 12 Jun 2011 18:11:18 +0000 (11:11 -0700)
The test wasn't updated after we changed the pa_format_info proplist
format.

src/tests/extended-test.c

index ec3cc53..f99a85c 100644 (file)
@@ -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);