Changeset 1b67b68abd876b96c8dd7222fa23e34f028ff7c2
- Timestamp:
- 05/09/07 15:51:21
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1189000281 +0000
- git-parent:
[5661b194b13f2352b14ca9da3371523f5c0a124c]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1189000281 +0000
- Message:
#include order
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra27798f |
r1b67b68 |
|
| 1 | | #include <time.h> |
|---|
| 2 | 1 | /***************************************************************************** |
|---|
| 3 | 2 | * freetype.c : Put text on the video, using freetype2 |
|---|
| … | … | |
| 29 | 28 | *****************************************************************************/ |
|---|
| 30 | 29 | |
|---|
| 31 | | #ifdef HAVE_LINUX_LIMITS_H |
|---|
| 32 | | # include <linux/limits.h> |
|---|
| 33 | | #endif |
|---|
| 34 | | |
|---|
| 35 | 30 | #include <vlc/vlc.h> |
|---|
| 36 | 31 | #include <vlc_vout.h> |
|---|
| … | … | |
| 42 | 37 | #include <vlc_input.h> |
|---|
| 43 | 38 | |
|---|
| | 39 | #ifdef HAVE_LINUX_LIMITS_H |
|---|
| | 40 | # include <linux/limits.h> |
|---|
| | 41 | #endif |
|---|
| | 42 | |
|---|
| | 43 | #include <time.h> |
|---|
| 44 | 44 | #include <math.h> |
|---|
| 45 | | |
|---|
| 46 | | #ifdef HAVE_ERRNO_H |
|---|
| 47 | | # include <errno.h> |
|---|
| 48 | | #endif |
|---|
| | 45 | #include <errno.h> |
|---|
| 49 | 46 | |
|---|
| 50 | 47 | #include <ft2build.h> |
|---|
| r9e595c9 |
r1b67b68 |
|
| 26 | 26 | *****************************************************************************/ |
|---|
| 27 | 27 | |
|---|
| 28 | | #include <errno.h> /* ENOMEM */ |
|---|
| 29 | | |
|---|
| 30 | | #ifdef UNDER_CE |
|---|
| 31 | | # define _IONBF 0x0004 |
|---|
| 32 | | #endif |
|---|
| 33 | | |
|---|
| 34 | 28 | #include <vlc/vlc.h> |
|---|
| 35 | 29 | #include <vlc_interface.h> |
|---|
| 36 | 30 | #include <vlc_playlist.h> |
|---|
| 37 | 31 | #include <vlc_charset.h> |
|---|
| | 32 | |
|---|
| | 33 | #include <errno.h> /* ENOMEM */ |
|---|
| | 34 | |
|---|
| | 35 | #ifdef UNDER_CE |
|---|
| | 36 | # define _IONBF 0x0004 |
|---|
| | 37 | #endif |
|---|
| 38 | 38 | |
|---|
| 39 | 39 | #define MODE_TEXT 0 |
|---|
| r7c53b89 |
r1b67b68 |
|
| 25 | 25 | * Preamble |
|---|
| 26 | 26 | *****************************************************************************/ |
|---|
| 27 | | #include <errno.h> |
|---|
| 28 | | |
|---|
| 29 | | #include <gdk-pixbuf/gdk-pixbuf.h> |
|---|
| 30 | | #include <libnotify/notify.h> |
|---|
| 31 | | |
|---|
| 32 | 27 | #include <vlc/vlc.h> |
|---|
| 33 | 28 | #include <vlc_interface.h> |
|---|
| 34 | 29 | #include <vlc_playlist.h> |
|---|
| 35 | 30 | #include <vlc_meta.h> |
|---|
| | 31 | |
|---|
| | 32 | #include <errno.h> |
|---|
| | 33 | #include <gdk-pixbuf/gdk-pixbuf.h> |
|---|
| | 34 | #include <libnotify/notify.h> |
|---|
| 36 | 35 | |
|---|
| 37 | 36 | /***************************************************************************** |
|---|
| r256df85 |
r1b67b68 |
|
| 27 | 27 | *****************************************************************************/ |
|---|
| 28 | 28 | |
|---|
| 29 | | #include <errno.h> |
|---|
| 30 | | |
|---|
| 31 | 29 | #include <vlc/vlc.h> |
|---|
| 32 | 30 | #include <vlc_input.h> |
|---|
| … | … | |
| 40 | 38 | #include <vlc_charset.h> |
|---|
| 41 | 39 | #include <vlc_strings.h> |
|---|
| | 40 | |
|---|
| | 41 | #include <errno.h> |
|---|
| 42 | 42 | |
|---|
| 43 | 43 | /***************************************************************************** |
|---|