view stream/rtp.h @ 19319:c565b6ac1d2a

moved some definitions from rtp.h to rtp.c as they're not exported or used anywhere else
author ben
date Fri, 04 Aug 2006 19:36:41 +0000
parents a3ddd3320b47
children 06eef86d21cc
line wrap: on
line source

/* Imported from the dvbstream project
 *
 * Modified for use with MPlayer, for details see the changelog at
 * http://svn.mplayerhq.hu/mplayer/trunk/
 * $Id$
 */

#ifndef _RTP_H
#define _RTP_H

#include "config.h"
#ifndef HAVE_WINSOCK2
#include <sys/socket.h>
#else
#include <winsock2.h>
#endif

int read_rtp_from_server(int fd, char *buffer, int length);

#endif