summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2014-05-06 16:20:36 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2014-09-18 13:38:00 -0400
commitac98be9a8a48f6f21babd2d5b41df0f5b85a3e42 (patch)
tree5588066df6f12cf03593eb99c1372a3af39c6e6a /tests
parent4e4d73f86c19d2615992445b89b2622fb45ac7e9 (diff)
downloadfarstream-ac98be9a8a48f6f21babd2d5b41df0f5b85a3e42.tar.gz
Add Application Media type
Diffstat (limited to 'tests')
-rw-r--r--tests/rtp/codec-discovery.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/rtp/codec-discovery.c b/tests/rtp/codec-discovery.c
index 2ff6a5da..d90c1d69 100644
--- a/tests/rtp/codec-discovery.c
+++ b/tests/rtp/codec-discovery.c
@@ -139,5 +139,23 @@ int main (int argc, char **argv)
g_print ("VIDEO FINISHED!!\n");
+
+ g_print ("APPLICATION STARTING!!\n");
+
+ elements = fs_rtp_blueprints_get (FS_MEDIA_TYPE_APPLICATION, &error);
+
+ if (error)
+ g_printerr ("Error: %s\n", error->message);
+ else
+ g_list_foreach (elements, (GFunc) debug_blueprint, NULL);
+
+ g_clear_error (&error);
+
+ fs_rtp_blueprints_unref (FS_MEDIA_TYPE_APPLICATION);
+
+ g_print ("APPLICATION FINISHED!!\n");
+
+
+
return 0;
}