Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Thibault Saunier
gst-devtools
Commits
98435626
Commit
98435626
authored
Jan 03, 2019
by
Thibault Saunier
🌵
Committed by
Thibault Saunier
Jan 03, 2019
Browse files
validate:tests: s/discount_buffer/discont_buffer/
parent
26ddc02c
Pipeline
#13791
passed with stages
in 30 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
validate/tests/check/validate/padmonitor.c
View file @
98435626
...
...
@@ -83,7 +83,7 @@ _check_reports_refcount (GstPad * pad, gint refcount)
}
static
GstBuffer
*
gst_disco
u
nt_buffer_new
(
void
)
gst_discont_buffer_new
(
void
)
{
GstBuffer
*
buffer
=
gst_buffer_new
();
...
...
@@ -125,7 +125,7 @@ GST_START_TEST (buffer_before_segment)
{
_gst_check_expecting_log
=
TRUE
;
fail_unless_equals_int
(
gst_pad_push
(
srcpad
,
gst_disco
u
nt_buffer_new
()),
GST_FLOW_OK
);
gst_discont_buffer_new
()),
GST_FLOW_OK
);
reports
=
gst_validate_runner_get_reports
(
runner
);
assert_equals_int
(
g_list_length
(
reports
),
1
);
...
...
@@ -139,7 +139,7 @@ GST_START_TEST (buffer_before_segment)
{
_gst_check_expecting_log
=
FALSE
;
gst_check_setup_events
(
srcpad
,
sink
,
NULL
,
GST_FORMAT_TIME
);
fail_unless_equals_int
(
gst_pad_push
(
srcpad
,
gst_disco
u
nt_buffer_new
()),
fail_unless_equals_int
(
gst_pad_push
(
srcpad
,
gst_discont_buffer_new
()),
GST_FLOW_OK
);
reports
=
gst_validate_runner_get_reports
(
runner
);
assert_equals_int
(
g_list_length
(
reports
),
1
);
...
...
@@ -209,7 +209,7 @@ GST_START_TEST (buffer_outside_segment)
/* Pushing a buffer that is outside the segment */
{
buffer
=
gst_disco
u
nt_buffer_new
();
buffer
=
gst_discont_buffer_new
();
GST_BUFFER_PTS
(
buffer
)
=
10
*
GST_SECOND
;
GST_BUFFER_DURATION
(
buffer
)
=
GST_SECOND
;
fail_unless
(
gst_pad_push
(
srcpad
,
buffer
));
...
...
@@ -224,7 +224,7 @@ GST_START_TEST (buffer_outside_segment)
/* Pushing a buffer inside the segment */
{
fail_unless
(
gst_pad_push
(
srcpad
,
gst_disco
u
nt_buffer_new
()));
fail_unless
(
gst_pad_push
(
srcpad
,
gst_discont_buffer_new
()));
reports
=
gst_validate_runner_get_reports
(
runner
);
assert_equals_int
(
g_list_length
(
reports
),
1
);
g_list_free_full
(
reports
,
(
GDestroyNotify
)
gst_validate_report_unref
);
...
...
@@ -322,7 +322,7 @@ _test_flow_aggregation (GstFlowReturn flow, GstFlowReturn flow1,
pmonitor2
->
last_flow_return
=
flow2
;
FAKE_DEMUXER
(
demuxer
)
->
return_value
=
demux_flow
;
fail_unless_equals_int
(
gst_pad_push
(
srcpad
,
gst_disco
u
nt_buffer_new
()),
fail_unless_equals_int
(
gst_pad_push
(
srcpad
,
gst_discont_buffer_new
()),
demux_flow
);
reports
=
gst_validate_runner_get_reports
(
runner
);
...
...
@@ -924,7 +924,7 @@ GST_START_TEST (buffer_timestamp_out_of_received_range)
fail_unless
(
gst_pad_push_event
(
srcpad
,
gst_event_new_segment
(
&
segment
)));
{
buffer
=
gst_disco
u
nt_buffer_new
();
buffer
=
gst_discont_buffer_new
();
GST_BUFFER_PTS
(
buffer
)
=
0
*
GST_SECOND
;
GST_BUFFER_DURATION
(
buffer
)
=
0
.
1
*
GST_SECOND
;
fail_unless
(
gst_pad_push
(
srcpad
,
buffer
)
==
GST_FLOW_OK
);
...
...
@@ -933,7 +933,7 @@ GST_START_TEST (buffer_timestamp_out_of_received_range)
decoder_srcpad
=
gst_element_get_static_pad
(
decoder
,
"src"
);
{
buffer
=
gst_disco
u
nt_buffer_new
();
buffer
=
gst_discont_buffer_new
();
GST_BUFFER_PTS
(
buffer
)
=
0
.
9
*
GST_SECOND
;
GST_BUFFER_DURATION
(
buffer
)
=
0
.
1
*
GST_SECOND
;
fail_unless
(
gst_pad_push
(
decoder_srcpad
,
buffer
)
==
GST_FLOW_OK
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment