mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
tests: hlsdemux: add tests for seek with reverse rate and snap flags
Add tests to ensure snap flags work as expected for reverse rates
This commit is contained in:
parent
f57109ad2e
commit
eb56cfe201
1 changed files with 22 additions and 0 deletions
|
@ -495,6 +495,26 @@ GST_START_TEST (testSeekSnapAfterPosition)
|
|||
|
||||
GST_END_TEST;
|
||||
|
||||
|
||||
GST_START_TEST (testReverseSeekSnapBeforePosition)
|
||||
{
|
||||
run_seek_position_test (-1.0, 1000 * GST_MSECOND, GST_SEEK_TYPE_SET,
|
||||
2500 * GST_MSECOND, GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_SNAP_BEFORE,
|
||||
1000 * GST_MSECOND, 3000 * GST_MSECOND, 2);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
|
||||
GST_START_TEST (testReverseSeekSnapAfterPosition)
|
||||
{
|
||||
run_seek_position_test (-1.0, 1000 * GST_MSECOND, GST_SEEK_TYPE_SET,
|
||||
2500 * GST_MSECOND, GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_SNAP_AFTER,
|
||||
1000 * GST_MSECOND, 2000 * GST_MSECOND, 1);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static void
|
||||
testDownloadErrorMessageCallback (GstAdaptiveDemuxTestEngine * engine,
|
||||
GstMessage * msg, gpointer user_data)
|
||||
|
@ -696,6 +716,8 @@ hls_demux_suite (void)
|
|||
tcase_add_test (tc_basicTest, testSeekPosition);
|
||||
tcase_add_test (tc_basicTest, testSeekSnapBeforePosition);
|
||||
tcase_add_test (tc_basicTest, testSeekSnapAfterPosition);
|
||||
tcase_add_test (tc_basicTest, testReverseSeekSnapBeforePosition);
|
||||
tcase_add_test (tc_basicTest, testReverseSeekSnapAfterPosition);
|
||||
|
||||
tcase_add_unchecked_fixture (tc_basicTest, gst_adaptive_demux_test_setup,
|
||||
gst_adaptive_demux_test_teardown);
|
||||
|
|
Loading…
Reference in a new issue