mirror of
https://github.com/mpv-player/mpv
synced 2025-03-23 20:00:56 +00:00
Add a few missing header #includes and #defines.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30207 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ebe9682831
commit
00ad5d3fed
@ -9,6 +9,7 @@
|
||||
#include <cdio/cdda.h>
|
||||
#include <cdio/paranoia.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
|
||||
typedef struct {
|
||||
char cddb_hello[1024];
|
||||
|
@ -8,6 +8,7 @@
|
||||
#ifndef MPLAYER_DVBIN_H
|
||||
#define MPLAYER_DVBIN_H
|
||||
|
||||
#include "config.h"
|
||||
#include "stream.h"
|
||||
|
||||
#define SLOF (11700*1000UL)
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef MPLAYER_STREAM_H
|
||||
#define MPLAYER_STREAM_H
|
||||
|
||||
#include "config.h"
|
||||
#include "mp_msg.h"
|
||||
#include <string.h>
|
||||
#include <inttypes.h>
|
||||
|
@ -10,6 +10,7 @@
|
||||
#ifndef MPLAYER_NETSTREAM_H
|
||||
#define MPLAYER_NETSTREAM_H
|
||||
|
||||
#include "config.h"
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef MPLAYER_STREAM_RADIO_H
|
||||
#define MPLAYER_STREAM_RADIO_H
|
||||
|
||||
#include "config.h"
|
||||
#include "stream.h"
|
||||
|
||||
#define RADIO_CHANNEL_LOWER 1
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef MPLAYER_VCD_READ_DARWIN_H
|
||||
#define MPLAYER_VCD_READ_DARWIN_H
|
||||
|
||||
#define _XOPEN_SOURCE 500
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
@ -1,10 +1,14 @@
|
||||
#ifndef MPLAYER_VCD_READ_FBSD_H
|
||||
#define MPLAYER_VCD_READ_FBSD_H
|
||||
|
||||
#define _XOPEN_SOURCE 500
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <inttypes.h>
|
||||
#include <unistd.h>
|
||||
#include "libavutil/intreadwrite.h"
|
||||
#include <sys/cdio.h>
|
||||
#include <sys/ioctl.h>
|
||||
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
#define VCD_NETBSD 1
|
||||
#endif
|
||||
|
@ -1,6 +1,9 @@
|
||||
#ifndef MPLAYER_VCD_READ_WIN32_H
|
||||
#define MPLAYER_VCD_READ_WIN32_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <ddk/ntddcdrm.h>
|
||||
#include "mp_msg.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user