1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-11 08:37:59 +00:00

Add missing header #includes to fix 'make checkheaders'.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26216 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-03-10 19:28:42 +00:00
parent ed6d239e9d
commit 87281a7d6a
14 changed files with 39 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_CACHE2_H
#define MPLAYER_CACHE2_H
#include "stream.h"
extern void cache_uninit(stream_t *s);
#endif /* MPLAYER_CACHE2_H */

View File

@ -7,6 +7,8 @@
#ifndef MPLAYER_HTTP_H
#define MPLAYER_HTTP_H
#include <sys/types.h>
typedef struct HTTP_field_type {
char *field_name;
struct HTTP_field_type *next;

View File

@ -10,6 +10,14 @@
#ifndef MPLAYER_NETSTREAM_H
#define MPLAYER_NETSTREAM_H
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/socket.h>
#include "mp_msg.h"
#include "mpbswap.h"
typedef struct mp_net_stream_packet_st {
uint16_t len;
uint8_t cmd;

View File

@ -24,6 +24,7 @@
#ifndef MPLAYER_PVR_H
#define MPLAYER_PVR_H
#include "stream.h"
#include "tv.h"
/**

View File

@ -1,6 +1,7 @@
#ifndef MPLAYER_STREAM_DVD_H
#define MPLAYER_STREAM_DVD_H
#include <stdint.h>
#ifdef USE_DVDREAD_INTERNAL
#include "dvdread/dvd_reader.h"
#include "dvdread/ifo_types.h"
@ -12,6 +13,7 @@
#include <dvdread/ifo_read.h>
#include <dvdread/nav_read.h>
#endif
#include "stream.h"
typedef struct {
dvd_reader_t *dvd;

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_STREAM_DVD_COMMON_H
#define MPLAYER_STREAM_DVD_COMMON_H
#include <inttypes.h>
#include <dvdread/ifo_types.h>
int mp_dvdtimetomsec(dvd_time_t *dt);
#endif /* MPLAYER_STREAM_DVD_COMMON_H */

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_STREAM_DVDNAV_H
#define MPLAYER_STREAM_DVDNAV_H
#include <stdint.h>
#include "stream.h"
typedef struct {
int event; /* event number fromd dvdnav_events.h */
void * details; /* event details */

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_STREAM_RADIO_H
#define MPLAYER_STREAM_RADIO_H
#include "stream.h"
#define RADIO_CHANNEL_LOWER 1
#define RADIO_CHANNEL_HIGHER 2

View File

@ -3,6 +3,8 @@
#include <stdlib.h> /* malloc */
#include <string.h> /* memset */
#include "libmpcodecs/img_format.h"
#include "tv.h"
static int init(priv_t *priv);
static int uninit(priv_t *priv);

View File

@ -20,6 +20,8 @@
#ifndef MPLAYER_UDP_H
#define MPLAYER_UDP_H
#include "url.h"
int udp_open_socket (URL_t *url);
#endif /* MPLAYER_UDP_H */

View File

@ -1,6 +1,12 @@
#ifndef MPLAYER_VCD_READ_H
#define MPLAYER_VCD_READ_H
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/ioctl.h>
#include "mp_msg.h"
#include "stream.h"
#include "libavutil/intreadwrite.h"
//=================== VideoCD ==========================
#if defined(linux) || defined(sun) || defined(__bsdi__)

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_VCD_READ_DARWIN_H
#define MPLAYER_VCD_READ_DARWIN_H
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <CoreFoundation/CFBase.h>
#include <IOKit/IOKitLib.h>
@ -8,6 +11,7 @@
#include <IOKit/storage/IOCDMedia.h>
#include <IOKit/storage/IOCDMediaBSDClient.h>
#include "mpbswap.h"
#include "mp_msg.h"
//=================== VideoCD ==========================
#define CDROM_LEADOUT 0xAA

View File

@ -17,6 +17,7 @@
#define TOCADDR(te) ((te).entry.addr)
#define READ_TOC CDIOREADTOCENTRY
#endif
#include "mp_msg.h"
//=================== VideoCD ==========================
#define CDROM_LEADOUT 0xAA

View File

@ -2,6 +2,7 @@
#define MPLAYER_VCD_READ_WIN32_H
#include <ddk/ntddcdrm.h>
#include "mp_msg.h"
typedef struct mp_vcd_priv_st mp_vcd_priv_t;