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
3dc6272b
Commit
3dc6272b
authored
Mar 26, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a number of unnecessary dsputil.h #includes
parent
9c21c08f
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
6 additions
and
13 deletions
+6
-13
vp3dsp_init_arm.c
libavcodec/arm/vp3dsp_init_arm.c
+0
-1
binkdsp.c
libavcodec/binkdsp.c
+0
-1
dvbsubdec.c
libavcodec/dvbsubdec.c
+1
-1
dvdsubdec.c
libavcodec/dvdsubdec.c
+1
-1
h264pred.c
libavcodec/h264pred.c
+2
-1
indeo5.c
libavcodec/indeo5.c
+0
-1
mpeg12.c
libavcodec/mpeg12.c
+0
-1
msmpeg4dec.c
libavcodec/msmpeg4dec.c
+0
-1
mss4.c
libavcodec/mss4.c
+0
-1
vc1dsp.c
libavcodec/vc1dsp.c
+1
-0
vc1dsp.h
libavcodec/vc1dsp.h
+0
-1
vp3dsp.c
libavcodec/vp3dsp.c
+1
-1
vp56.h
libavcodec/vp56.h
+0
-1
vp3dsp_init.c
libavcodec/x86/vp3dsp_init.c
+0
-1
No files found.
libavcodec/arm/vp3dsp_init_arm.c
View file @
3dc6272b
...
...
@@ -21,7 +21,6 @@
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/arm/cpu.h"
#include "libavcodec/dsputil.h"
#include "libavcodec/vp3dsp.h"
void
ff_vp3_idct_put_neon
(
uint8_t
*
dest
,
int
line_size
,
int16_t
*
data
);
...
...
libavcodec/binkdsp.c
View file @
3dc6272b
...
...
@@ -25,7 +25,6 @@
*/
#include "libavutil/attributes.h"
#include "dsputil.h"
#include "binkdsp.h"
#define A1 2896
/* (1/sqrt(2))<<12 */
...
...
libavcodec/dvbsubdec.c
View file @
3dc6272b
...
...
@@ -18,8 +18,8 @@
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avcodec.h"
#include "dsputil.h"
#include "get_bits.h"
#include "bytestream.h"
#include "libavutil/colorspace.h"
...
...
libavcodec/dvdsubdec.c
View file @
3dc6272b
...
...
@@ -18,9 +18,9 @@
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avcodec.h"
#include "get_bits.h"
#include "dsputil.h"
#include "internal.h"
#include "libavutil/attributes.h"
...
...
libavcodec/h264pred.c
View file @
3dc6272b
...
...
@@ -26,7 +26,8 @@
*/
#include "libavutil/attributes.h"
#include "dsputil.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "h264pred.h"
#define BIT_DEPTH 8
...
...
libavcodec/indeo5.c
View file @
3dc6272b
...
...
@@ -30,7 +30,6 @@
#define BITSTREAM_READER_LE
#include "avcodec.h"
#include "get_bits.h"
#include "dsputil.h"
#include "ivi_dsp.h"
#include "ivi_common.h"
#include "indeo5data.h"
...
...
libavcodec/mpeg12.c
View file @
3dc6272b
...
...
@@ -28,7 +28,6 @@
#include "libavutil/attributes.h"
#include "internal.h"
#include "avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"
#include "error_resilience.h"
#include "mpeg12.h"
...
...
libavcodec/msmpeg4dec.c
View file @
3dc6272b
...
...
@@ -23,7 +23,6 @@
*/
#include "avcodec.h"
#include "dsputil.h"
#include "mpegutils.h"
#include "mpegvideo.h"
#include "msmpeg4.h"
...
...
libavcodec/mss4.c
View file @
3dc6272b
...
...
@@ -27,7 +27,6 @@
#include "avcodec.h"
#include "bytestream.h"
#include "dsputil.h"
#include "get_bits.h"
#include "internal.h"
#include "mss34dsp.h"
...
...
libavcodec/vc1dsp.c
View file @
3dc6272b
...
...
@@ -26,6 +26,7 @@
*/
#include "libavutil/common.h"
#include "dsputil.h"
#include "h264chroma.h"
#include "vc1dsp.h"
...
...
libavcodec/vc1dsp.h
View file @
3dc6272b
...
...
@@ -28,7 +28,6 @@
#ifndef AVCODEC_VC1DSP_H
#define AVCODEC_VC1DSP_H
#include "dsputil.h"
#include "hpeldsp.h"
#include "h264chroma.h"
...
...
libavcodec/vp3dsp.c
View file @
3dc6272b
...
...
@@ -25,11 +25,11 @@
*/
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "dsputil.h"
#include "rnd_avg.h"
#include "vp3dsp.h"
...
...
libavcodec/vp56.h
View file @
3dc6272b
...
...
@@ -26,7 +26,6 @@
#ifndef AVCODEC_VP56_H
#define AVCODEC_VP56_H
#include "dsputil.h"
#include "get_bits.h"
#include "hpeldsp.h"
#include "bytestream.h"
...
...
libavcodec/x86/vp3dsp_init.c
View file @
3dc6272b
...
...
@@ -22,7 +22,6 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/dsputil.h"
#include "libavcodec/vp3dsp.h"
#include "config.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