summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2021-04-13 09:23:12 +0530
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-04-13 14:30:54 +0000
commitc071cbbe30550e21dc4949abaaeb580e1c153cc9 (patch)
treead17f88185ed9eb2911c689c1fd7a7263ce58d0b /gst
parentfb97ca94587f6396e7d2a3c54b7967ee5e641ce4 (diff)
rtspsrc: Remove some dead code
stop is not used after this point, nor do we create a new segment here since 84725d62b57bc74ce34abde755f35bf8f948f94d Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/940>
Diffstat (limited to 'gst')
-rw-r--r--gst/rtsp/gstrtspsrc.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c
index 8f65d5650..0430a4615 100644
--- a/gst/rtsp/gstrtspsrc.c
+++ b/gst/rtsp/gstrtspsrc.c
@@ -2861,11 +2861,6 @@ gst_rtspsrc_perform_seek (GstRTSPSrc * src, GstEvent * event)
gst_segment_do_seek (&seeksegment, rate, format, flags,
cur_type, cur, stop_type, stop, &update);
- /* figure out the last position we need to play. If it's configured (stop !=
- * -1), use that, else we play until the total duration of the file */
- if ((stop = seeksegment.stop) == -1)
- stop = seeksegment.duration;
-
/* if we were playing, pause first */
playing = (src->state == GST_RTSP_STATE_PLAYING);
if (playing) {
@@ -2897,10 +2892,6 @@ gst_rtspsrc_perform_seek (GstRTSPSrc * src, GstEvent * event)
src->segment.format, src->segment.position));
}
- /* now create the newsegment */
- GST_DEBUG_OBJECT (src, "Creating newsegment from %" G_GINT64_FORMAT
- " to %" G_GINT64_FORMAT, src->segment.position, stop);
-
/* mark discont when needed */
if (!(rate_change_only && rate_change_same_direction)) {
GST_DEBUG_OBJECT (src, "mark DISCONT, we did a seek to another position");