Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e539c5ce
Commit
e539c5ce
authored
May 07, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config.h MUST ALWAYS BE INCLUDED _FIRST_! Fix Windows warnings.
How many times does this have to be spelt?!
parent
9887eecc
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
modules/video_filter/deinterlace/algo_basic.c
modules/video_filter/deinterlace/algo_basic.c
+4
-0
modules/video_filter/deinterlace/merge.c
modules/video_filter/deinterlace/merge.c
+4
-2
modules/video_filter/deinterlace/merge.h
modules/video_filter/deinterlace/merge.h
+0
-4
No files found.
modules/video_filter/deinterlace/algo_basic.c
View file @
e539c5ce
...
@@ -23,6 +23,10 @@
...
@@ -23,6 +23,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
#include <stdint.h>
#include <stdint.h>
#include <vlc_common.h>
#include <vlc_common.h>
...
...
modules/video_filter/deinterlace/merge.c
View file @
e539c5ce
...
@@ -24,11 +24,13 @@
...
@@ -24,11 +24,13 @@
* 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
#include <stdlib.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdint.h>
/* This handles including config.h, because the config
is already needed in the header. */
#include "merge.h"
#include "merge.h"
#ifdef CAN_COMPILE_MMXEXT
#ifdef CAN_COMPILE_MMXEXT
...
...
modules/video_filter/deinterlace/merge.h
View file @
e539c5ce
...
@@ -32,10 +32,6 @@
...
@@ -32,10 +32,6 @@
* Merge (line blending) routines for the VLC deinterlacer.
* Merge (line blending) routines for the VLC deinterlacer.
*/
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/*****************************************************************************
/*****************************************************************************
* Macros
* Macros
*****************************************************************************/
*****************************************************************************/
...
...
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