Browse Source

Don't #include LibVLC from plugins

(I was wondering why those kept being recompiled)
pull/2/head
Rémi Denis-Courmont 17 years ago
parent
commit
b60075e34e
  1. 2
      modules/access/rtp/session.c
  2. 1
      modules/access/zip/zip.h
  3. 1
      modules/misc/sqlite.c
  4. 2
      modules/video_chroma/i420_rgb16.c
  5. 2
      modules/video_chroma/i420_rgb8.c
  6. 2
      modules/video_filter/atmo/AtmoDefs.h
  7. 2
      modules/video_filter/atmo/AtmoLiveView.cpp
  8. 2
      modules/video_filter/atmo/AtmoPacketQueue.cpp

2
modules/access/rtp/session.c

@ -28,7 +28,7 @@
#include <assert.h>
#include <errno.h>
#include <vlc/vlc.h>
#include <vlc_common.h>
#include <vlc_demux.h>
#include "rtp.h"

1
modules/access/zip/zip.h

@ -28,7 +28,6 @@
#ifndef ZIP_ACCESSDEMUX_H
#define ZIP_ACCESSDEMUX_H
#include <vlc/vlc.h>
#include <vlc_common.h>
#include <vlc_url.h>
#include <vlc_strings.h>

1
modules/misc/sqlite.c

@ -31,7 +31,6 @@
#endif
#include <vlc_common.h>
#include <vlc/vlc.h>
#include <vlc_sql.h>
#include <vlc_plugin.h>

2
modules/video_chroma/i420_rgb16.c

@ -30,7 +30,7 @@
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_common.h>
#include <vlc_filter.h>
#include "i420_rgb.h"

2
modules/video_chroma/i420_rgb8.c

@ -29,7 +29,7 @@
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_common.h>
#include <vlc_filter.h>
#include "i420_rgb.h"

2
modules/video_filter/atmo/AtmoDefs.h

@ -14,7 +14,7 @@
#if defined(__LIBVLC__)
# include "config.h"
# include <vlc/vlc.h>
# include <vlc_common.h>
/* some things need to be changed if this code is used inside VideoLan Filter Module */
# define _ATMO_VLC_PLUGIN_

2
modules/video_filter/atmo/AtmoLiveView.cpp

@ -13,7 +13,7 @@
#include "AtmoTools.h"
#if defined(_ATMO_VLC_PLUGIN_)
# include <vlc/vlc.h>
# include <vlc_common.h>
#else
# include "AtmoGdiDisplayCaptureInput.h"
#endif

2
modules/video_filter/atmo/AtmoPacketQueue.cpp

@ -13,7 +13,7 @@
#include "AtmoPacketQueue.h"
#if defined(_ATMO_VLC_PLUGIN_)
# include <vlc/vlc.h>
# include <vlc_common.h>
#define MAX_PACKET_TOO_LATE -30000
#define MAX_PACKET_TOO_EARLY 30000
#define MIN_SLEEP_TIME 15000

Loading…
Cancel
Save