vlc: Add header #include when the types are used

Do not rely on indirectly including it from bitstream.h.

Signed-off-by: Diego Biurrun <diego@biurrun.de>
pull/272/head
Luca Barbato 8 years ago committed by Diego Biurrun
parent edbf0fffb1
commit 73fc82f343
  1. 1
      libavcodec/4xm.c
  2. 1
      libavcodec/atrac3.c
  3. 1
      libavcodec/atrac3plus.c
  4. 1
      libavcodec/bink.c
  5. 1
      libavcodec/cfhd.h
  6. 1
      libavcodec/clearvideo.c
  7. 1
      libavcodec/cook.c
  8. 1
      libavcodec/faxcompr.c
  9. 1
      libavcodec/g2meet.c
  10. 1
      libavcodec/hqx.h
  11. 1
      libavcodec/imc.c
  12. 1
      libavcodec/indeo2.c
  13. 1
      libavcodec/indeo4.c
  14. 1
      libavcodec/indeo5.c
  15. 1
      libavcodec/ivi.h
  16. 1
      libavcodec/mimic.c
  17. 1
      libavcodec/mlpdec.c
  18. 1
      libavcodec/motionpixels.c
  19. 1
      libavcodec/mpc7.c
  20. 1
      libavcodec/mpc8.c
  21. 1
      libavcodec/qdm2.c
  22. 1
      libavcodec/smacker.c
  23. 1
      libavcodec/truemotion2.c
  24. 1
      libavcodec/tscc2.c
  25. 1
      libavcodec/utvideodec.c
  26. 1
      libavcodec/vorbisdec.c
  27. 1
      libavcodec/wma.h
  28. 1
      libavcodec/wmavoice.c
  29. 1
      libavcodec/wnv1.c

@ -36,6 +36,7 @@
#include "bswapdsp.h"
#include "bytestream.h"
#include "internal.h"
#include "vlc.h"
#define BLOCK_TYPE_VLC_BITS 5
#define ACDC_VLC_BITS 9

@ -44,6 +44,7 @@
#include "bytestream.h"
#include "fft.h"
#include "internal.h"
#include "vlc.h"
#include "atrac.h"
#include "atrac3data.h"

@ -29,6 +29,7 @@
#include "avcodec.h"
#include "bitstream.h"
#include "vlc.h"
#include "atrac3plus.h"
#include "atrac3plus_data.h"

@ -33,6 +33,7 @@
#include "hpeldsp.h"
#include "internal.h"
#include "mathops.h"
#include "vlc.h"
#define BINK_FLAG_ALPHA 0x00100000
#define BINK_FLAG_GRAY 0x00020000

@ -25,6 +25,7 @@
#include "avcodec.h"
#include "bitstream.h"
#include "vlc.h"
#define VLC_BITS 9
#define SUBBAND_COUNT 10

@ -29,6 +29,7 @@
#include "bytestream.h"
#include "idctdsp.h"
#include "internal.h"
#include "vlc.h"
#define NUM_DC_CODES 127
#define NUM_AC_CODES 103

@ -52,6 +52,7 @@
#include "fft.h"
#include "internal.h"
#include "sinewin.h"
#include "vlc.h"
#include "cookdata.h"

@ -27,6 +27,7 @@
#include "avcodec.h"
#include "bitstream.h"
#include "put_bits.h"
#include "vlc.h"
#include "faxcompr.h"
#define CCITT_SYMS 104

@ -39,6 +39,7 @@
#include "internal.h"
#include "jpegtables.h"
#include "mjpeg.h"
#include "vlc.h"
#define EPIC_PIX_STACK_SIZE 1024
#define EPIC_PIX_STACK_MAX (EPIC_PIX_STACK_SIZE - 1)

@ -28,6 +28,7 @@
#include "bitstream.h"
#include "hqxdsp.h"
#include "vlc.h"
enum HQXACMode {
HQX_AC_Q0 = 0,

@ -44,6 +44,7 @@
#include "fft.h"
#include "internal.h"
#include "sinewin.h"
#include "vlc.h"
#include "imcdata.h"

@ -32,6 +32,7 @@
#include "indeo2data.h"
#include "internal.h"
#include "mathops.h"
#include "vlc.h"
typedef struct Ir2Context{
AVCodecContext *avctx;

@ -34,6 +34,7 @@
#include "internal.h"
#include "ivi.h"
#include "ivi_dsp.h"
#include "vlc.h"
#define IVI4_PIC_SIZE_ESC 7

@ -33,6 +33,7 @@
#include "ivi.h"
#include "ivi_dsp.h"
#include "indeo5data.h"
#include "vlc.h"
/**
* Indeo5 frame types.

@ -33,6 +33,7 @@
#include "avcodec.h"
#include "bitstream.h"
#include "vlc.h"
/**
* Indeo 4 frame types.

@ -32,6 +32,7 @@
#include "hpeldsp.h"
#include "idctdsp.h"
#include "thread.h"
#include "vlc.h"
#define MIMIC_HEADER_SIZE 20

@ -39,6 +39,7 @@
#include "mlpdsp.h"
#include "mlp.h"
#include "config.h"
#include "vlc.h"
/** number of bits used for VLC lookup - longest Huffman code is 9 */
#if ARCH_ARM

@ -23,6 +23,7 @@
#include "bitstream.h"
#include "bswapdsp.h"
#include "internal.h"
#include "vlc.h"
#define MAX_HUFF_CODES 16

@ -33,6 +33,7 @@
#include "bitstream.h"
#include "internal.h"
#include "mpegaudiodsp.h"
#include "vlc.h"
#include "mpc.h"
#include "mpc7data.h"

@ -32,6 +32,7 @@
#include "bitstream.h"
#include "internal.h"
#include "mpegaudiodsp.h"
#include "vlc.h"
#include "mpc.h"
#include "mpc8data.h"

@ -44,6 +44,7 @@
#include "mpegaudio.h"
#include "mpegaudiodsp.h"
#include "rdft.h"
#include "vlc.h"
#include "qdm2data.h"
#include "qdm2_tablegen.h"

@ -39,6 +39,7 @@
#include "bytestream.h"
#include "internal.h"
#include "mathops.h"
#include "vlc.h"
#define SMKTREE_BITS 9
#define SMK_NODE 0x80000000

@ -31,6 +31,7 @@
#include "bswapdsp.h"
#include "bytestream.h"
#include "internal.h"
#include "vlc.h"
#define TM2_ESCAPE 0x80000000
#define TM2_DELTAS 64

@ -33,6 +33,7 @@
#include "internal.h"
#include "mathops.h"
#include "tscc2data.h"
#include "vlc.h"
typedef struct TSCC2Context {
AVCodecContext *avctx;

@ -36,6 +36,7 @@
#include "internal.h"
#include "thread.h"
#include "utvideo.h"
#include "vlc.h"
static int build_huff10(const uint8_t *src, VLC *vlc, int *fsym)
{

@ -32,6 +32,7 @@
#include "fft.h"
#include "get_bits.h"
#include "internal.h"
#include "vlc.h"
#include "vorbis.h"
#include "vorbisdsp.h"
#include "xiph.h"

@ -28,6 +28,7 @@
#include "bitstream.h"
#include "fft.h"
#include "put_bits.h"
#include "vlc.h"
/* size of blocks */
#define BLOCK_MIN_BITS 7

@ -43,6 +43,7 @@
#include "dct.h"
#include "rdft.h"
#include "sinewin.h"
#include "vlc.h"
#define MAX_BLOCKS 8 ///< maximum number of blocks per frame
#define MAX_LSPS 16 ///< maximum filter order

@ -28,6 +28,7 @@
#include "bitstream.h"
#include "internal.h"
#include "mathops.h"
#include "vlc.h"
typedef struct WNV1Context {

Loading…
Cancel
Save