Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
b7f98659
Commit
b7f98659
authored
Jun 04, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary get_bits.h #includes
parent
2a48a75a
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
27 additions
and
21 deletions
+27
-21
ac3.c
libavcodec/ac3.c
+2
-1
dv.c
libavcodec/dv.c
+0
-1
dv.h
libavcodec/dv.h
+1
-1
dvbsub_parser.c
libavcodec/dvbsub_parser.c
+6
-1
dvenc.c
libavcodec/dvenc.c
+2
-0
ffv1.c
libavcodec/ffv1.c
+0
-1
flacenc.c
libavcodec/flacenc.c
+1
-1
hq_hqa.c
libavcodec/hq_hqa.c
+1
-0
hq_hqa.h
libavcodec/hq_hqa.h
+1
-1
mpc.c
libavcodec/mpc.c
+0
-1
mpeg12vlc.h
libavcodec/mpeg12vlc.h
+1
-1
msmpeg4data.h
libavcodec/msmpeg4data.h
+2
-1
nellymoser.c
libavcodec/nellymoser.c
+3
-4
vc1data.h
libavcodec/vc1data.h
+3
-1
vp5.c
libavcodec/vp5.c
+0
-1
vp9block.c
libavcodec/vp9block.c
+0
-1
xxan.c
libavcodec/xxan.c
+2
-3
rtpdec.c
libavformat/rtpdec.c
+2
-1
No files found.
libavcodec/ac3.c
View file @
b7f98659
...
@@ -24,9 +24,10 @@
...
@@ -24,9 +24,10 @@
* Common code between the AC-3 encoder and decoder.
* Common code between the AC-3 encoder and decoder.
*/
*/
#include "libavutil/common.h"
#include "avcodec.h"
#include "avcodec.h"
#include "ac3.h"
#include "ac3.h"
#include "get_bits.h"
/**
/**
* Starting frequency coefficient bin for each critical band.
* Starting frequency coefficient bin for each critical band.
...
...
libavcodec/dv.c
View file @
b7f98659
...
@@ -44,7 +44,6 @@
...
@@ -44,7 +44,6 @@
#include "avcodec.h"
#include "avcodec.h"
#include "dv.h"
#include "dv.h"
#include "dvdata.h"
#include "dvdata.h"
#include "get_bits.h"
#include "internal.h"
#include "internal.h"
#include "put_bits.h"
#include "put_bits.h"
#include "simple_idct.h"
#include "simple_idct.h"
...
...
libavcodec/dv.h
View file @
b7f98659
...
@@ -29,8 +29,8 @@
...
@@ -29,8 +29,8 @@
#include "avcodec.h"
#include "avcodec.h"
#include "dv_profile.h"
#include "dv_profile.h"
#include "get_bits.h"
#include "me_cmp.h"
#include "me_cmp.h"
#include "vlc.h"
typedef
struct
DVwork_chunk
{
typedef
struct
DVwork_chunk
{
uint16_t
buf_offset
;
uint16_t
buf_offset
;
...
...
libavcodec/dvbsub_parser.c
View file @
b7f98659
...
@@ -18,8 +18,13 @@
...
@@ -18,8 +18,13 @@
* License along with Libav; if not, write to the Free Software
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <inttypes.h>
#include <string.h>
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "internal.h"
/* Parser (mostly) copied from dvdsub.c */
/* Parser (mostly) copied from dvdsub.c */
...
...
libavcodec/dvenc.c
View file @
b7f98659
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
#include "config.h"
#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h"
#include "avcodec.h"
...
@@ -35,6 +36,7 @@
...
@@ -35,6 +36,7 @@
#include "dv_tablegen.h"
#include "dv_tablegen.h"
#include "fdctdsp.h"
#include "fdctdsp.h"
#include "internal.h"
#include "internal.h"
#include "mathops.h"
#include "me_cmp.h"
#include "me_cmp.h"
#include "pixblockdsp.h"
#include "pixblockdsp.h"
#include "put_bits.h"
#include "put_bits.h"
...
...
libavcodec/ffv1.c
View file @
b7f98659
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "put_bits.h"
#include "put_bits.h"
#include "rangecoder.h"
#include "rangecoder.h"
#include "golomb.h"
#include "golomb.h"
...
...
libavcodec/flacenc.c
View file @
b7f98659
...
@@ -23,9 +23,9 @@
...
@@ -23,9 +23,9 @@
#include "libavutil/intmath.h"
#include "libavutil/intmath.h"
#include "libavutil/md5.h"
#include "libavutil/md5.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "avcodec.h"
#include "bswapdsp.h"
#include "bswapdsp.h"
#include "get_bits.h"
#include "golomb.h"
#include "golomb.h"
#include "internal.h"
#include "internal.h"
#include "lpc.h"
#include "lpc.h"
...
...
libavcodec/hq_hqa.c
View file @
b7f98659
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
#include "avcodec.h"
#include "avcodec.h"
#include "canopus.h"
#include "canopus.h"
#include "get_bits.h"
#include "internal.h"
#include "internal.h"
#include "hq_hqa.h"
#include "hq_hqa.h"
...
...
libavcodec/hq_hqa.h
View file @
b7f98659
...
@@ -24,9 +24,9 @@
...
@@ -24,9 +24,9 @@
#include <stdint.h>
#include <stdint.h>
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "bytestream.h"
#include "bytestream.h"
#include "hq_hqadsp.h"
#include "hq_hqadsp.h"
#include "vlc.h"
#define NUM_HQ_AC_ENTRIES 746
#define NUM_HQ_AC_ENTRIES 746
#define NUM_HQ_PROFILES 22
#define NUM_HQ_PROFILES 22
...
...
libavcodec/mpc.c
View file @
b7f98659
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "mpegaudiodsp.h"
#include "mpegaudiodsp.h"
#include "mpegaudio.h"
#include "mpegaudio.h"
...
...
libavcodec/mpeg12vlc.h
View file @
b7f98659
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
#ifndef AVCODEC_MPEG12VLC_H
#ifndef AVCODEC_MPEG12VLC_H
#define AVCODEC_MPEG12VLC_H
#define AVCODEC_MPEG12VLC_H
#include "
get_bits
.h"
#include "
vlc
.h"
#define DC_VLC_BITS 9
#define DC_VLC_BITS 9
#define MV_VLC_BITS 9
#define MV_VLC_BITS 9
...
...
libavcodec/msmpeg4data.h
View file @
b7f98659
...
@@ -31,8 +31,9 @@
...
@@ -31,8 +31,9 @@
#define AVCODEC_MSMPEG4DATA_H
#define AVCODEC_MSMPEG4DATA_H
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "get_bits.h"
#include "rl.h"
#include "rl.h"
#include "vlc.h"
/* motion vector table */
/* motion vector table */
typedef
struct
MVTable
{
typedef
struct
MVTable
{
...
...
libavcodec/nellymoser.c
View file @
b7f98659
...
@@ -31,11 +31,10 @@
...
@@ -31,11 +31,10 @@
* implementors. The original code is available from http://code.google.com/p/nelly2pcm/
* implementors. The original code is available from http://code.google.com/p/nelly2pcm/
*/
*/
#include "nellymoser.h"
#include "libavutil/common.h"
#include "avcodec.h"
#
define BITSTREAM_READER_LE
#
include "avcodec.h"
#include "
get_bits
.h"
#include "
nellymoser
.h"
const
float
ff_nelly_dequantization_table
[
127
]
=
{
const
float
ff_nelly_dequantization_table
[
127
]
=
{
0
.
0000000000
,
0
.
0000000000
,
...
...
libavcodec/vc1data.h
View file @
b7f98659
...
@@ -29,8 +29,10 @@
...
@@ -29,8 +29,10 @@
#define AVCODEC_VC1DATA_H
#define AVCODEC_VC1DATA_H
#include <stdint.h>
#include <stdint.h>
#include "libavutil/rational.h"
#include "libavutil/rational.h"
#include "get_bits.h"
#include "vlc.h"
/** Table for conversion between TTBLK and TTMB */
/** Table for conversion between TTBLK and TTMB */
extern
const
int
ff_vc1_ttblk_to_tt
[
3
][
8
];
extern
const
int
ff_vc1_ttblk_to_tt
[
3
][
8
];
...
...
libavcodec/vp5.c
View file @
b7f98659
...
@@ -27,7 +27,6 @@
...
@@ -27,7 +27,6 @@
#include <string.h>
#include <string.h>
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "internal.h"
#include "vp56.h"
#include "vp56.h"
...
...
libavcodec/vp9block.c
View file @
b7f98659
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
#include "libavutil/avassert.h"
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "internal.h"
#include "videodsp.h"
#include "videodsp.h"
#include "vp56.h"
#include "vp56.h"
...
...
libavcodec/xxan.c
View file @
b7f98659
...
@@ -20,12 +20,11 @@
...
@@ -20,12 +20,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "avcodec.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "libavutil/mem.h"
#include "avcodec.h"
#include "bytestream.h"
#include "bytestream.h"
#define BITSTREAM_READER_LE
#include "get_bits.h"
#include "internal.h"
#include "internal.h"
typedef
struct
XanContext
{
typedef
struct
XanContext
{
...
...
libavformat/rtpdec.c
View file @
b7f98659
...
@@ -21,8 +21,9 @@
...
@@ -21,8 +21,9 @@
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/time.h"
#include "libavutil/time.h"
#include "libavcodec/get_bits.h"
#include "avformat.h"
#include "avformat.h"
#include "network.h"
#include "network.h"
#include "srtp.h"
#include "srtp.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