Mercurial > mplayer.hg
annotate libmpdemux/realrtsp/rtsp_session.h @ 18120:1307befe7f85
1.1257: Fix and improve xinerama support
1.1256: new monitorpixelaspect option, esp. useful for xinerama setups with upcoming patch
1.1255: [does not apply]
1.1254: -ao pcm:fast suboption for faster-than-realtime dumping
author | kraymer |
---|---|
date | Sun, 16 Apr 2006 20:27:35 +0000 |
parents | 88adbc28f60b |
children | a738f1e0224f |
rev | line source |
---|---|
9922 | 1 /* |
2 * This file was ported to MPlayer from xine CVS rtsp_session.h,v 1.4 2003/01/31 14:06:18 | |
3 */ | |
4 | |
5 /* | |
6 * Copyright (C) 2000-2002 the xine project | |
7 * | |
8 * This file is part of xine, a free video player. | |
9 * | |
10 * xine is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * xine is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | |
23 * | |
24 * | |
25 * high level interface to rtsp servers. | |
26 */ | |
27 | |
28 #ifndef HAVE_RTSP_SESSION_H | |
29 #define HAVE_RTSP_SESSION_H | |
30 | |
31 typedef struct rtsp_session_s rtsp_session_t; | |
32 | |
17332
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
10199
diff
changeset
|
33 rtsp_session_t *rtsp_session_start(int fd, char **mrl, char *path, char *host, int port, int *redir, uint32_t bandwidth); |
9922 | 34 |
35 int rtsp_session_read(rtsp_session_t *session, char *data, int len); | |
36 | |
37 int rtsp_session_peek_header(rtsp_session_t *this, char *buf, int maxsize); | |
38 | |
39 void rtsp_session_end(rtsp_session_t *session); | |
40 | |
41 #endif |