1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

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

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26179 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-03-06 08:34:50 +00:00
parent a0a5afc0c5
commit db85806a9c
10 changed files with 21 additions and 0 deletions

View File

@ -2,6 +2,8 @@
#define MPLAYER_AD_H
#include "mpc_info.h"
#include "libmpdemux/stheader.h"
typedef mp_codec_info_t ad_info_t;
/* interface of video decoder drivers */

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_AE_H
#define MPLAYER_AE_H
#include "libmpdemux/muxer.h"
#define ACODEC_COPY 0
#define ACODEC_PCM 1
#define ACODEC_VBRMP3 2

View File

@ -2,6 +2,7 @@
#define MPLAYER_AE_FAAC_H
#include "ae.h"
#include "libmpdemux/muxer.h"
int mpae_init_faac(audio_encoder_t *encoder);

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_DEC_AUDIO_H
#define MPLAYER_DEC_AUDIO_H
#include "libmpdemux/stheader.h"
// dec_audio.c:
extern void afm_help(void);
extern int init_best_audio_codec(sh_audio_t *sh_audio,char** audio_codec_list,char** audio_fm_list);

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_DEC_VIDEO_H
#define MPLAYER_DEC_VIDEO_H
#include "libmpdemux/stheader.h"
// dec_video.c:
extern void vfm_help(void);

View File

@ -1,6 +1,10 @@
#ifndef MPLAYER_MP_IMAGE_H
#define MPLAYER_MP_IMAGE_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//--------- codec's requirements (filled by the codec/vf) ---------
//--- buffer content restrictions:

View File

@ -24,6 +24,8 @@
#ifndef RTJPEGN_H
#define RTJPEGN_H
#include <stdint.h>
#define __u8 uint8_t
#define __u16 uint16_t
#define __u32 uint32_t

View File

@ -3,6 +3,8 @@
#include "mp_image.h"
#include "mpc_info.h"
#include "libmpdemux/stheader.h"
typedef mp_codec_info_t vd_info_t;
/* interface of video decoder drivers */

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_VF_H
#define MPLAYER_VF_H
#include "mp_image.h"
struct vf_instance_s;
struct vf_priv_s;

View File

@ -8,6 +8,8 @@
#ifndef MPLAYER_VQF_H
#define MPLAYER_VQF_H
#include <stdio.h>
#ifdef _MSC_VER
# ifdef DLL_MODULE
# define DllPort __declspec( dllexport )