[MPlayer-cvslog] r26175 - in trunk/libmpdemux: demux_avs.h demuxer.h ebml.h matroska.h mp3_hdr.h mpeg_packetizer.h muxer.h parse_es.h stheader.h
diego
subversion at mplayerhq.hu
Thu Mar 6 00:32:01 CET 2008
Author: diego
Date: Thu Mar 6 00:32:01 2008
New Revision: 26175
Log:
Add missing header #includes to fix 'make checkheaders'.
Modified:
trunk/libmpdemux/demux_avs.h
trunk/libmpdemux/demuxer.h
trunk/libmpdemux/ebml.h
trunk/libmpdemux/matroska.h
trunk/libmpdemux/mp3_hdr.h
trunk/libmpdemux/mpeg_packetizer.h
trunk/libmpdemux/muxer.h
trunk/libmpdemux/parse_es.h
trunk/libmpdemux/stheader.h
Modified: trunk/libmpdemux/demux_avs.h
==============================================================================
--- trunk/libmpdemux/demux_avs.h (original)
+++ trunk/libmpdemux/demux_avs.h Thu Mar 6 00:32:01 2008
@@ -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
Modified: trunk/libmpdemux/demuxer.h
==============================================================================
--- trunk/libmpdemux/demuxer.h (original)
+++ trunk/libmpdemux/demuxer.h Thu Mar 6 00:32:01 2008
@@ -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
Modified: trunk/libmpdemux/ebml.h
==============================================================================
--- trunk/libmpdemux/ebml.h (original)
+++ trunk/libmpdemux/ebml.h Thu Mar 6 00:32:01 2008
@@ -2,6 +2,7 @@
#define MPLAYER_EBML_H
#include <inttypes.h>
+#include "stream/stream.h"
/* EBML version supported */
Modified: trunk/libmpdemux/matroska.h
==============================================================================
--- trunk/libmpdemux/matroska.h (original)
+++ trunk/libmpdemux/matroska.h Thu Mar 6 00:32:01 2008
@@ -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"
Modified: trunk/libmpdemux/mp3_hdr.h
==============================================================================
--- trunk/libmpdemux/mp3_hdr.h (original)
+++ trunk/libmpdemux/mp3_hdr.h Thu Mar 6 00:32:01 2008
@@ -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)
Modified: trunk/libmpdemux/mpeg_packetizer.h
==============================================================================
--- trunk/libmpdemux/mpeg_packetizer.h (original)
+++ trunk/libmpdemux/mpeg_packetizer.h Thu Mar 6 00:32:01 2008
@@ -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));
Modified: trunk/libmpdemux/muxer.h
==============================================================================
--- trunk/libmpdemux/muxer.h (original)
+++ trunk/libmpdemux/muxer.h Thu Mar 6 00:32:01 2008
@@ -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
Modified: trunk/libmpdemux/parse_es.h
==============================================================================
--- trunk/libmpdemux/parse_es.h (original)
+++ trunk/libmpdemux/parse_es.h Thu Mar 6 00:32:01 2008
@@ -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
Modified: trunk/libmpdemux/stheader.h
==============================================================================
--- trunk/libmpdemux/stheader.h (original)
+++ trunk/libmpdemux/stheader.h Thu Mar 6 00:32:01 2008
@@ -1,6 +1,7 @@
#ifndef MPLAYER_STHEADER_H
#define MPLAYER_STHEADER_H
+#include "demuxer.h"
#include "aviheader.h"
#include "ms_hdr.h"
More information about the MPlayer-cvslog
mailing list