Browse Source

modules: include vlc_arrays.h when using vlc_dictionary_t

pull/162/head
Steve Lhomme 3 years ago
parent
commit
8707c5939a
  1. 1
      modules/codec/ttml/ttml.h
  2. 1
      modules/control/dbus/dbus.c
  3. 1
      modules/control/dbus/dbus_player.h
  4. 1
      modules/control/dbus/dbus_root.h
  5. 1
      modules/control/dbus/dbus_tracklist.h
  6. 2
      modules/demux/mpeg/ts.h
  7. 1
      modules/services_discovery/avahi.c
  8. 1
      modules/services_discovery/udisks.c
  9. 1
      modules/text_renderer/freetype/fonts/android.c
  10. 1
      modules/text_renderer/freetype/fonts/backends.h
  11. 1
      modules/text_renderer/freetype/ftcache.c
  12. 1
      modules/text_renderer/freetype/lru.c
  13. 4
      modules/text_renderer/freetype/platform_fonts.h

1
modules/codec/ttml/ttml.h

@ -19,6 +19,7 @@
*****************************************************************************/ *****************************************************************************/
#include <vlc_tick.h> #include <vlc_tick.h>
#include <vlc_arrays.h>
int tt_OpenDemux( vlc_object_t* p_this ); int tt_OpenDemux( vlc_object_t* p_this );
void tt_CloseDemux( vlc_object_t* p_demux ); void tt_CloseDemux( vlc_object_t* p_demux );

1
modules/control/dbus/dbus.c

@ -54,6 +54,7 @@
#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS #define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_threads.h> #include <vlc_threads.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_interface.h> #include <vlc_interface.h>

1
modules/control/dbus/dbus_player.h

@ -27,6 +27,7 @@
#define VLC_DBUS_DBUS_PLAYER_H_ #define VLC_DBUS_DBUS_PLAYER_H_
#include <vlc_interface.h> #include <vlc_interface.h>
#include <vlc_arrays.h>
#include "dbus_common.h" #include "dbus_common.h"
#define DBUS_MPRIS_PLAYER_INTERFACE "org.mpris.MediaPlayer2.Player" #define DBUS_MPRIS_PLAYER_INTERFACE "org.mpris.MediaPlayer2.Player"

1
modules/control/dbus/dbus_root.h

@ -27,6 +27,7 @@
#define VLC_DBUS_DBUS_ROOT_H_ #define VLC_DBUS_DBUS_ROOT_H_
#include "dbus_common.h" #include "dbus_common.h"
#include <vlc_arrays.h>
/* DBUS IDENTIFIERS */ /* DBUS IDENTIFIERS */
#define DBUS_MPRIS_ROOT_INTERFACE "org.mpris.MediaPlayer2" #define DBUS_MPRIS_ROOT_INTERFACE "org.mpris.MediaPlayer2"

1
modules/control/dbus/dbus_tracklist.h

@ -27,6 +27,7 @@
#define VLC_DBUS_DBUS_TRACKLIST_H_ #define VLC_DBUS_DBUS_TRACKLIST_H_
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_interface.h> #include <vlc_interface.h>
#include "dbus_common.h" #include "dbus_common.h"

2
modules/demux/mpeg/ts.h

@ -20,6 +20,8 @@
#ifndef VLC_TS_H #ifndef VLC_TS_H
#define VLC_TS_H #define VLC_TS_H
#include <vlc_arrays.h>
#ifdef HAVE_ARIBB24 #ifdef HAVE_ARIBB24
typedef struct arib_instance_t arib_instance_t; typedef struct arib_instance_t arib_instance_t;
#endif #endif

1
modules/services_discovery/avahi.c

@ -31,6 +31,7 @@
#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS #define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_services_discovery.h> #include <vlc_services_discovery.h>
#include <vlc_renderer_discovery.h> #include <vlc_renderer_discovery.h>

1
modules/services_discovery/udisks.c

@ -25,6 +25,7 @@
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_threads.h> #include <vlc_threads.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_modules.h> #include <vlc_modules.h>

1
modules/text_renderer/freetype/fonts/android.c

@ -34,6 +34,7 @@
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_filter.h> /* filter_sys_t */ #include <vlc_filter.h> /* filter_sys_t */
# include <vlc_xml.h> # include <vlc_xml.h>

1
modules/text_renderer/freetype/fonts/backends.h

@ -22,6 +22,7 @@ extern "C" {
#endif #endif
#include "../lru.h" #include "../lru.h"
#include <vlc_arrays.h>
struct vlc_font_select_t struct vlc_font_select_t
{ {

1
modules/text_renderer/freetype/ftcache.c

@ -22,6 +22,7 @@
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_filter.h> #include <vlc_filter.h>
#include <vlc_text_style.h> #include <vlc_text_style.h>

1
modules/text_renderer/freetype/lru.c

@ -22,6 +22,7 @@
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_arrays.h>
#include <vlc_list.h> #include <vlc_list.h>
#include "lru.h" #include "lru.h"

4
modules/text_renderer/freetype/platform_fonts.h

@ -32,7 +32,7 @@
#ifndef PLATFORM_FONTS_H #ifndef PLATFORM_FONTS_H
#define PLATFORM_FONTS_H #define PLATFORM_FONTS_H
/** \defgroup freetype_fonts Freetype Fonts management /** \defgroup freetype_fonts Freetype Fonts management
* \ingroup freetype * \ingroup freetype
* Freetype text rendering cross platform * Freetype text rendering cross platform
* @{ * @{
@ -55,6 +55,8 @@
#include "freetype.h" #include "freetype.h"
#include <vlc_arrays.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif

Loading…
Cancel
Save