Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
0f40c909
Commit
0f40c909
authored
Apr 14, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop pointless assert.h #includes
parent
74d98d1b
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
3 additions
and
51 deletions
+3
-51
avconv_vdpau.c
avconv_vdpau.c
+0
-1
ac3dsp.c
libavcodec/ac3dsp.c
+0
-1
ffv1.c
libavcodec/ffv1.c
+1
-1
h264.c
libavcodec/h264.c
+0
-1
libopusdec.c
libavcodec/libopusdec.c
+1
-1
libschroedingerdec.c
libavcodec/libschroedingerdec.c
+0
-4
mjpegenc.c
libavcodec/mjpegenc.c
+0
-2
qdm2.c
libavcodec/qdm2.c
+0
-3
svq1dec.c
libavcodec/svq1dec.c
+0
-3
vc1.c
libavcodec/vc1.c
+0
-3
vdpau.c
libavcodec/vdpau.c
+1
-5
wma.c
libavcodec/wma.c
+0
-3
wmadec.c
libavcodec/wmadec.c
+0
-3
vf_hwdownload.c
libavfilter/vf_hwdownload.c
+0
-1
vf_pad.c
libavfilter/vf_pad.c
+0
-1
asfdec.c
libavformat/asfdec.c
+0
-1
mov.c
libavformat/mov.c
+0
-3
movenc.c
libavformat/movenc.c
+0
-3
mpeg.c
libavformat/mpeg.c
+0
-3
mux.c
libavformat/mux.c
+0
-1
swf.h
libavformat/swf.h
+0
-3
output.c
libswscale/output.c
+0
-1
yuv2rgb_altivec.c
libswscale/ppc/yuv2rgb_altivec.c
+0
-1
yuv2rgb.c
libswscale/x86/yuv2rgb.c
+0
-1
tiny_psnr.c
tests/tiny_psnr.c
+0
-1
No files found.
avconv_vdpau.c
View file @
0f40c909
...
...
@@ -27,7 +27,6 @@
#include "libavcodec/vdpau.h"
#include "libavutil/avassert.h"
#include "libavutil/buffer.h"
#include "libavutil/frame.h"
#include "libavutil/hwcontext.h"
...
...
libavcodec/ac3dsp.c
View file @
0f40c909
...
...
@@ -19,7 +19,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "ac3.h"
#include "ac3dsp.h"
...
...
libavcodec/ffv1.c
View file @
0f40c909
...
...
@@ -26,7 +26,7 @@
*/
#include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "get_bits.h"
#include "put_bits.h"
...
...
libavcodec/h264.c
View file @
0f40c909
...
...
@@ -25,7 +25,6 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#include "libavutil/avassert.h"
#include "libavutil/display.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
...
...
libavcodec/libopusdec.c
View file @
0f40c909
...
...
@@ -22,8 +22,8 @@
#include <opus.h>
#include <opus_multistream.h>
#include "libavutil/avassert.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"
#include "vorbis.h"
...
...
libavcodec/libschroedingerdec.c
View file @
0f40c909
...
...
@@ -37,10 +37,6 @@
#include "internal.h"
#include "libschroedinger.h"
#undef NDEBUG
#include <assert.h>
#include <schroedinger/schro.h>
#include <schroedinger/schrodebug.h>
#include <schroedinger/schrovideoformat.h>
...
...
libavcodec/mjpegenc.c
View file @
0f40c909
...
...
@@ -30,8 +30,6 @@
* MJPEG encoder.
*/
#include <assert.h>
#include "libavutil/pixdesc.h"
#include "avcodec.h"
...
...
libavcodec/qdm2.c
View file @
0f40c909
...
...
@@ -47,9 +47,6 @@
#include "qdm2data.h"
#include "qdm2_tablegen.h"
#undef NDEBUG
#include <assert.h>
#define QDM2_LIST_ADD(list, size, packet) \
do { \
...
...
libavcodec/svq1dec.c
View file @
0f40c909
...
...
@@ -40,9 +40,6 @@
#include "mathops.h"
#include "svq1.h"
#undef NDEBUG
#include <assert.h>
static
VLC
svq1_block_type
;
static
VLC
svq1_motion_component
;
static
VLC
svq1_intra_multistage
[
6
];
...
...
libavcodec/vc1.c
View file @
0f40c909
...
...
@@ -36,9 +36,6 @@
#include "unary.h"
#include "simple_idct.h"
#undef NDEBUG
#include <assert.h>
/***********************************************************************/
/**
* @name VC-1 Bitplane decoding
...
...
libavcodec/vdpau.c
View file @
0f40c909
...
...
@@ -22,15 +22,11 @@
*/
#include <limits.h>
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "internal.h"
#include "h264.h"
#include "vc1.h"
#undef NDEBUG
#include <assert.h>
#include "vdpau.h"
#include "vdpau_internal.h"
...
...
libavcodec/wma.c
View file @
0f40c909
...
...
@@ -29,9 +29,6 @@
#include "wma_freqs.h"
#include "wmadata.h"
#undef NDEBUG
#include <assert.h>
/* XXX: use same run/length optimization as mpeg decoders */
// FIXME maybe split decode / encode or pass flag
static
av_cold
int
init_coef_vlc
(
VLC
*
vlc
,
uint16_t
**
prun_table
,
...
...
libavcodec/wmadec.c
View file @
0f40c909
...
...
@@ -39,9 +39,6 @@
#include "internal.h"
#include "wma.h"
#undef NDEBUG
#include <assert.h>
#define EXPVLCBITS 8
#define EXPMAX ((19 + EXPVLCBITS - 1) / EXPVLCBITS)
...
...
libavfilter/vf_hwdownload.c
View file @
0f40c909
...
...
@@ -16,7 +16,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/avassert.h"
#include "libavutil/buffer.h"
#include "libavutil/hwcontext.h"
#include "libavutil/log.h"
...
...
libavfilter/vf_pad.c
View file @
0f40c909
...
...
@@ -33,7 +33,6 @@
#include "libavutil/eval.h"
#include "libavutil/pixdesc.h"
#include "libavutil/colorspace.h"
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/parseutils.h"
#include "libavutil/mathematics.h"
...
...
libavformat/asfdec.c
View file @
0f40c909
...
...
@@ -20,7 +20,6 @@
*/
#include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/bswap.h"
#include "libavutil/common.h"
...
...
libavformat/mov.c
View file @
0f40c909
...
...
@@ -54,9 +54,6 @@
#include "qtpalette.h"
#undef NDEBUG
#include <assert.h>
/* those functions parse an atom */
/* links atom IDs to parse functions */
typedef
struct
MOVParseTableEntry
{
...
...
libavformat/movenc.c
View file @
0f40c909
...
...
@@ -44,9 +44,6 @@
#include "rtpenc.h"
#include "mov_chan.h"
#undef NDEBUG
#include <assert.h>
static
const
AVOption
options
[]
=
{
{
"movflags"
,
"MOV muxer flags"
,
offsetof
(
MOVMuxContext
,
flags
),
AV_OPT_TYPE_FLAGS
,
{.
i64
=
0
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
,
"movflags"
},
{
"rtphint"
,
"Add RTP hint tracks"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MOV_FLAG_RTP_HINT
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
,
"movflags"
},
...
...
libavformat/mpeg.c
View file @
0f40c909
...
...
@@ -23,9 +23,6 @@
#include "internal.h"
#include "mpeg.h"
#undef NDEBUG
#include <assert.h>
/*********************************************/
/* demux code */
...
...
libavformat/mux.c
View file @
0f40c909
...
...
@@ -29,7 +29,6 @@
#include "libavutil/pixdesc.h"
#include "metadata.h"
#include "id3v2.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/internal.h"
#include "libavutil/mathematics.h"
...
...
libavformat/swf.h
View file @
0f40c909
...
...
@@ -67,9 +67,6 @@
#define VIDEO_ID 0
#define SHAPE_ID 1
#undef NDEBUG
#include <assert.h>
typedef
struct
SWFContext
{
int64_t
duration_pos
;
int64_t
tag_pos
;
...
...
libswscale/output.c
View file @
0f40c909
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <assert.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
...
...
libswscale/ppc/yuv2rgb_altivec.c
View file @
0f40c909
...
...
@@ -89,7 +89,6 @@
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <assert.h>
#include "config.h"
#include "libswscale/rgb2rgb.h"
...
...
libswscale/x86/yuv2rgb.c
View file @
0f40c909
...
...
@@ -27,7 +27,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <assert.h>
#include "config.h"
#include "libswscale/rgb2rgb.h"
...
...
tests/tiny_psnr.c
View file @
0f40c909
...
...
@@ -22,7 +22,6 @@
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <assert.h>
#include <math.h>
#include <float.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