mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
tests: fix up mpg123 test a little
- dist input files - fix sample leak - simplify check for elements - only run mpg123 test if mpg123 is available and selected - fix build in uninstalled setup https://bugzilla.gnome.org/show_bug.cgi?id=686595
This commit is contained in:
parent
21bd9a8486
commit
d24e774074
1 changed files with 11 additions and 50 deletions
|
@ -313,6 +313,8 @@ run_decoding_test (GstElement * mpg123audiodec, gchar const *filename)
|
||||||
fail_unless_equals_int (gst_pad_push (mysrcpad, input_buffer), GST_FLOW_OK);
|
fail_unless_equals_int (gst_pad_push (mysrcpad, input_buffer), GST_FLOW_OK);
|
||||||
|
|
||||||
++num_input_buffers;
|
++num_input_buffers;
|
||||||
|
|
||||||
|
gst_sample_unref (sample);
|
||||||
}
|
}
|
||||||
|
|
||||||
num_decoded_buffers = g_list_length (buffers);
|
num_decoded_buffers = g_list_length (buffers);
|
||||||
|
@ -507,43 +509,22 @@ is_test_file_available (gchar const *filename)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static Suite *
|
static Suite *
|
||||||
mpg123audiodec_suite (void)
|
mpg123audiodec_suite (void)
|
||||||
{
|
{
|
||||||
gboolean has_necessary_elements = TRUE;
|
GstRegistry *registry;
|
||||||
Suite *s = suite_create ("mpg123audiodec");
|
Suite *s = suite_create ("mpg123audiodec");
|
||||||
TCase *tc_chain = tcase_create ("general");
|
TCase *tc_chain = tcase_create ("general");
|
||||||
|
|
||||||
/* check if mpegaudioparse, appsink, and filesrc elments are available */
|
registry = gst_registry_get ();
|
||||||
{
|
|
||||||
gchar const **element;
|
|
||||||
gchar const *elements[] = { "filesrc", "mpegaudioparse", "appsink", NULL };
|
|
||||||
|
|
||||||
for (element = elements; *element != NULL; ++element) {
|
|
||||||
GstElement *e;
|
|
||||||
GstStateChangeReturn ret;
|
|
||||||
|
|
||||||
e = gst_element_factory_make (*element, NULL);
|
|
||||||
if (e == NULL) {
|
|
||||||
has_necessary_elements = FALSE;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = gst_element_set_state (e, GST_STATE_READY);
|
|
||||||
if (ret == GST_STATE_CHANGE_SUCCESS) {
|
|
||||||
gst_element_set_state (e, GST_STATE_NULL);
|
|
||||||
gst_object_unref (GST_OBJECT (e));
|
|
||||||
} else {
|
|
||||||
gst_object_unref (GST_OBJECT (e));
|
|
||||||
has_necessary_elements = FALSE;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
suite_add_tcase (s, tc_chain);
|
suite_add_tcase (s, tc_chain);
|
||||||
if (has_necessary_elements) {
|
if (gst_registry_check_feature_version (registry, "filesrc",
|
||||||
|
GST_VERSION_MAJOR, GST_VERSION_MINOR, 0) &&
|
||||||
|
gst_registry_check_feature_version (registry, "mpegaudioparse",
|
||||||
|
GST_VERSION_MAJOR, GST_VERSION_MINOR, 0) &&
|
||||||
|
gst_registry_check_feature_version (registry, "appsrc",
|
||||||
|
GST_VERSION_MAJOR, GST_VERSION_MINOR, 0)) {
|
||||||
if (is_test_file_available (MP2_STREAM_FILENAME))
|
if (is_test_file_available (MP2_STREAM_FILENAME))
|
||||||
tcase_add_test (tc_chain, test_decode_mpeg1layer2);
|
tcase_add_test (tc_chain, test_decode_mpeg1layer2);
|
||||||
if (is_test_file_available (MP3_CBR_STREAM_FILENAME))
|
if (is_test_file_available (MP3_CBR_STREAM_FILENAME))
|
||||||
|
@ -558,24 +539,4 @@ mpg123audiodec_suite (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
GST_CHECK_MAIN (mpg123audiodec)
|
||||||
main (int argc, char **argv)
|
|
||||||
{
|
|
||||||
int nf;
|
|
||||||
Suite *s;
|
|
||||||
SRunner *sr;
|
|
||||||
|
|
||||||
gst_check_init (&argc, &argv);
|
|
||||||
|
|
||||||
s = mpg123audiodec_suite ();
|
|
||||||
if (s == NULL)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
sr = srunner_create (s);
|
|
||||||
|
|
||||||
srunner_run_all (sr, CK_NORMAL);
|
|
||||||
nf = srunner_ntests_failed (sr);
|
|
||||||
srunner_free (sr);
|
|
||||||
|
|
||||||
return nf;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue