# HG changeset patch # User diego # Date 1204673724 0 # Node ID 83c95bd31aabdcdc26125ea3e8ed3fe0a1028995 # Parent e17acc5feca46b00780eca6513d429e2dca589cc Add necessary #includes to pass 'make checkheaders'. diff -r e17acc5feca4 -r 83c95bd31aab command.h --- a/command.h Tue Mar 04 21:45:36 2008 +0000 +++ b/command.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,9 @@ #ifndef MPLAYER_COMMAND_H #define MPLAYER_COMMAND_H +#include "mp_core.h" +#include "input/input.h" + int run_command(struct MPContext *mpctx, mp_cmd_t *cmd); char *property_expand_string(struct MPContext *mpctx, char *str); void property_print_help(void); diff -r e17acc5feca4 -r 83c95bd31aab fmt-conversion.h --- a/fmt-conversion.h Tue Mar 04 21:45:36 2008 +0000 +++ b/fmt-conversion.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,8 +1,9 @@ #ifndef MPLAYER_FMT_CONVERSION_H #define MPLAYER_FMT_CONVERSION_H +#include #include "libavutil/avutil.h" -#include "img_format.h" +#include "libmpcodecs/img_format.h" enum PixelFormat imgfmt2pixfmt(int fmt) { diff -r e17acc5feca4 -r 83c95bd31aab m_option.h --- a/m_option.h Tue Mar 04 21:45:36 2008 +0000 +++ b/m_option.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_M_OPTION_H #define MPLAYER_M_OPTION_H +#include + /// \defgroup Options /// m_option allows to parse, print and copy data of various types. /// It is the base of the \ref OptionsStruct, \ref Config and diff -r e17acc5feca4 -r 83c95bd31aab m_property.h --- a/m_property.h Tue Mar 04 21:45:36 2008 +0000 +++ b/m_property.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_M_PROPERTY_H #define MPLAYER_M_PROPERTY_H +#include "m_option.h" + /// \defgroup Properties /// /// Properties provide an interface to query and set the state of various diff -r e17acc5feca4 -r 83c95bd31aab mp_core.h --- a/mp_core.h Tue Mar 04 21:45:36 2008 +0000 +++ b/mp_core.h Tue Mar 04 23:35:24 2008 +0000 @@ -2,6 +2,14 @@ #define MPLAYER_MP_CORE_H #include "mp_osd.h" +#include "libao2/audio_out.h" +#include "playtree.h" +#include "stream/stream.h" +#include "libmpdemux/demuxer.h" +#include "libmpdemux/stheader.h" +#include "mixer.h" +#include "libvo/video_out.h" +#include "subreader.h" // definitions used internally by the core player code diff -r e17acc5feca4 -r 83c95bd31aab mpbswap.h --- a/mpbswap.h Tue Mar 04 21:45:36 2008 +0000 +++ b/mpbswap.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,7 @@ #ifndef MPLAYER_MPBSWAP_H #define MPLAYER_MPBSWAP_H +#include #include "libavutil/bswap.h" #ifndef HAVE_SWAB void swab(const void *from, void *to, ssize_t n); diff -r e17acc5feca4 -r 83c95bd31aab mpcommon.h --- a/mpcommon.h Tue Mar 04 21:45:36 2008 +0000 +++ b/mpcommon.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,10 @@ #ifndef MPLAYER_MPCOMMON_H #define MPLAYER_MPCOMMON_H +#include "subreader.h" +#include "libmpdemux/demuxer.h" +#include "libmpdemux/stheader.h" + extern double sub_last_pts; extern struct ass_track_s *ass_track; extern subtitle *vo_sub_last; diff -r e17acc5feca4 -r 83c95bd31aab parser-cfg.h --- a/parser-cfg.h Tue Mar 04 21:45:36 2008 +0000 +++ b/parser-cfg.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_PARSER_CFG_H #define MPLAYER_PARSER_CFG_H +#include "m_config.h" + int m_config_parse_config_file(m_config_t* config, char *conffile); #endif /* MPLAYER_PARSER_CFG_H */ diff -r e17acc5feca4 -r 83c95bd31aab parser-mecmd.h --- a/parser-mecmd.h Tue Mar 04 21:45:36 2008 +0000 +++ b/parser-mecmd.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_PARSER_MECMD_H #define MPLAYER_PARSER_MECMD_H +#include "m_config.h" + /// \file /// \ingroup ConfigParsers MEntry /// \brief A simple parser with per-entry settings. diff -r e17acc5feca4 -r 83c95bd31aab parser-mpcmd.h --- a/parser-mpcmd.h Tue Mar 04 21:45:36 2008 +0000 +++ b/parser-mpcmd.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,9 @@ #ifndef MPLAYER_PARSER_MPCMD_H #define MPLAYER_PARSER_MPCMD_H +#include "playtree.h" +#include "m_config.h" + play_tree_t* m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv); #endif /* MPLAYER_PARSER_MPCMD_H */ diff -r e17acc5feca4 -r 83c95bd31aab playtreeparser.h --- a/playtreeparser.h Tue Mar 04 21:45:36 2008 +0000 +++ b/playtreeparser.h Tue Mar 04 23:35:24 2008 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_PLAYTREEPARSER_H #define MPLAYER_PLAYTREEPARSER_H +#include "playtree.h" + /// \defgroup PlaytreeParser Playtree parser /// \ingroup Playtree ///