Commit b02517be authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing <assert.h>

parent 09ea1908
......@@ -36,6 +36,7 @@
#include <vlc_plugin.h>
#include <vlc_codec.h>
#include <vlc_aout.h>
#include <assert.h>
/*****************************************************************************
* Module descriptor
......
......@@ -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 happend */
/* This case can't happen */
assert( 0 );
if( newval.psz_string && *newval.psz_string )
......
......@@ -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"
......
......@@ -34,6 +34,7 @@
#include <vlc_aout.h>
#include <vlc_block_helper.h>
#include <vlc_bits.h>
#include <assert.h>
/*****************************************************************************
* Module descriptor
......
......@@ -36,6 +36,7 @@
#include <vlc_block.h>
#include <vlc_sout.h>
#include <vlc_charset.h>
#include <assert.h>
/*****************************************************************************
* Exported prototypes
......
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment