mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-05 11:21:12 +00:00
scenario: Enhance explanation about seek execution failure
This commit is contained in:
parent
299a677f09
commit
5d172e159e
1 changed files with 6 additions and 1 deletions
|
@ -243,7 +243,12 @@ _execute_seek (GstValidateScenario * scenario, GstValidateAction * action)
|
||||||
gst_event_replace (&priv->last_seek, seek);
|
gst_event_replace (&priv->last_seek, seek);
|
||||||
} else {
|
} else {
|
||||||
GST_VALIDATE_REPORT (scenario, EVENT_SEEK_NOT_HANDLED,
|
GST_VALIDATE_REPORT (scenario, EVENT_SEEK_NOT_HANDLED,
|
||||||
"Could not seek to position %" GST_TIME_FORMAT, GST_TIME_ARGS (start));
|
"Could not execute seek: '(position %" GST_TIME_FORMAT
|
||||||
|
"), %s (num %u, missing repeat: %i), seeking to: %" GST_TIME_FORMAT
|
||||||
|
" stop: %" GST_TIME_FORMAT " Rate %lf'",
|
||||||
|
GST_TIME_ARGS (action->playback_time), action->name,
|
||||||
|
action->action_number, action->repeat, GST_TIME_ARGS (start),
|
||||||
|
GST_TIME_ARGS (stop), rate);
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
}
|
}
|
||||||
gst_event_unref (seek);
|
gst_event_unref (seek);
|
||||||
|
|
Loading…
Reference in a new issue