Commit b60075e3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Don't #include LibVLC from plugins

(I was wondering why those kept being recompiled)
parent 6ccb0c4b
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <vlc/vlc.h> #include <vlc_common.h>
#include <vlc_demux.h> #include <vlc_demux.h>
#include "rtp.h" #include "rtp.h"
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#ifndef ZIP_ACCESSDEMUX_H #ifndef ZIP_ACCESSDEMUX_H
#define ZIP_ACCESSDEMUX_H #define ZIP_ACCESSDEMUX_H
#include <vlc/vlc.h>
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_url.h> #include <vlc_url.h>
#include <vlc_strings.h> #include <vlc_strings.h>
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc/vlc.h>
#include <vlc_sql.h> #include <vlc_sql.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
# include "config.h" # include "config.h"
#endif #endif
#include <vlc/vlc.h> #include <vlc_common.h>
#include <vlc_filter.h> #include <vlc_filter.h>
#include "i420_rgb.h" #include "i420_rgb.h"
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
# include "config.h" # include "config.h"
#endif #endif
#include <vlc/vlc.h> #include <vlc_common.h>
#include <vlc_filter.h> #include <vlc_filter.h>
#include "i420_rgb.h" #include "i420_rgb.h"
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#if defined(__LIBVLC__) #if defined(__LIBVLC__)
# include "config.h" # 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 */ /* some things need to be changed if this code is used inside VideoLan Filter Module */
# define _ATMO_VLC_PLUGIN_ # define _ATMO_VLC_PLUGIN_
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include "AtmoTools.h" #include "AtmoTools.h"
#if defined(_ATMO_VLC_PLUGIN_) #if defined(_ATMO_VLC_PLUGIN_)
# include <vlc/vlc.h> # include <vlc_common.h>
#else #else
# include "AtmoGdiDisplayCaptureInput.h" # include "AtmoGdiDisplayCaptureInput.h"
#endif #endif
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include "AtmoPacketQueue.h" #include "AtmoPacketQueue.h"
#if defined(_ATMO_VLC_PLUGIN_) #if defined(_ATMO_VLC_PLUGIN_)
# include <vlc/vlc.h> # include <vlc_common.h>
#define MAX_PACKET_TOO_LATE -30000 #define MAX_PACKET_TOO_LATE -30000
#define MAX_PACKET_TOO_EARLY 30000 #define MAX_PACKET_TOO_EARLY 30000
#define MIN_SLEEP_TIME 15000 #define MIN_SLEEP_TIME 15000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment