Top | ![]() |
![]() |
![]() |
![]() |
enum | GstRTSPRangeUnit |
struct | GstRTSPTimeRange |
struct | GstRTSPTime |
enum | GstRTSPTimeType |
Provides helper functions to deal with time ranges.
Last reviewed on 2007-07-25 (0.10.14)
GstRTSPResult gst_rtsp_range_parse (const gchar *rangestr
,GstRTSPTimeRange **range
);
Parse rangestr
to a GstRTSPTimeRange.
gchar *
gst_rtsp_range_to_string (const GstRTSPTimeRange *range
);
Convert range
into a string representation.
Since 0.10.23
void
gst_rtsp_range_free (GstRTSPTimeRange *range
);
Free the memory allocated by range
.
struct GstRTSPTimeRange { GstRTSPRangeUnit unit; GstRTSPTime min; GstRTSPTime max; };
A time range.
GstRTSPRangeUnit |
the time units used |
|
GstRTSPTime |
the minimum interval |
|
GstRTSPTime |
the maximum interval |
struct GstRTSPTime { GstRTSPTimeType type; gdouble seconds; };
A time indication.
GstRTSPTimeType |
the time of the time |
|
gdouble |
seconds when |