rtspsrc: Use the proper maximum value for seekable

it's a gfloat, not a gdouble
This commit is contained in:
Edward Hervey 2017-11-21 09:33:49 +01:00 committed by Edward Hervey
parent 3ba556a54d
commit 92c3207463

View file

@ -5954,7 +5954,7 @@ gst_rtspsrc_parse_methods (GstRTSPSrc * src, GstRTSPMessage * response)
* this */ * this */
src->methods |= GST_RTSP_PLAY; src->methods |= GST_RTSP_PLAY;
/* also assume it will support Range */ /* also assume it will support Range */
src->seekable = G_MAXDOUBLE; src->seekable = G_MAXFLOAT;
/* we need describe and setup */ /* we need describe and setup */
if (!(src->methods & GST_RTSP_DESCRIBE)) if (!(src->methods & GST_RTSP_DESCRIBE))
@ -6333,7 +6333,7 @@ gst_rtsp_src_setup_stream_from_response (GstRTSPSrc * src,
gchar **random_seekable_val = g_strsplit (prop, "=", 2); gchar **random_seekable_val = g_strsplit (prop, "=", 2);
if (!random_seekable_val[1]) if (!random_seekable_val[1])
src->seekable = G_MAXDOUBLE; src->seekable = G_MAXFLOAT;
else else
src->seekable = g_ascii_strtod (random_seekable_val[1], NULL); src->seekable = g_ascii_strtod (random_seekable_val[1], NULL);