From: David Schleef Date: Mon, 22 Dec 2003 02:27:18 +0000 (+0000) Subject: Convert "caps2" to "caps". X-Git-Tag: BRANCH-RELEASE-0_7_4-ROOT~250 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da9896d40aa299f416c77cb7dd9fdb132c4fa594;p=platform%2Fupstream%2Fgstreamer.git Convert "caps2" to "caps". Original commit message from CVS: Convert "caps2" to "caps". --- diff --git a/tests/old/testsuite/caps/caps.c b/tests/old/testsuite/caps/caps.c index 333e95d..d2f159c 100644 --- a/tests/old/testsuite/caps/caps.c +++ b/tests/old/testsuite/caps/caps.c @@ -4,126 +4,126 @@ void test1(void) { - GstCaps2 *caps; - GstCaps2 *caps2; + GstCaps *caps; + GstCaps *caps2; - g_print("type is %d\n", (int)gst_caps2_get_type()); + g_print("type is %d\n", (int)gst_caps_get_type()); - caps = gst_caps2_new_empty(); + caps = gst_caps_new_empty(); g_assert(caps != NULL); - gst_caps2_free(caps); + gst_caps_free(caps); - caps = gst_caps2_new_any(); + caps = gst_caps_new_any(); g_assert(caps != NULL); - gst_caps2_free(caps); + gst_caps_free(caps); - caps = gst_caps2_new_simple("audio/raw", + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_double", G_TYPE_DOUBLE, 100.0, NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_fourcc", GST_TYPE_FOURCC, GST_MAKE_FOURCC('a','b','c','d'), NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_boolean", G_TYPE_BOOLEAN, TRUE, NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_full( + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_full( gst_structure_new("audio/raw", "_int", G_TYPE_INT, 100, NULL), gst_structure_new("audio/raw2", "_int", G_TYPE_INT, 100, NULL), NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==TRUE); - g_assert(gst_caps2_is_fixed(caps)==FALSE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==TRUE); + g_assert(gst_caps_is_fixed(caps)==FALSE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); g_assert(caps != NULL); - caps2 = gst_caps2_copy(caps); + caps2 = gst_caps_copy(caps); g_assert(caps2 != NULL); - g_assert(gst_caps2_is_empty(caps2)==FALSE); - g_assert(gst_caps2_is_any(caps2)==FALSE); - g_assert(gst_caps2_is_chained(caps2)==FALSE); - g_assert(gst_caps2_is_fixed(caps2)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - g_print("%s\n", gst_caps2_to_string(caps2)); - gst_caps2_free(caps); - gst_caps2_free(caps2); - - caps = gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); - gst_caps2_append (caps, - gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 200, NULL)); + g_assert(gst_caps_is_empty(caps2)==FALSE); + g_assert(gst_caps_is_any(caps2)==FALSE); + g_assert(gst_caps_is_chained(caps2)==FALSE); + g_assert(gst_caps_is_fixed(caps2)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + g_print("%s\n", gst_caps_to_string(caps2)); + gst_caps_free(caps); + gst_caps_free(caps2); + + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); + gst_caps_append (caps, + gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 200, NULL)); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==TRUE); - g_assert(gst_caps2_is_fixed(caps)==FALSE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==TRUE); + g_assert(gst_caps_is_fixed(caps)==FALSE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); g_assert(caps != NULL); - gst_caps2_append_cap (caps, + gst_caps_append_structure (caps, gst_structure_new("audio/raw", "_int", G_TYPE_INT, 200, NULL)); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==TRUE); - g_assert(gst_caps2_is_fixed(caps)==FALSE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==TRUE); + g_assert(gst_caps_is_fixed(caps)==FALSE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); } void test2(void) { - GstCaps2 *caps1; - GstCaps2 *caps2; - GstCaps2 *caps; + GstCaps *caps1; + GstCaps *caps2; + GstCaps *caps; - caps1 = gst_caps2_new_full( + caps1 = gst_caps_new_full( gst_structure_new("audio/raw", "_int", G_TYPE_INT, 100, NULL), gst_structure_new("audio/raw", "_int", G_TYPE_INT, 200, NULL), NULL); - caps2 = gst_caps2_new_full( + caps2 = gst_caps_new_full( gst_structure_new("audio/raw", "_int", G_TYPE_INT, 100, NULL), gst_structure_new("audio/raw", "_int", G_TYPE_INT, 300, NULL), NULL); - caps = gst_caps2_intersect(caps1, caps2); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - gst_caps2_free(caps1); - gst_caps2_free(caps2); + caps = gst_caps_intersect(caps1, caps2); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + gst_caps_free(caps1); + gst_caps_free(caps2); } diff --git a/testsuite/caps/caps.c b/testsuite/caps/caps.c index 333e95d..d2f159c 100644 --- a/testsuite/caps/caps.c +++ b/testsuite/caps/caps.c @@ -4,126 +4,126 @@ void test1(void) { - GstCaps2 *caps; - GstCaps2 *caps2; + GstCaps *caps; + GstCaps *caps2; - g_print("type is %d\n", (int)gst_caps2_get_type()); + g_print("type is %d\n", (int)gst_caps_get_type()); - caps = gst_caps2_new_empty(); + caps = gst_caps_new_empty(); g_assert(caps != NULL); - gst_caps2_free(caps); + gst_caps_free(caps); - caps = gst_caps2_new_any(); + caps = gst_caps_new_any(); g_assert(caps != NULL); - gst_caps2_free(caps); + gst_caps_free(caps); - caps = gst_caps2_new_simple("audio/raw", + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_double", G_TYPE_DOUBLE, 100.0, NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_fourcc", GST_TYPE_FOURCC, GST_MAKE_FOURCC('a','b','c','d'), NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_boolean", G_TYPE_BOOLEAN, TRUE, NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==FALSE); - g_assert(gst_caps2_is_fixed(caps)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_full( + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==FALSE); + g_assert(gst_caps_is_fixed(caps)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_full( gst_structure_new("audio/raw", "_int", G_TYPE_INT, 100, NULL), gst_structure_new("audio/raw2", "_int", G_TYPE_INT, 100, NULL), NULL); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==TRUE); - g_assert(gst_caps2_is_fixed(caps)==FALSE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==TRUE); + g_assert(gst_caps_is_fixed(caps)==FALSE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); g_assert(caps != NULL); - caps2 = gst_caps2_copy(caps); + caps2 = gst_caps_copy(caps); g_assert(caps2 != NULL); - g_assert(gst_caps2_is_empty(caps2)==FALSE); - g_assert(gst_caps2_is_any(caps2)==FALSE); - g_assert(gst_caps2_is_chained(caps2)==FALSE); - g_assert(gst_caps2_is_fixed(caps2)==TRUE); - g_print("%s\n", gst_caps2_to_string(caps)); - g_print("%s\n", gst_caps2_to_string(caps2)); - gst_caps2_free(caps); - gst_caps2_free(caps2); - - caps = gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); - gst_caps2_append (caps, - gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 200, NULL)); + g_assert(gst_caps_is_empty(caps2)==FALSE); + g_assert(gst_caps_is_any(caps2)==FALSE); + g_assert(gst_caps_is_chained(caps2)==FALSE); + g_assert(gst_caps_is_fixed(caps2)==TRUE); + g_print("%s\n", gst_caps_to_string(caps)); + g_print("%s\n", gst_caps_to_string(caps2)); + gst_caps_free(caps); + gst_caps_free(caps2); + + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); + gst_caps_append (caps, + gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 200, NULL)); g_assert(caps != NULL); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==TRUE); - g_assert(gst_caps2_is_fixed(caps)==FALSE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - - caps = gst_caps2_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==TRUE); + g_assert(gst_caps_is_fixed(caps)==FALSE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + + caps = gst_caps_new_simple("audio/raw", "_int", G_TYPE_INT, 100, NULL); g_assert(caps != NULL); - gst_caps2_append_cap (caps, + gst_caps_append_structure (caps, gst_structure_new("audio/raw", "_int", G_TYPE_INT, 200, NULL)); - g_assert(gst_caps2_is_empty(caps)==FALSE); - g_assert(gst_caps2_is_any(caps)==FALSE); - g_assert(gst_caps2_is_chained(caps)==TRUE); - g_assert(gst_caps2_is_fixed(caps)==FALSE); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); + g_assert(gst_caps_is_empty(caps)==FALSE); + g_assert(gst_caps_is_any(caps)==FALSE); + g_assert(gst_caps_is_chained(caps)==TRUE); + g_assert(gst_caps_is_fixed(caps)==FALSE); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); } void test2(void) { - GstCaps2 *caps1; - GstCaps2 *caps2; - GstCaps2 *caps; + GstCaps *caps1; + GstCaps *caps2; + GstCaps *caps; - caps1 = gst_caps2_new_full( + caps1 = gst_caps_new_full( gst_structure_new("audio/raw", "_int", G_TYPE_INT, 100, NULL), gst_structure_new("audio/raw", "_int", G_TYPE_INT, 200, NULL), NULL); - caps2 = gst_caps2_new_full( + caps2 = gst_caps_new_full( gst_structure_new("audio/raw", "_int", G_TYPE_INT, 100, NULL), gst_structure_new("audio/raw", "_int", G_TYPE_INT, 300, NULL), NULL); - caps = gst_caps2_intersect(caps1, caps2); - g_print("%s\n", gst_caps2_to_string(caps)); - gst_caps2_free(caps); - gst_caps2_free(caps1); - gst_caps2_free(caps2); + caps = gst_caps_intersect(caps1, caps2); + g_print("%s\n", gst_caps_to_string(caps)); + gst_caps_free(caps); + gst_caps_free(caps1); + gst_caps_free(caps2); }