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
b02517be
Commit
b02517be
authored
Dec 29, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing <assert.h>
parent
09ea1908
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
10 deletions
+7
-10
modules/codec/lpcm.c
modules/codec/lpcm.c
+1
-0
modules/control/rc.c
modules/control/rc.c
+2
-1
modules/mux/mpeg/pes.c
modules/mux/mpeg/pes.c
+1
-9
modules/packetizer/mlp.c
modules/packetizer/mlp.c
+1
-0
modules/stream_out/record.c
modules/stream_out/record.c
+1
-0
modules/video_filter/yuvp.c
modules/video_filter/yuvp.c
+1
-0
No files found.
modules/codec/lpcm.c
View file @
b02517be
...
...
@@ -36,6 +36,7 @@
#include <vlc_plugin.h>
#include <vlc_codec.h>
#include <vlc_aout.h>
#include <assert.h>
/*****************************************************************************
* Module descriptor
...
...
modules/control/rc.c
View file @
b02517be
...
...
@@ -35,6 +35,7 @@
#include <errno.h>
/* ENOMEM */
#include <ctype.h>
#include <signal.h>
#include <assert.h>
#include <vlc_interface.h>
#include <vlc_aout.h>
...
...
@@ -1726,7 +1727,7 @@ static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd,
psz_variable
=
"video-snapshot"
;
}
else
/* This case can't happen
d
*/
/* This case can't happen */
assert
(
0
);
if
(
newval
.
psz_string
&&
*
newval
.
psz_string
)
...
...
modules/mux/mpeg/pes.c
View file @
b02517be
...
...
@@ -30,18 +30,10 @@
# include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <vlc_common.h>
#include <vlc_sout.h>
#include <vlc_block.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <assert.h>
#include <vlc_codecs.h>
#include "pes.h"
...
...
modules/packetizer/mlp.c
View file @
b02517be
...
...
@@ -34,6 +34,7 @@
#include <vlc_aout.h>
#include <vlc_block_helper.h>
#include <vlc_bits.h>
#include <assert.h>
/*****************************************************************************
* Module descriptor
...
...
modules/stream_out/record.c
View file @
b02517be
...
...
@@ -36,6 +36,7 @@
#include <vlc_block.h>
#include <vlc_sout.h>
#include <vlc_charset.h>
#include <assert.h>
/*****************************************************************************
* Exported prototypes
...
...
modules/video_filter/yuvp.c
View file @
b02517be
...
...
@@ -32,6 +32,7 @@
#include <vlc_plugin.h>
#include <vlc_vout.h>
#include "vlc_filter.h"
#include <assert.h>
/* TODO:
* Add anti-aliasing support (specially for DVD where only 4 colors are used)
...
...
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