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

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26194 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-03-07 20:07:15 +00:00
parent cc36be59cb
commit d04df10807
6 changed files with 14 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef MPLAYER_GL_COMMON_H
#define MPLAYER_GL_COMMON_H
#include <stdio.h>
#include "mp_msg.h"
#include "config.h"

View File

@ -12,6 +12,8 @@
#ifndef MPLAYER_VESA_LVO_H
#define MPLAYER_VESA_LVO_H
#include <stdint.h>
int vlvo_preinit(const char *drvname);
int vlvo_init(unsigned src_width,unsigned src_height,
unsigned x_org,unsigned y_org,unsigned dst_width,

View File

@ -23,6 +23,8 @@
#ifndef MPLAYER_VIDEO_OUT_INTERNAL_H
#define MPLAYER_VIDEO_OUT_INTERNAL_H
#include <stdint.h>
/* All video drivers will want this */
#include "libmpcodecs/vfcap.h"
#include "libmpcodecs/mp_image.h"

View File

@ -6,6 +6,8 @@
#ifndef MPLAYER_VIDEODEV_MJPEG_H
#define MPLAYER_VIDEODEV_MJPEG_H
#include <stdlib.h>
/* This is identical with the mgavideo internal params struct,
please tell me if you change this struct here ! <gz@lysator.liu.se) */
struct mjpeg_params

View File

@ -12,6 +12,9 @@
#ifndef MPLAYER_VOSUB_VIDIX_H
#define MPLAYER_VOSUB_VIDIX_H
#include <stdint.h>
#include "video_out.h"
/* drvname can be NULL */
int vidix_preinit(const char *drvname,vo_functions_t *server);
int vidix_init(unsigned src_width,unsigned src_height,

View File

@ -1,6 +1,9 @@
#ifndef MPLAYER_W32_COMMON_H
#define MPLAYER_W32_COMMON_H
#include <stdint.h>
#include <windows.h>
extern HWND vo_w32_window;
extern int vo_vm;