mirror of
https://github.com/mpv-player/mpv
synced 2025-03-25 04:38:01 +00:00
Add missing header #includes to fix 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26175 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5d3c5c26f6
commit
67d7fb2015
@ -24,6 +24,9 @@
|
||||
#ifndef MPLAYER_DEMUX_AVS_H
|
||||
#define MPLAYER_DEMUX_AVS_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "loader/wine/windef.h"
|
||||
|
||||
enum { AVISYNTH_INTERFACE_VERSION = 2 };
|
||||
|
||||
enum
|
||||
|
@ -1,6 +1,11 @@
|
||||
#ifndef MPLAYER_DEMUXER_H
|
||||
#define MPLAYER_DEMUXER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "stream/stream.h"
|
||||
#ifdef USE_ASS
|
||||
#include "libass/ass_types.h"
|
||||
#endif
|
||||
|
@ -2,6 +2,7 @@
|
||||
#define MPLAYER_EBML_H
|
||||
|
||||
#include <inttypes.h>
|
||||
#include "stream/stream.h"
|
||||
|
||||
|
||||
/* EBML version supported */
|
||||
|
@ -7,6 +7,8 @@
|
||||
#ifndef MPLAYER_MATROSKA_H
|
||||
#define MPLAYER_MATROSKA_H
|
||||
|
||||
#include "demuxer.h"
|
||||
|
||||
#define MKV_A_AAC_2MAIN "A_AAC/MPEG2/MAIN"
|
||||
#define MKV_A_AAC_2LC "A_AAC/MPEG2/LC"
|
||||
#define MKV_A_AAC_2SBR "A_AAC/MPEG2/LC/SBR"
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef MPLAYER_MP3_HDR_H
|
||||
#define MPLAYER_MP3_HDR_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
int mp_get_mp3_header(unsigned char* hbuf,int* chans, int* freq, int* spf, int* mpa_layer, int* br);
|
||||
|
||||
#define mp_decode_mp3_header(hbuf) mp_get_mp3_header(hbuf,NULL,NULL,NULL,NULL,NULL)
|
||||
|
@ -25,6 +25,8 @@
|
||||
#ifndef MPLAYER_MPEG_PACKETIZER_H
|
||||
#define MPLAYER_MPEG_PACKETIZER_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/* Send MPEG <type> PES packet */
|
||||
int send_mpeg_pes_packet (unsigned char *data, int len, int id, uint64_t pts,
|
||||
int type, int my_write (const unsigned char *data, int len));
|
||||
|
@ -1,6 +1,12 @@
|
||||
#ifndef MPLAYER_MUXER_H
|
||||
#define MPLAYER_MUXER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include "aviheader.h"
|
||||
#include "ms_hdr.h"
|
||||
#include "stream/stream.h"
|
||||
|
||||
#define MUXER_MAX_STREAMS 16
|
||||
|
||||
#define MUXER_TYPE_VIDEO 0
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef MPLAYER_PARSE_ES_H
|
||||
#define MPLAYER_PARSE_ES_H
|
||||
|
||||
#include "demuxer.h"
|
||||
|
||||
#define MAX_VIDEO_PACKET_SIZE (224*1024+4)
|
||||
#define VIDEOBUFFER_SIZE 0x100000
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef MPLAYER_STHEADER_H
|
||||
#define MPLAYER_STHEADER_H
|
||||
|
||||
#include "demuxer.h"
|
||||
#include "aviheader.h"
|
||||
#include "ms_hdr.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user