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
1b67b68a
Commit
1b67b68a
authored
Sep 05, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#include order
parent
5661b194
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
21 deletions
+17
-21
modules/misc/freetype.c
modules/misc/freetype.c
+6
-9
modules/misc/logger.c
modules/misc/logger.c
+5
-5
modules/misc/notify/notify.c
modules/misc/notify/notify.c
+4
-5
modules/misc/rtsp.c
modules/misc/rtsp.c
+2
-2
No files found.
modules/misc/freetype.c
View file @
1b67b68a
#include <time.h>
/*****************************************************************************
* freetype.c : Put text on the video, using freetype2
*****************************************************************************
...
...
@@ -28,10 +27,6 @@
* Preamble
*****************************************************************************/
#ifdef HAVE_LINUX_LIMITS_H
# include <linux/limits.h>
#endif
#include <vlc/vlc.h>
#include <vlc_vout.h>
#include <vlc_osd.h>
...
...
@@ -41,12 +36,14 @@
#include <vlc_xml.h>
#include <vlc_input.h>
#include <math.h>
#ifdef HAVE_ERRNO_H
# include <errno.h>
#ifdef HAVE_LINUX_LIMITS_H
# include <linux/limits.h>
#endif
#include <time.h>
#include <math.h>
#include <errno.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_GLYPH_H
...
...
modules/misc/logger.c
View file @
1b67b68a
...
...
@@ -25,17 +25,17 @@
* Preamble
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_charset.h>
#include <errno.h>
/* ENOMEM */
#ifdef UNDER_CE
# define _IONBF 0x0004
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_charset.h>
#define MODE_TEXT 0
#define MODE_HTML 1
#define MODE_SYSLOG 2
...
...
modules/misc/notify/notify.c
View file @
1b67b68a
...
...
@@ -24,16 +24,15 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <errno.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnotify/notify.h>
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_meta.h>
#include <errno.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libnotify/notify.h>
/*****************************************************************************
* Local prototypes
*****************************************************************************/
...
...
modules/misc/rtsp.c
View file @
1b67b68a
...
...
@@ -26,8 +26,6 @@
* Preamble
*****************************************************************************/
#include <errno.h>
#include <vlc/vlc.h>
#include <vlc_input.h>
#include <vlc_sout.h>
...
...
@@ -40,6 +38,8 @@
#include <vlc_charset.h>
#include <vlc_strings.h>
#include <errno.h>
/*****************************************************************************
* Module descriptor
*****************************************************************************/
...
...
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