Browse Source

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  put_bits: Remove unused includes

Conflicts:
	libavcodec/put_bits.h

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
efc4439c89
10 changed files with 21 additions and 13 deletions
  1. +3
    -1
      libavcodec/ac3enc.h
  2. +3
    -1
      libavcodec/dca.c
  3. +1
    -0
      libavcodec/dcaenc.c
  4. +2
    -1
      libavcodec/lzwenc.c
  5. +2
    -1
      libavcodec/mjpeg.h
  6. +4
    -2
      libavcodec/nellymoserenc.c
  7. +1
    -6
      libavcodec/put_bits.h
  8. +2
    -1
      libavcodec/ra144enc.c
  9. +1
    -0
      libavcodec/s302menc.c
  10. +2
    -0
      libavcodec/vorbisenc.c

+ 3
- 1
libavcodec/ac3enc.h View File

@@ -31,12 +31,14 @@
#include <stdint.h> #include <stdint.h>


#include "libavutil/float_dsp.h" #include "libavutil/float_dsp.h"

#include "ac3.h" #include "ac3.h"
#include "ac3dsp.h" #include "ac3dsp.h"
#include "avcodec.h" #include "avcodec.h"
#include "dsputil.h" #include "dsputil.h"
#include "put_bits.h"
#include "fft.h" #include "fft.h"
#include "mathops.h"
#include "put_bits.h"


#ifndef CONFIG_AC3ENC_FLOAT #ifndef CONFIG_AC3ENC_FLOAT
#define CONFIG_AC3ENC_FLOAT 0 #define CONFIG_AC3ENC_FLOAT 0


+ 3
- 1
libavcodec/dca.c View File

@@ -25,8 +25,10 @@
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>


#include "put_bits.h"
#include "libavutil/error.h"

#include "dca.h" #include "dca.h"
#include "put_bits.h"


const uint32_t avpriv_dca_sample_rates[16] = const uint32_t avpriv_dca_sample_rates[16] =
{ {


+ 1
- 0
libavcodec/dcaenc.c View File

@@ -29,6 +29,7 @@
#include "dcadata.h" #include "dcadata.h"
#include "dcaenc.h" #include "dcaenc.h"
#include "internal.h" #include "internal.h"
#include "mathops.h"
#include "put_bits.h" #include "put_bits.h"


#define MAX_CHANNELS 6 #define MAX_CHANNELS 6


+ 2
- 1
libavcodec/lzwenc.c View File

@@ -26,8 +26,9 @@
*/ */


#include "avcodec.h" #include "avcodec.h"
#include "put_bits.h"
#include "lzw.h" #include "lzw.h"
#include "mathops.h"
#include "put_bits.h"


#define LZW_MAXBITS 12 #define LZW_MAXBITS 12
#define LZW_SIZTABLE (1<<LZW_MAXBITS) #define LZW_SIZTABLE (1<<LZW_MAXBITS)


+ 2
- 1
libavcodec/mjpeg.h View File

@@ -33,10 +33,11 @@
#ifndef AVCODEC_MJPEG_H #ifndef AVCODEC_MJPEG_H
#define AVCODEC_MJPEG_H #define AVCODEC_MJPEG_H


#include "libavutil/internal.h"

#include "avcodec.h" #include "avcodec.h"
#include "put_bits.h" #include "put_bits.h"



/* JPEG marker codes */ /* JPEG marker codes */
typedef enum { typedef enum {
/* start of frame */ /* start of frame */


+ 4
- 2
libavcodec/nellymoserenc.c View File

@@ -35,13 +35,15 @@
* http://wiki.multimedia.cx/index.php?title=Nellymoser * http://wiki.multimedia.cx/index.php?title=Nellymoser
*/ */


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

#include "audio_frame_queue.h" #include "audio_frame_queue.h"
#include "avcodec.h"
#include "fft.h" #include "fft.h"
#include "internal.h" #include "internal.h"
#include "nellymoser.h"
#include "sinewin.h" #include "sinewin.h"


#define BITSTREAM_WRITER_LE #define BITSTREAM_WRITER_LE


+ 1
- 6
libavcodec/put_bits.h View File

@@ -27,16 +27,11 @@
#define AVCODEC_PUT_BITS_H #define AVCODEC_PUT_BITS_H


#include <stdint.h> #include <stdint.h>
#include <stdlib.h>
#include <stddef.h>
#include <assert.h> #include <assert.h>


#include "libavutil/bswap.h"
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h" #include "libavutil/intreadwrite.h"
#include "libavutil/log.h"
#include "libavutil/avassert.h" #include "libavutil/avassert.h"
#include "mathops.h"
#include "config.h"


typedef struct PutBitContext { typedef struct PutBitContext {
uint32_t bit_buf; uint32_t bit_buf;


+ 2
- 1
libavcodec/ra144enc.c View File

@@ -29,9 +29,10 @@


#include "avcodec.h" #include "avcodec.h"
#include "audio_frame_queue.h" #include "audio_frame_queue.h"
#include "celp_filters.h"
#include "internal.h" #include "internal.h"
#include "mathops.h"
#include "put_bits.h" #include "put_bits.h"
#include "celp_filters.h"
#include "ra144.h" #include "ra144.h"






+ 1
- 0
libavcodec/s302menc.c View File

@@ -22,6 +22,7 @@


#include "avcodec.h" #include "avcodec.h"
#include "internal.h" #include "internal.h"
#include "mathops.h"
#include "put_bits.h" #include "put_bits.h"


#define AES3_HEADER_LEN 4 #define AES3_HEADER_LEN 4


+ 2
- 0
libavcodec/vorbisenc.c View File

@@ -25,9 +25,11 @@
*/ */


#include <float.h> #include <float.h>

#include "avcodec.h" #include "avcodec.h"
#include "internal.h" #include "internal.h"
#include "fft.h" #include "fft.h"
#include "mathops.h"
#include "vorbis.h" #include "vorbis.h"
#include "vorbis_enc_data.h" #include "vorbis_enc_data.h"




Loading…
Cancel
Save