X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2Fcheck%2Felements%2Frtp-payloading.c;h=474f4b386a813b3d929cf6be6a3c5f60e99e8770;hb=225e98d62349b94aed9e4e8158b62626ca3b1218;hp=5c06ac851955921176f241d60d4b5ef7e23d2cea;hpb=8eca20ead0cf8ce170de394f342726d28c593677;p=platform%2Fupstream%2Fgstreamer.git diff --git a/tests/check/elements/rtp-payloading.c b/tests/check/elements/rtp-payloading.c index 5c06ac8..474f4b3 100644 --- a/tests/check/elements/rtp-payloading.c +++ b/tests/check/elements/rtp-payloading.c @@ -31,13 +31,11 @@ typedef struct { GstElement *pipeline; - GstElement *fdsrc; - GstElement *capsfilter; + GstElement *appsrc; GstElement *rtppay; GstElement *rtpdepay; GstElement *fakesink; - int fd[2]; - const char *frame_data; + const guint8 *frame_data; int frame_data_size; int frame_count; } rtp_pipeline; @@ -134,13 +132,11 @@ rtp_bus_callback (GstBus * bus, GstMessage * message, gpointer data) * The user must free the RTP pipeline when it's not used anymore. */ static rtp_pipeline * -rtp_pipeline_create (const char *frame_data, int frame_data_size, +rtp_pipeline_create (const guint8 * frame_data, int frame_data_size, int frame_count, const char *filtercaps, const char *pay, const char *depay) { gchar *pipeline_name; - rtp_pipeline *p; - GstCaps *caps; /* Check parameters. */ @@ -159,60 +155,39 @@ rtp_pipeline_create (const char *frame_data, int frame_data_size, pipeline_name = g_strdup_printf ("%s-%s-pipeline", pay, depay); p->pipeline = gst_pipeline_new (pipeline_name); g_free (pipeline_name); - p->fdsrc = gst_element_factory_make ("fdsrc", NULL); - p->capsfilter = gst_element_factory_make ("capsfilter", NULL); + p->appsrc = gst_element_factory_make ("appsrc", NULL); p->rtppay = gst_element_factory_make (pay, NULL); p->rtpdepay = gst_element_factory_make (depay, NULL); p->fakesink = gst_element_factory_make ("fakesink", NULL); /* One or more elements are not created successfully or failed to create p? */ - if (!p->pipeline || !p->fdsrc || !p->capsfilter || !p->rtppay || !p->rtpdepay - || !p->fakesink || pipe (p->fd) == -1) { + if (!p->pipeline || !p->appsrc || !p->rtppay || !p->rtpdepay || !p->fakesink) { /* Release created elements. */ RELEASE_ELEMENT (p->pipeline); - RELEASE_ELEMENT (p->fdsrc); - RELEASE_ELEMENT (p->capsfilter); + RELEASE_ELEMENT (p->appsrc); RELEASE_ELEMENT (p->rtppay); RELEASE_ELEMENT (p->rtpdepay); RELEASE_ELEMENT (p->fakesink); - /* Close pipe. */ - if (p->fd[0]) { - close (p->fd[0]); - } - - if (p->fd[1]) { - close (p->fd[1]); - } - /* Release allocated memory. */ free (p); return NULL; } - /* Set fdsrc properties. */ - g_object_set (p->fdsrc, "fd", p->fd[0], NULL); - g_object_set (p->fdsrc, "do-timestamp", TRUE, NULL); - g_object_set (p->fdsrc, "blocksize", p->frame_data_size, NULL); - g_object_set (p->fdsrc, "num-buffers", p->frame_count * LOOP_COUNT, NULL); - - /* Set caps filters. */ + /* Set src properties. */ caps = gst_caps_from_string (filtercaps); - - g_object_set (p->capsfilter, "caps", caps, NULL); + g_object_set (p->appsrc, "do-timestamp", TRUE, "caps", caps, NULL); gst_caps_unref (caps); /* Add elements to the pipeline. */ - gst_bin_add (GST_BIN (p->pipeline), p->fdsrc); - gst_bin_add (GST_BIN (p->pipeline), p->capsfilter); + gst_bin_add (GST_BIN (p->pipeline), p->appsrc); gst_bin_add (GST_BIN (p->pipeline), p->rtppay); gst_bin_add (GST_BIN (p->pipeline), p->rtpdepay); gst_bin_add (GST_BIN (p->pipeline), p->fakesink); /* Link elements. */ - gst_element_link (p->fdsrc, p->capsfilter); - gst_element_link (p->capsfilter, p->rtppay); + gst_element_link (p->appsrc, p->rtppay); gst_element_link (p->rtppay, p->rtpdepay); gst_element_link (p->rtpdepay, p->fakesink); @@ -234,15 +209,6 @@ rtp_pipeline_destroy (rtp_pipeline * p) /* Release pipeline. */ RELEASE_ELEMENT (p->pipeline); - /* Close pipe. */ - if (p->fd[0]) { - close (p->fd[0]); - } - - if (p->fd[1]) { - close (p->fd[1]); - } - /* Release allocated memory. */ free (p); } @@ -254,11 +220,10 @@ rtp_pipeline_destroy (rtp_pipeline * p) static void rtp_pipeline_run (rtp_pipeline * p) { + GstFlowReturn flow_ret; GMainLoop *mainloop = NULL; - GstBus *bus; - - gint i; + gint i, j; /* Check parameters. */ if (p == NULL) { @@ -280,22 +245,27 @@ rtp_pipeline_run (rtp_pipeline * p) /* Set pipeline to PLAYING. */ gst_element_set_state (p->pipeline, GST_STATE_PLAYING); - /* TODO: Writing may need some changes... */ - + /* Push data into the pipeline */ for (i = 0; i < LOOP_COUNT; i++) { - const char *frame_data_pointer = p->frame_data; - int res; - int frame_count = p->frame_count; - - /* Write in to the pipe. */ - while (frame_count > 0) { - res = write (p->fd[1], frame_data_pointer, p->frame_data_size); - fail_unless_equals_int (res, p->frame_data_size); - frame_data_pointer += p->frame_data_size; - frame_count--; + const guint8 *data = p->frame_data; + + for (j = 0; j < p->frame_count; j++) { + GstBuffer *buf; + + buf = + gst_buffer_new_wrapped_full ((guint8 *) data, NULL, 0, + p->frame_data_size); + + g_signal_emit_by_name (p->appsrc, "push-buffer", buf, &flow_ret); + fail_unless_equals_int (flow_ret, GST_FLOW_OK); + data += p->frame_data_size; + + gst_buffer_unref (buf); } } + g_signal_emit_by_name (p->appsrc, "end-of-stream", &flow_ret); + /* Run mainloop. */ g_main_loop_run (mainloop); @@ -344,8 +314,8 @@ rtp_pipeline_enable_lists (rtp_pipeline * p, guint mtu_size) * @use_lists enable buffer lists */ static void -rtp_pipeline_test (const char *frame_data, int frame_data_size, int frame_count, - const char *filtercaps, const char *pay, const char *depay, +rtp_pipeline_test (const guint8 * frame_data, int frame_data_size, + int frame_count, const char *filtercaps, const char *pay, const char *depay, guint bytes_sent, guint mtu_size, gboolean use_lists) { /* Create RTP pipeline. */ @@ -374,7 +344,7 @@ rtp_pipeline_test (const char *frame_data, int frame_data_size, int frame_count, } } -static char rtp_ilbc_frame_data[] = +static const guint8 rtp_ilbc_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -391,7 +361,7 @@ GST_START_TEST (rtp_ilbc) } GST_END_TEST; -static char rtp_gsm_frame_data[] = +static const guint8 rtp_gsm_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -408,7 +378,7 @@ GST_START_TEST (rtp_gsm) } GST_END_TEST; -static char rtp_amr_frame_data[] = +static const guint8 rtp_amr_frame_data[] = { 0x3c, 0x24, 0x03, 0xb3, 0x48, 0x10, 0x68, 0x46, 0x6c, 0xec, 0x03, 0x7a, 0x37, 0x16, 0x41, 0x41, 0xc0, 0x00, 0x0d, 0xcd, 0x12, 0xed, 0xad, 0x80, 0x00, 0x00, 0x11, 0x31, 0x00, 0x00, 0x0d, 0xa0 @@ -426,7 +396,7 @@ GST_START_TEST (rtp_amr) } GST_END_TEST; -static char rtp_pcma_frame_data[] = +static const guint8 rtp_pcma_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -443,7 +413,7 @@ GST_START_TEST (rtp_pcma) } GST_END_TEST; -static char rtp_pcmu_frame_data[] = +static const guint8 rtp_pcmu_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -460,7 +430,7 @@ GST_START_TEST (rtp_pcmu) } GST_END_TEST; -static char rtp_mpa_frame_data[] = +static const guint8 rtp_mpa_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -477,7 +447,7 @@ GST_START_TEST (rtp_mpa) } GST_END_TEST; -static char rtp_h263_frame_data[] = +static const guint8 rtp_h263_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -489,12 +459,12 @@ static int rtp_h263_frame_count = 1; GST_START_TEST (rtp_h263) { rtp_pipeline_test (rtp_h263_frame_data, rtp_h263_frame_data_size, - rtp_h263_frame_count, "video/x-h263,variant=itu,h263version=h263", + rtp_h263_frame_count, "video/x-h263,variant=(string)itu,h263version=h263", "rtph263pay", "rtph263depay", 0, 0, FALSE); } GST_END_TEST; -static char rtp_h263p_frame_data[] = +static const guint8 rtp_h263p_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -506,12 +476,12 @@ static int rtp_h263p_frame_count = 1; GST_START_TEST (rtp_h263p) { rtp_pipeline_test (rtp_h263p_frame_data, rtp_h263p_frame_data_size, - rtp_h263p_frame_count, "video/x-h263,variant=itu", "rtph263ppay", + rtp_h263p_frame_count, "video/x-h263,variant=(string)itu", "rtph263ppay", "rtph263pdepay", 0, 0, FALSE); } GST_END_TEST; -static char rtp_h264_frame_data[] = +static const guint8 rtp_h264_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -522,13 +492,14 @@ static int rtp_h264_frame_count = 1; GST_START_TEST (rtp_h264) { + /* FIXME 0.11: fully specify h264 caps (and make payloader check) */ rtp_pipeline_test (rtp_h264_frame_data, rtp_h264_frame_data_size, rtp_h264_frame_count, "video/x-h264", "rtph264pay", "rtph264depay", 0, 0, FALSE); } GST_END_TEST; -static char rtp_h264_list_lt_mtu_frame_data[] = +static const guint8 rtp_h264_list_lt_mtu_frame_data[] = /* not packetized, next NAL starts with 0001 */ { 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, @@ -546,6 +517,7 @@ static int rtp_h264_list_lt_mtu_mtu_size = 1024; GST_START_TEST (rtp_h264_list_lt_mtu) { + /* FIXME 0.11: fully specify h264 caps (and make payloader check) */ rtp_pipeline_test (rtp_h264_list_lt_mtu_frame_data, rtp_h264_list_lt_mtu_frame_data_size, rtp_h264_list_lt_mtu_frame_count, "video/x-h264", "rtph264pay", "rtph264depay", @@ -553,7 +525,7 @@ GST_START_TEST (rtp_h264_list_lt_mtu) } GST_END_TEST; -static char rtp_h264_list_gt_mtu_frame_data[] = +static const guint8 rtp_h264_list_gt_mtu_frame_data[] = /* not packetized, next NAL starts with 0001 */ { 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -574,6 +546,7 @@ static int rtp_h264_list_gt_mtu_mty_size = 28; GST_START_TEST (rtp_h264_list_gt_mtu) { + /* FIXME 0.11: fully specify h264 caps (and make payloader check) */ rtp_pipeline_test (rtp_h264_list_gt_mtu_frame_data, rtp_h264_list_gt_mtu_frame_data_size, rtp_h264_list_gt_mtu_frame_count, "video/x-h264", "rtph264pay", "rtph264depay", @@ -581,7 +554,7 @@ GST_START_TEST (rtp_h264_list_gt_mtu) } GST_END_TEST; -static char rtp_L16_frame_data[] = +static const guint8 rtp_L16_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -599,7 +572,7 @@ GST_START_TEST (rtp_L16) } GST_END_TEST; -static char rtp_mp2t_frame_data[] = +static const guint8 rtp_mp2t_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -616,7 +589,7 @@ GST_START_TEST (rtp_mp2t) } GST_END_TEST; -static char rtp_mp4v_frame_data[] = +static const guint8 rtp_mp4v_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -633,7 +606,7 @@ GST_START_TEST (rtp_mp4v) } GST_END_TEST; -static char rtp_mp4v_list_frame_data[] = +static const guint8 rtp_mp4v_list_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -653,7 +626,7 @@ GST_START_TEST (rtp_mp4v_list) } GST_END_TEST; -static char rtp_mp4g_frame_data[] = +static const guint8 rtp_mp4g_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -671,7 +644,7 @@ GST_START_TEST (rtp_mp4g) } GST_END_TEST; -static char rtp_theora_frame_data[] = +static const guint8 rtp_theora_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -688,7 +661,7 @@ GST_START_TEST (rtp_theora) } GST_END_TEST; -static char rtp_vorbis_frame_data[] = +static const guint8 rtp_vorbis_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; @@ -705,7 +678,7 @@ GST_START_TEST (rtp_vorbis) } GST_END_TEST; -static char rtp_jpeg_frame_data[] = +static const guint8 rtp_jpeg_frame_data[] = { /* SOF */ 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0x08, 0x00, 0x08, 0x03, 0x00, 0x21, 0x08, 0x01, 0x11, 0x08, 0x02, 0x11, 0x08, /* DQT */ 0xFF, 0xDB, 0x00, 0x43, 0x08, @@ -732,7 +705,7 @@ GST_START_TEST (rtp_jpeg) } GST_END_TEST; -static char rtp_jpeg_list_frame_data[] = +static const guint8 rtp_jpeg_list_frame_data[] = { /* SOF */ 0xFF, 0xC0, 0x00, 0x11, 0x08, 0x00, 0x08, 0x00, 0x08, 0x03, 0x00, 0x21, 0x08, 0x01, 0x11, 0x08, 0x02, 0x11, 0x08, /* DQT */ 0xFF, 0xDB, 0x00, 0x43, 0x08, @@ -761,7 +734,7 @@ GST_START_TEST (rtp_jpeg_list) } GST_END_TEST; -static char rtp_g729_frame_data[] = +static const guint8 rtp_g729_frame_data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };