mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 07:33:46 +01: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:
parent
a0a5afc0c5
commit
db85806a9c
@ -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 */
|
||||
|
@ -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
|
||||
|
@ -2,6 +2,7 @@
|
||||
#define MPLAYER_AE_FAAC_H
|
||||
|
||||
#include "ae.h"
|
||||
#include "libmpdemux/muxer.h"
|
||||
|
||||
int mpae_init_faac(audio_encoder_t *encoder);
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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 */
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef MPLAYER_VF_H
|
||||
#define MPLAYER_VF_H
|
||||
|
||||
#include "mp_image.h"
|
||||
|
||||
struct vf_instance_s;
|
||||
struct vf_priv_s;
|
||||
|
||||
|
@ -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 )
|
||||
|
Loading…
Reference in New Issue
Block a user