mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Remove unnecessary get_bits.h #includes
This commit is contained in:
parent
2a48a75a6f
commit
b7f98659f2
@ -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.
|
||||||
|
@ -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"
|
||||||
|
@ -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;
|
||||||
|
@ -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 */
|
||||||
|
@ -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 @@
|
|||||||
#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"
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
@ -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
|
||||||
|
@ -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"
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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 {
|
||||||
|
@ -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,
|
||||||
|
@ -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];
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
@ -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 {
|
||||||
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user