Browse Source

Remove unnecessary get_bits.h #includes

tags/n3.2
Diego Biurrun 9 years ago
parent
commit
b7f98659f2
18 changed files with 27 additions and 21 deletions
  1. +2
    -1
      libavcodec/ac3.c
  2. +0
    -1
      libavcodec/dv.c
  3. +1
    -1
      libavcodec/dv.h
  4. +6
    -1
      libavcodec/dvbsub_parser.c
  5. +2
    -0
      libavcodec/dvenc.c
  6. +0
    -1
      libavcodec/ffv1.c
  7. +1
    -1
      libavcodec/flacenc.c
  8. +1
    -0
      libavcodec/hq_hqa.c
  9. +1
    -1
      libavcodec/hq_hqa.h
  10. +0
    -1
      libavcodec/mpc.c
  11. +1
    -1
      libavcodec/mpeg12vlc.h
  12. +2
    -1
      libavcodec/msmpeg4data.h
  13. +3
    -4
      libavcodec/nellymoser.c
  14. +3
    -1
      libavcodec/vc1data.h
  15. +0
    -1
      libavcodec/vp5.c
  16. +0
    -1
      libavcodec/vp9block.c
  17. +2
    -3
      libavcodec/xxan.c
  18. +2
    -1
      libavformat/rtpdec.c

+ 2
- 1
libavcodec/ac3.c View File

@@ -24,9 +24,10 @@
* Common code between the AC-3 encoder and decoder.
*/

#include "libavutil/common.h"

#include "avcodec.h"
#include "ac3.h"
#include "get_bits.h"

/**
* Starting frequency coefficient bin for each critical band.


+ 0
- 1
libavcodec/dv.c View File

@@ -44,7 +44,6 @@
#include "avcodec.h"
#include "dv.h"
#include "dvdata.h"
#include "get_bits.h"
#include "internal.h"
#include "put_bits.h"
#include "simple_idct.h"


+ 1
- 1
libavcodec/dv.h View File

@@ -29,8 +29,8 @@

#include "avcodec.h"
#include "dv_profile.h"
#include "get_bits.h"
#include "me_cmp.h"
#include "vlc.h"

typedef struct DVwork_chunk {
uint16_t buf_offset;


+ 6
- 1
libavcodec/dvbsub_parser.c View File

@@ -18,8 +18,13 @@
* License along with Libav; if not, write to the Free Software
* 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 "get_bits.h"
#include "internal.h"

/* Parser (mostly) copied from dvdsub.c */


+ 2
- 0
libavcodec/dvenc.c View File

@@ -27,6 +27,7 @@
#include "config.h"

#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "libavutil/pixdesc.h"

#include "avcodec.h"
@@ -35,6 +36,7 @@
#include "dv_tablegen.h"
#include "fdctdsp.h"
#include "internal.h"
#include "mathops.h"
#include "me_cmp.h"
#include "pixblockdsp.h"
#include "put_bits.h"


+ 0
- 1
libavcodec/ffv1.c View File

@@ -28,7 +28,6 @@
#include "libavutil/attributes.h"

#include "avcodec.h"
#include "get_bits.h"
#include "put_bits.h"
#include "rangecoder.h"
#include "golomb.h"


+ 1
- 1
libavcodec/flacenc.c View File

@@ -23,9 +23,9 @@
#include "libavutil/intmath.h"
#include "libavutil/md5.h"
#include "libavutil/opt.h"

#include "avcodec.h"
#include "bswapdsp.h"
#include "get_bits.h"
#include "golomb.h"
#include "internal.h"
#include "lpc.h"


+ 1
- 0
libavcodec/hq_hqa.c View File

@@ -25,6 +25,7 @@

#include "avcodec.h"
#include "canopus.h"
#include "get_bits.h"
#include "internal.h"

#include "hq_hqa.h"


+ 1
- 1
libavcodec/hq_hqa.h View File

@@ -24,9 +24,9 @@
#include <stdint.h>

#include "avcodec.h"
#include "get_bits.h"
#include "bytestream.h"
#include "hq_hqadsp.h"
#include "vlc.h"

#define NUM_HQ_AC_ENTRIES 746
#define NUM_HQ_PROFILES 22


+ 0
- 1
libavcodec/mpc.c View File

@@ -28,7 +28,6 @@

#include "libavutil/attributes.h"
#include "avcodec.h"
#include "get_bits.h"
#include "mpegaudiodsp.h"
#include "mpegaudio.h"



+ 1
- 1
libavcodec/mpeg12vlc.h View File

@@ -28,7 +28,7 @@
#ifndef AVCODEC_MPEG12VLC_H
#define AVCODEC_MPEG12VLC_H

#include "get_bits.h"
#include "vlc.h"

#define DC_VLC_BITS 9
#define MV_VLC_BITS 9


+ 2
- 1
libavcodec/msmpeg4data.h View File

@@ -31,8 +31,9 @@
#define AVCODEC_MSMPEG4DATA_H

#include "libavutil/common.h"
#include "get_bits.h"
#include "rl.h"
#include "vlc.h"

/* motion vector table */
typedef struct MVTable {


+ 3
- 4
libavcodec/nellymoser.c View File

@@ -31,11 +31,10 @@
* implementors. The original code is available from http://code.google.com/p/nelly2pcm/
*/

#include "nellymoser.h"
#include "avcodec.h"
#include "libavutil/common.h"

#define BITSTREAM_READER_LE
#include "get_bits.h"
#include "avcodec.h"
#include "nellymoser.h"

const float ff_nelly_dequantization_table[127] = {
0.0000000000,


+ 3
- 1
libavcodec/vc1data.h View File

@@ -29,8 +29,10 @@
#define AVCODEC_VC1DATA_H

#include <stdint.h>

#include "libavutil/rational.h"
#include "get_bits.h"

#include "vlc.h"

/** Table for conversion between TTBLK and TTMB */
extern const int ff_vc1_ttblk_to_tt[3][8];


+ 0
- 1
libavcodec/vp5.c View File

@@ -27,7 +27,6 @@
#include <string.h>

#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"

#include "vp56.h"


+ 0
- 1
libavcodec/vp9block.c View File

@@ -24,7 +24,6 @@
#include "libavutil/avassert.h"

#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "videodsp.h"
#include "vp56.h"


+ 2
- 3
libavcodec/xxan.c View File

@@ -20,12 +20,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "avcodec.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"

#include "avcodec.h"
#include "bytestream.h"
#define BITSTREAM_READER_LE
#include "get_bits.h"
#include "internal.h"

typedef struct XanContext {


+ 2
- 1
libavformat/rtpdec.c View File

@@ -21,8 +21,9 @@

#include "libavutil/mathematics.h"
#include "libavutil/avstring.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/time.h"
#include "libavcodec/get_bits.h"
#include "avformat.h"
#include "network.h"
#include "srtp.h"


Loading…
Cancel
Save