diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2002-12-24 01:10:53 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2002-12-24 01:10:53 +0000 |
commit | efc8ab88d8211aa84c7131f7e5c9c2ce0c4ef079 (patch) | |
tree | 621f71d3750eeaa5e8fda3809d0511ab29c0646e | |
parent | da5949c9e0113478da6416608e23d756d509ebb6 (diff) | |
download | xine-lib-efc8ab88d8211aa84c7131f7e5c9c2ce0c4ef079.tar.gz xine-lib-efc8ab88d8211aa84c7131f7e5c9c2ce0c4ef079.tar.bz2 |
small rtsp fixes
CVS patchset: 3662
CVS date: 2002/12/24 01:10:53
-rw-r--r-- | src/input/librtsp/Makefile.am | 2 | ||||
-rw-r--r-- | src/input/librtsp/rtsp_session.c | 8 | ||||
-rw-r--r-- | src/input/librtsp/rtsp_session.h | 7 |
3 files changed, 10 insertions, 7 deletions
diff --git a/src/input/librtsp/Makefile.am b/src/input/librtsp/Makefile.am index 74e7e3d89..1bde8e8bd 100644 --- a/src/input/librtsp/Makefile.am +++ b/src/input/librtsp/Makefile.am @@ -1,4 +1,4 @@ -RTSP_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE +RTSP_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I../libreal AM_CFLAGS = $(RTSP_CFLAGS) @ANSI_FLAGS@ diff --git a/src/input/librtsp/rtsp_session.c b/src/input/librtsp/rtsp_session.c index 66890a6b3..145cfe00d 100644 --- a/src/input/librtsp/rtsp_session.c +++ b/src/input/librtsp/rtsp_session.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: rtsp_session.c,v 1.6 2002/12/16 23:53:50 holstsn Exp $ + * $Id: rtsp_session.c,v 1.7 2002/12/24 01:10:53 holstsn Exp $ * * high level interface to rtsp servers. */ @@ -33,9 +33,9 @@ #include "rtsp.h" #include "rtsp_session.h" -#include "../libreal/real.h" -#include "../libreal/rmff.h" -#include "../libreal/asmrp.h" +#include "real.h" +#include "rmff.h" +#include "asmrp.h" /* #define LOG diff --git a/src/input/librtsp/rtsp_session.h b/src/input/librtsp/rtsp_session.h index fe7814b52..d3daa4286 100644 --- a/src/input/librtsp/rtsp_session.h +++ b/src/input/librtsp/rtsp_session.h @@ -17,11 +17,14 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: rtsp_session.h,v 1.2 2002/12/15 16:54:10 holstsn Exp $ + * $Id: rtsp_session.h,v 1.3 2002/12/24 01:10:53 holstsn Exp $ * * high level interface to rtsp servers. */ +#ifndef HAVE_RTSP_SESSION_H +#define HAVE_RTSP_SESSION_H + typedef struct rtsp_session_s rtsp_session_t; rtsp_session_t *rtsp_session_start(char *mrl); @@ -32,4 +35,4 @@ int rtsp_session_peek_header(rtsp_session_t *this, char *buf); void rtsp_session_end(rtsp_session_t *session); - +#endif |