mirror of
https://github.com/mpv-player/mpv
synced 2024-12-16 20:05:07 +00:00
7c4ced0cbb
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19325 b3059339-0415-0410-9bf9-f77b7e298cf2
21 lines
365 B
C
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
|