1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-16 20:05:07 +00:00
mpv/stream/rtp.h
ben 7c4ced0cbb moved some definitions from rtp.h to rtp.c as they're not exported or used anywhere else
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19325 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-08-04 19:36:41 +00:00

21 lines
365 B
C

/* 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