summaryrefslogtreecommitdiffstats
path: root/libmpdemux/realrtsp/real.c
diff options
context:
space:
mode:
authorrtognimp <rtognimp@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-23 13:35:55 +0000
committerrtognimp <rtognimp@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-23 13:35:55 +0000
commitb84ba866d7535fb8955420c7f856c39d7dc48468 (patch)
tree214154d8219d7a1ed7fce2d02d4409fc9043ce06 /libmpdemux/realrtsp/real.c
parent8e0dd8484f88ff34477168edd7c5bef883944ea2 (diff)
downloadmpv-b84ba866d7535fb8955420c7f856c39d7dc48468.tar.bz2
mpv-b84ba866d7535fb8955420c7f856c39d7dc48468.tar.xz
Real rtsp Range parameter (Start and End) support.
Patch by rgselk <rgselknospam(at)yahoo(dot)com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11507 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/realrtsp/real.c')
-rw-r--r--libmpdemux/realrtsp/real.c37
1 files changed, 35 insertions, 2 deletions
diff --git a/libmpdemux/realrtsp/real.c b/libmpdemux/realrtsp/real.c
index 3d150b285d..ce636707e2 100644
--- a/libmpdemux/realrtsp/real.c
+++ b/libmpdemux/realrtsp/real.c
@@ -649,6 +649,25 @@ int real_get_rdt_chunk(rtsp_t *rtsp_session, char *buffer) {
return n+12;
}
+int convert_timestamp(char *str, int *sec, int *msec) {
+ int hh, mm, ss, ms = 0;
+ if (sscanf(str, "%d:%d:%d.%d", &hh, &mm, &ss, &ms) < 3) {
+ hh = 0;
+ if (sscanf(str, "%d:%d.%d", &mm, &ss, &ms) < 2) {
+ mm = 0;
+ if (sscanf(str, "%d.%d", &ss, &ms) < 1) {
+ ss = 0;
+ ms = 0;
+ }
+ }
+ }
+ if (sec)
+ *sec = hh * 3600 + mm * 60 + ss;
+ if (msec)
+ *msec = ms;
+ return 1;
+}
+
rmff_header_t *real_setup_and_get_header(rtsp_t *rtsp_session, uint32_t bandwidth) {
char *description=NULL;
@@ -745,10 +764,24 @@ rmff_header_t *real_setup_and_get_header(rtsp_t *rtsp_session, uint32_t bandwid
rtsp_schedule_field(rtsp_session, subscribe);
rtsp_request_setparameter(rtsp_session,NULL);
+ {
+ int s_ss = 0, s_ms = 0, e_ss = 0, e_ms = 0;
+ char *str;
+ if ((str = rtsp_get_param(rtsp_session, "start"))) {
+ convert_timestamp(str, &s_ss, &s_ms);
+ free(str);
+ }
+ if ((str = rtsp_get_param(rtsp_session, "end"))) {
+ convert_timestamp(str, &e_ss, &e_ms);
+ free(str);
+ }
+ str = buf + sprintf(buf, s_ms ? "%s%d.%d-" : "%s%d-", "Range: npt=", s_ss, s_ms);
+ if (e_ss || e_ms)
+ sprintf(str, e_ms ? "%d.%d" : "%d", e_ss, e_ms);
+ }
+ rtsp_schedule_field(rtsp_session, buf);
/* and finally send a play request */
- rtsp_schedule_field(rtsp_session, "Range: npt=0-");
rtsp_request_play(rtsp_session,NULL);
return h;
}
-