Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
396ba414
Commit
396ba414
authored
May 03, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config.h must be included first and always
parent
e0dabc42
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
84 additions
and
6 deletions
+84
-6
modules/video_filter/atmo/AtmoCalculations.cpp
modules/video_filter/atmo/AtmoCalculations.cpp
+5
-0
modules/video_filter/atmo/AtmoChannelAssignment.cpp
modules/video_filter/atmo/AtmoChannelAssignment.cpp
+5
-0
modules/video_filter/atmo/AtmoClassicConnection.cpp
modules/video_filter/atmo/AtmoClassicConnection.cpp
+3
-0
modules/video_filter/atmo/AtmoConfig.cpp
modules/video_filter/atmo/AtmoConfig.cpp
+4
-0
modules/video_filter/atmo/AtmoConnection.cpp
modules/video_filter/atmo/AtmoConnection.cpp
+5
-0
modules/video_filter/atmo/AtmoDefs.h
modules/video_filter/atmo/AtmoDefs.h
+0
-1
modules/video_filter/atmo/AtmoDmxSerialConnection.cpp
modules/video_filter/atmo/AtmoDmxSerialConnection.cpp
+5
-0
modules/video_filter/atmo/AtmoDynData.cpp
modules/video_filter/atmo/AtmoDynData.cpp
+4
-0
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
+5
-1
modules/video_filter/atmo/AtmoInput.cpp
modules/video_filter/atmo/AtmoInput.cpp
+5
-0
modules/video_filter/atmo/AtmoLiveView.cpp
modules/video_filter/atmo/AtmoLiveView.cpp
+4
-0
modules/video_filter/atmo/AtmoMultiConnection.cpp
modules/video_filter/atmo/AtmoMultiConnection.cpp
+4
-0
modules/video_filter/atmo/AtmoOutputFilter.cpp
modules/video_filter/atmo/AtmoOutputFilter.cpp
+4
-0
modules/video_filter/atmo/AtmoPacketQueue.cpp
modules/video_filter/atmo/AtmoPacketQueue.cpp
+4
-0
modules/video_filter/atmo/AtmoThread.cpp
modules/video_filter/atmo/AtmoThread.cpp
+5
-0
modules/video_filter/atmo/AtmoTools.cpp
modules/video_filter/atmo/AtmoTools.cpp
+4
-0
modules/video_filter/atmo/AtmoZoneDefinition.cpp
modules/video_filter/atmo/AtmoZoneDefinition.cpp
+4
-0
modules/video_filter/atmo/DmxTools.cpp
modules/video_filter/atmo/DmxTools.cpp
+4
-0
modules/video_filter/atmo/FnordlichtConnection.cpp
modules/video_filter/atmo/FnordlichtConnection.cpp
+3
-0
modules/video_filter/atmo/MoMoConnection.cpp
modules/video_filter/atmo/MoMoConnection.cpp
+3
-0
modules/video_filter/atmo/atmo.cpp
modules/video_filter/atmo/atmo.cpp
+4
-4
No files found.
modules/video_filter/atmo/AtmoCalculations.cpp
View file @
396ba414
...
@@ -5,6 +5,11 @@
...
@@ -5,6 +5,11 @@
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <stdio.h>
#include <stdio.h>
...
...
modules/video_filter/atmo/AtmoChannelAssignment.cpp
View file @
396ba414
...
@@ -6,6 +6,11 @@
...
@@ -6,6 +6,11 @@
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <string.h>
#include <stdlib.h>
#include <stdlib.h>
#include <malloc.h>
#include <malloc.h>
...
...
modules/video_filter/atmo/AtmoClassicConnection.cpp
View file @
396ba414
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "AtmoClassicConnection.h"
#include "AtmoClassicConnection.h"
...
...
modules/video_filter/atmo/AtmoConfig.cpp
View file @
396ba414
...
@@ -7,6 +7,10 @@
...
@@ -7,6 +7,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
...
...
modules/video_filter/atmo/AtmoConnection.cpp
View file @
396ba414
...
@@ -6,6 +6,11 @@
...
@@ -6,6 +6,11 @@
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <string.h>
#include "AtmoConnection.h"
#include "AtmoConnection.h"
...
...
modules/video_filter/atmo/AtmoDefs.h
View file @
396ba414
...
@@ -13,7 +13,6 @@
...
@@ -13,7 +13,6 @@
#if defined(__LIBVLC__)
#if defined(__LIBVLC__)
# include "config.h"
# include <vlc_common.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 */
...
...
modules/video_filter/atmo/AtmoDmxSerialConnection.cpp
View file @
396ba414
...
@@ -8,6 +8,11 @@
...
@@ -8,6 +8,11 @@
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "AtmoDmxSerialConnection.h"
#include "AtmoDmxSerialConnection.h"
#include "DmxTools.h"
#include "DmxTools.h"
...
...
modules/video_filter/atmo/AtmoDynData.cpp
View file @
396ba414
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDynData.h"
#include "AtmoDynData.h"
#if defined(_ATMO_VLC_PLUGIN_)
#if defined(_ATMO_VLC_PLUGIN_)
...
...
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
View file @
396ba414
...
@@ -6,7 +6,11 @@
...
@@ -6,7 +6,11 @@
* See the README.txt file for copyright information and how to reach the author(s).
* See the README.txt file for copyright information and how to reach the author(s).
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoExternalCaptureInput.h"
#include "AtmoExternalCaptureInput.h"
#include "AtmoTools.h"
#include "AtmoTools.h"
...
...
modules/video_filter/atmo/AtmoInput.cpp
View file @
396ba414
...
@@ -7,6 +7,11 @@
...
@@ -7,6 +7,11 @@
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "AtmoInput.h"
#include "AtmoInput.h"
...
...
modules/video_filter/atmo/AtmoLiveView.cpp
View file @
396ba414
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#define __STDC_FORMAT_MACROS 1
#define __STDC_FORMAT_MACROS 1
#include "AtmoDefs.h"
#include "AtmoDefs.h"
...
...
modules/video_filter/atmo/AtmoMultiConnection.cpp
View file @
396ba414
...
@@ -7,6 +7,10 @@
...
@@ -7,6 +7,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "AtmoMultiConnection.h"
#include "AtmoMultiConnection.h"
...
...
modules/video_filter/atmo/AtmoOutputFilter.cpp
View file @
396ba414
...
@@ -9,6 +9,10 @@
...
@@ -9,6 +9,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <string.h>
#include "AtmoOutputFilter.h"
#include "AtmoOutputFilter.h"
...
...
modules/video_filter/atmo/AtmoPacketQueue.cpp
View file @
396ba414
...
@@ -9,6 +9,10 @@
...
@@ -9,6 +9,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "AtmoPacketQueue.h"
#include "AtmoPacketQueue.h"
...
...
modules/video_filter/atmo/AtmoThread.cpp
View file @
396ba414
...
@@ -5,6 +5,11 @@
...
@@ -5,6 +5,11 @@
*
*
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoThread.h"
#include "AtmoThread.h"
#if defined(_ATMO_VLC_PLUGIN_)
#if defined(_ATMO_VLC_PLUGIN_)
...
...
modules/video_filter/atmo/AtmoTools.cpp
View file @
396ba414
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoTools.h"
#include "AtmoTools.h"
#include "AtmoDynData.h"
#include "AtmoDynData.h"
#include "AtmoLiveView.h"
#include "AtmoLiveView.h"
...
...
modules/video_filter/atmo/AtmoZoneDefinition.cpp
View file @
396ba414
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#if defined (WIN32)
#if defined (WIN32)
...
...
modules/video_filter/atmo/DmxTools.cpp
View file @
396ba414
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
...
...
modules/video_filter/atmo/FnordlichtConnection.cpp
View file @
396ba414
...
@@ -22,6 +22,9 @@
...
@@ -22,6 +22,9 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "FnordlichtConnection.h"
#include "FnordlichtConnection.h"
...
...
modules/video_filter/atmo/MoMoConnection.cpp
View file @
396ba414
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
* $Id$
* $Id$
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "AtmoDefs.h"
#include "AtmoDefs.h"
#include "MoMoConnection.h"
#include "MoMoConnection.h"
...
...
modules/video_filter/atmo/atmo.cpp
View file @
396ba414
...
@@ -21,6 +21,10 @@
...
@@ -21,6 +21,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
...
@@ -30,10 +34,6 @@
...
@@ -30,10 +34,6 @@
#include <math.h>
/* sin(), cos() */
#include <math.h>
/* sin(), cos() */
#include <assert.h>
#include <assert.h>
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
// #define __ATMO_DEBUG__
// #define __ATMO_DEBUG__
// [:Zs]+$
// [:Zs]+$
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment