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
5c31eaa9
Commit
5c31eaa9
authored
Apr 23, 2016
by
Alexandra Hájková
Committed by
Diego Biurrun
May 04, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary get_bits.h #includes and add missing headers where needed.
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
c11c693a
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
19 additions
and
13 deletions
+19
-13
adpcmenc.c
libavcodec/adpcmenc.c
+0
-1
cabac.c
libavcodec/cabac.c
+1
-1
ffv1enc.c
libavcodec/ffv1enc.c
+1
-1
huffman.c
libavcodec/huffman.c
+0
-1
iff.c
libavcodec/iff.c
+1
-1
yop.c
libavcodec/yop.c
+4
-2
mpc.c
libavformat/mpc.c
+1
-1
oggparseogm.c
libavformat/oggparseogm.c
+3
-1
oggparsespeex.c
libavformat/oggparsespeex.c
+3
-1
oggparsevorbis.c
libavformat/oggparsevorbis.c
+2
-1
tta.c
libavformat/tta.c
+3
-2
No files found.
libavcodec/adpcmenc.c
View file @
5c31eaa9
...
...
@@ -23,7 +23,6 @@
*/
#include "avcodec.h"
#include "get_bits.h"
#include "put_bits.h"
#include "bytestream.h"
#include "adpcm.h"
...
...
libavcodec/cabac.c
View file @
5c31eaa9
...
...
@@ -27,7 +27,7 @@
#include <string.h>
#include "libavutil/common.h"
#include "get_bits.h"
#include "cabac.h"
#include "cabac_functions.h"
...
...
libavcodec/ffv1enc.c
View file @
5c31eaa9
...
...
@@ -31,9 +31,9 @@
#include "libavutil/crc.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "internal.h"
#include "get_bits.h"
#include "put_bits.h"
#include "rangecoder.h"
#include "golomb.h"
...
...
libavcodec/huffman.c
View file @
5c31eaa9
...
...
@@ -27,7 +27,6 @@
#include <stdint.h>
#include "avcodec.h"
#include "get_bits.h"
#include "huffman.h"
/* symbol for Huffman tree node */
...
...
libavcodec/iff.c
View file @
5c31eaa9
...
...
@@ -28,9 +28,9 @@
#include <stdint.h>
#include "libavutil/imgutils.h"
#include "bytestream.h"
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
typedef
struct
IffContext
{
...
...
libavcodec/yop.c
View file @
5c31eaa9
...
...
@@ -22,11 +22,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/intreadwrite.h"
#include <string.h>
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
typedef
struct
YopDecContext
{
...
...
libavformat/mpc.c
View file @
5c31eaa9
...
...
@@ -20,7 +20,7 @@
*/
#include "libavutil/channel_layout.h"
#include "libavcodec/get_bits.h"
#include "avformat.h"
#include "internal.h"
#include "apetag.h"
...
...
libavformat/oggparseogm.c
View file @
5c31eaa9
...
...
@@ -23,9 +23,11 @@
**/
#include <stdlib.h>
#include "libavutil/intreadwrite.h"
#include "libavcodec/get_bits.h"
#include "libavcodec/bytestream.h"
#include "avformat.h"
#include "internal.h"
#include "oggdec.h"
...
...
libavformat/oggparsespeex.c
View file @
5c31eaa9
...
...
@@ -23,11 +23,13 @@
**/
#include <stdlib.h>
#include "libavutil/bswap.h"
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavcodec/get_bits.h"
#include "libavcodec/bytestream.h"
#include "avformat.h"
#include "internal.h"
#include "oggdec.h"
...
...
libavformat/oggparsevorbis.c
View file @
5c31eaa9
...
...
@@ -28,9 +28,10 @@
#include "libavutil/base64.h"
#include "libavutil/bswap.h"
#include "libavutil/dict.h"
#include "libavcodec/bytestream.h"
#include "libavcodec/get_bits.h"
#include "libavcodec/vorbis_parser.h"
#include "avformat.h"
#include "flac_picture.h"
#include "internal.h"
...
...
libavformat/tta.c
View file @
5c31eaa9
...
...
@@ -19,11 +19,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavcodec/get_bits.h"
#include "libavutil/dict.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "id3v1.h"
#include "libavutil/dict.h"
typedef
struct
TTAContext
{
int
totalframes
,
currentframe
;
...
...
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