summaryrefslogtreecommitdiff
path: root/src/input/libreal/real.c
diff options
context:
space:
mode:
authorClaudio Ciccani <klan@users.sourceforge.net>2006-12-18 21:31:47 +0000
committerClaudio Ciccani <klan@users.sourceforge.net>2006-12-18 21:31:47 +0000
commit25665d389818fca81eefaf83b217c0061b482551 (patch)
tree6e1fa36708ddb24af215de304c4aac628b0db518 /src/input/libreal/real.c
parent8eae85edce64a5454036be7ffa5c526dc7e1f92e (diff)
downloadxine-lib-25665d389818fca81eefaf83b217c0061b482551.tar.gz
xine-lib-25665d389818fca81eefaf83b217c0061b482551.tar.bz2
Partially implemented RTSP seekability:
support starting the playback at an optional time by delaying the PLAY request upon the first call to rtsp_session_read() and setting the playback start time via input_plugin->seek_time(). CVS patchset: 8422 CVS date: 2006/12/18 21:31:47
Diffstat (limited to 'src/input/libreal/real.c')
-rw-r--r--src/input/libreal/real.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/input/libreal/real.c b/src/input/libreal/real.c
index 270fd16e4..c3d39fab3 100644
--- a/src/input/libreal/real.c
+++ b/src/input/libreal/real.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: real.c,v 1.24 2006/11/29 19:43:01 dgp85 Exp $
+ * $Id: real.c,v 1.25 2006/12/18 21:31:47 klan Exp $
*
* special functions for real streams.
* adopted from joschkas real tools.
@@ -715,10 +715,6 @@ 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);
- /* and finally send a play request */
- rtsp_schedule_field(rtsp_session, "Range: npt=0-");
- rtsp_request_play(rtsp_session,NULL);
-
xine_buffer_free(subscribe);
xine_buffer_free(buf);
return h;