Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
83f23b66
Commit
83f23b66
authored
Sep 12, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ahem: (v)asprintf requires stdio.h; strndup requires string.h
parent
ecddc275
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
50 additions
and
17 deletions
+50
-17
src/audio_output/input.c
src/audio_output/input.c
+4
-1
src/input/control.c
src/input/control.c
+3
-1
src/input/es_out.c
src/input/es_out.c
+3
-1
src/input/var.c
src/input/var.c
+2
-1
src/interface/interaction.c
src/interface/interaction.c
+3
-1
src/misc/messages.c
src/misc/messages.c
+3
-1
src/misc/modules.c
src/misc/modules.c
+2
-1
src/misc/mtime.c
src/misc/mtime.c
+3
-1
src/misc/update.c
src/misc/update.c
+4
-1
src/misc/vlm.c
src/misc/vlm.c
+3
-2
src/network/httpd.c
src/network/httpd.c
+3
-1
src/network/io.c
src/network/io.c
+4
-1
src/stream_output/sap.c
src/stream_output/sap.c
+3
-1
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+3
-1
src/video_output/video_output.c
src/video_output/video_output.c
+3
-1
src/video_output/vout_intf.c
src/video_output/vout_intf.c
+4
-1
No files found.
src/audio_output/input.c
View file @
83f23b66
...
@@ -24,10 +24,13 @@
...
@@ -24,10 +24,13 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
/* calloc(), malloc(), free() */
#include <stdlib.h>
/* calloc(), malloc(), free() */
#include <string.h>
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/input.h>
/* for input_thread_t and i_pts_delay */
#include <vlc/input.h>
/* for input_thread_t and i_pts_delay */
#ifdef HAVE_ALLOCA_H
#ifdef HAVE_ALLOCA_H
...
...
src/input/control.c
View file @
83f23b66
...
@@ -21,8 +21,10 @@
...
@@ -21,8 +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.
*****************************************************************************/
*****************************************************************************/
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
#include <vlc/input.h>
#include <vlc/input.h>
#include "input_internal.h"
#include "input_internal.h"
...
...
src/input/es_out.c
View file @
83f23b66
...
@@ -25,9 +25,11 @@
...
@@ -25,9 +25,11 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/input.h>
#include <vlc/input.h>
#include <vlc/decoder.h>
#include <vlc/decoder.h>
...
...
src/input/var.c
View file @
83f23b66
...
@@ -24,8 +24,9 @@
...
@@ -24,8 +24,9 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
#include <vlc/input.h>
#include <vlc/input.h>
#include "input_internal.h"
#include "input_internal.h"
...
...
src/interface/interaction.c
View file @
83f23b66
...
@@ -30,11 +30,13 @@
...
@@ -30,11 +30,13 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdlib.h>
/* free(), strtol() */
#include <stdlib.h>
/* free(), strtol() */
#include <stdio.h>
/* FILE */
#include <stdio.h>
/* FILE */
#include <string.h>
/* strerror() */
#include <string.h>
/* strerror() */
#include <vlc/vlc.h>
#include <vlc/input.h>
#include <vlc/input.h>
#include <assert.h>
#include <assert.h>
...
...
src/misc/messages.c
View file @
83f23b66
...
@@ -27,12 +27,14 @@
...
@@ -27,12 +27,14 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
/* required */
#include <stdio.h>
/* required */
#include <stdarg.h>
/* va_list for BSD */
#include <stdarg.h>
/* va_list for BSD */
#include <stdlib.h>
/* malloc() */
#include <stdlib.h>
/* malloc() */
#include <string.h>
/* strerror() */
#include <string.h>
/* strerror() */
#include <vlc/vlc.h>
#ifdef HAVE_FCNTL_H
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
/* O_CREAT, O_TRUNC, O_WRONLY, O_SYNC */
# include <fcntl.h>
/* O_CREAT, O_TRUNC, O_WRONLY, O_SYNC */
...
...
src/misc/modules.c
View file @
83f23b66
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
/* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
/* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
* is set to 64. Don't try to be cleverer. */
* is set to 64. Don't try to be cleverer. */
#ifdef _FILE_OFFSET_BITS
#ifdef _FILE_OFFSET_BITS
...
@@ -34,7 +36,6 @@
...
@@ -34,7 +36,6 @@
#include <stdio.h>
/* sprintf() */
#include <stdio.h>
/* sprintf() */
#include <string.h>
/* strdup() */
#include <string.h>
/* strdup() */
#include <vlc/vlc.h>
#include <vlc/input.h>
#include <vlc/input.h>
#ifdef HAVE_DIRENT_H
#ifdef HAVE_DIRENT_H
...
...
src/misc/mtime.c
View file @
83f23b66
...
@@ -26,11 +26,13 @@
...
@@ -26,11 +26,13 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
/* sprintf() */
#include <stdio.h>
/* sprintf() */
#include <time.h>
/* clock_gettime(), clock_nanosleep() */
#include <time.h>
/* clock_gettime(), clock_nanosleep() */
#include <stdlib.h>
/* lldiv() */
#include <stdlib.h>
/* lldiv() */
#include <vlc/vlc.h>
#if defined( PTH_INIT_IN_PTH_H )
/* GNU Pth */
#if defined( PTH_INIT_IN_PTH_H )
/* GNU Pth */
# include <pth.h>
# include <pth.h>
...
...
src/misc/update.c
View file @
83f23b66
...
@@ -34,10 +34,13 @@
...
@@ -34,10 +34,13 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <ctype.h>
/* tolower() */
#include <ctype.h>
/* tolower() */
#include <vlc/vlc.h>
#include "vlc_update.h"
#include "vlc_update.h"
...
...
src/misc/vlm.c
View file @
83f23b66
...
@@ -26,11 +26,12 @@
...
@@ -26,11 +26,12 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <ctype.h>
/* tolower() */
#include <ctype.h>
/* tolower() */
#include <vlc/vlc.h>
#ifdef ENABLE_VLM
#ifdef ENABLE_VLM
#include <vlc/intf.h>
#include <vlc/intf.h>
...
...
src/network/httpd.c
View file @
83f23b66
...
@@ -22,9 +22,11 @@
...
@@ -22,9 +22,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef ENABLE_HTTPD
#ifdef ENABLE_HTTPD
#include <assert.h>
#include <assert.h>
...
...
src/network/io.c
View file @
83f23b66
...
@@ -26,9 +26,12 @@
...
@@ -26,9 +26,12 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <errno.h>
#include <assert.h>
#include <assert.h>
...
...
src/stream_output/sap.c
View file @
83f23b66
...
@@ -25,12 +25,14 @@
...
@@ -25,12 +25,14 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdlib.h>
/* free() */
#include <stdlib.h>
/* free() */
#include <stdio.h>
/* sprintf() */
#include <stdio.h>
/* sprintf() */
#include <string.h>
/* strerror() */
#include <string.h>
/* strerror() */
#include <ctype.h>
/* tolower(), isxdigit() */
#include <ctype.h>
/* tolower(), isxdigit() */
#include <vlc/vlc.h>
#include <vlc/sout.h>
#include <vlc/sout.h>
#include "network.h"
#include "network.h"
...
...
src/stream_output/stream_output.c
View file @
83f23b66
...
@@ -26,11 +26,13 @@
...
@@ -26,11 +26,13 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdlib.h>
/* free() */
#include <stdlib.h>
/* free() */
#include <stdio.h>
/* sprintf() */
#include <stdio.h>
/* sprintf() */
#include <string.h>
/* strerror() */
#include <string.h>
/* strerror() */
#include <vlc/vlc.h>
#include <vlc/sout.h>
#include <vlc/sout.h>
#include <vlc/input.h>
#include <vlc/input.h>
...
...
src/video_output/video_output.c
View file @
83f23b66
...
@@ -29,9 +29,11 @@
...
@@ -29,9 +29,11 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdlib.h>
/* free() */
#include <stdlib.h>
/* free() */
#include <string.h>
#include <vlc/vlc.h>
#ifdef HAVE_SYS_TIMES_H
#ifdef HAVE_SYS_TIMES_H
# include <sys/times.h>
# include <sys/times.h>
...
...
src/video_output/vout_intf.c
View file @
83f23b66
...
@@ -24,11 +24,14 @@
...
@@ -24,11 +24,14 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <vlc/vlc.h>
#include <stdio.h>
#include <stdlib.h>
/* free() */
#include <stdlib.h>
/* free() */
#include <sys/types.h>
/* opendir() */
#include <sys/types.h>
/* opendir() */
#include <dirent.h>
/* opendir() */
#include <dirent.h>
/* opendir() */
#include <vlc/vlc.h>
#include <vlc/intf.h>
#include <vlc/intf.h>
#include <vlc_block.h>
#include <vlc_block.h>
...
...
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