assrender: reenable unit tests and up rank to primary again

This commit is contained in:
Arnaud Vrac 2013-01-17 19:02:48 +01:00 committed by Tim-Philipp Müller
parent 143c0cbd45
commit 8d837cbac4
2 changed files with 3 additions and 4 deletions

View file

@ -1490,9 +1490,8 @@ plugin_init (GstPlugin * plugin)
GST_DEBUG_CATEGORY_INIT (gst_ass_render_lib_debug, "assrender_library",
0, "ASS/SSA subtitle renderer library");
/* FIXME: fix unit tests before upping rank again */
return gst_element_register (plugin, "assrender",
GST_RANK_NONE, GST_TYPE_ASS_RENDER);
GST_RANK_PRIMARY, GST_TYPE_ASS_RENDER);
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,

View file

@ -289,8 +289,8 @@ assrender_suite (void)
tcase_set_timeout (tc_chain, 120);
suite_add_tcase (s, tc_chain);
tcase_skip_broken_test (tc_chain, test_assrender_basic_xRGB);
tcase_skip_broken_test (tc_chain, test_assrender_basic_I420);
tcase_add_test (tc_chain, test_assrender_basic_xRGB);
tcase_add_test (tc_chain, test_assrender_basic_I420);
return s;
}