Rename bitstream.h to get_bits.h.

Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-04-13 16:20:26 +00:00
parent 309a8bb8a1
commit 9106a698e7
117 changed files with 121 additions and 121 deletions

View File

@ -27,7 +27,7 @@
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
//#undef NDEBUG

View File

@ -78,7 +78,7 @@
#include "avcodec.h"
#include "internal.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "lpc.h"

View File

@ -23,7 +23,7 @@
#include "parser.h"
#include "aac_ac3_parser.h"
#include "aac_parser.h"
#include "bitstream.h"
#include "get_bits.h"
#include "mpeg4audio.h"
#define AAC_HEADER_SIZE 7

View File

@ -25,7 +25,7 @@
#include <stdint.h>
#include "aac_ac3_parser.h"
#include "bitstream.h"
#include "get_bits.h"
typedef struct {
uint32_t sample_rate;

View File

@ -32,7 +32,7 @@
***********************************/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "mpeg4audio.h"

View File

@ -26,7 +26,7 @@
#include "avcodec.h"
#include "ac3.h"
#include "bitstream.h"
#include "get_bits.h"
static uint8_t band_start_tab[51];
static uint8_t bin_to_band_tab[253];

View File

@ -23,7 +23,7 @@
#include "parser.h"
#include "ac3_parser.h"
#include "aac_ac3_parser.h"
#include "bitstream.h"
#include "get_bits.h"
#define AC3_HEADER_SIZE 7

View File

@ -24,7 +24,7 @@
#define AVCODEC_AC3_PARSER_H
#include "ac3.h"
#include "bitstream.h"
#include "get_bits.h"
/**
* Parses AC-3 frame header.

View File

@ -30,7 +30,7 @@
#include "libavutil/internal.h"
#include "libavutil/lfg.h"
#include "ac3.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
/* override ac3.h to include coupling channel */

View File

@ -27,7 +27,7 @@
//#define DEBUG_BITALLOC
#include "libavutil/crc.h"
#include "avcodec.h"
#include "bitstream.h" // for ff_reverse
#include "get_bits.h" // for ff_reverse
#include "put_bits.h"
#include "ac3.h"

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "bytestream.h"

View File

@ -53,7 +53,7 @@
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
#include "unary.h"
#include "mathops.h"

View File

@ -20,7 +20,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "dsputil.h"
#include "lpc.h"

View File

@ -23,7 +23,7 @@
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
/**

View File

@ -25,7 +25,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "dsputil.h"
#include "mpeg12data.h"

View File

@ -37,7 +37,7 @@
#include <stdio.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "bytestream.h"

View File

@ -20,7 +20,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
typedef struct {

View File

@ -28,7 +28,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
const uint8_t ff_log2_run[32]={

View File

@ -27,7 +27,7 @@
#include <string.h>
#include "libavutil/common.h"
#include "bitstream.h"
#include "get_bits.h"
#include "cabac.h"
static const uint8_t lps_range[64][4]= {

View File

@ -26,7 +26,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
#include "mathops.h"
#include "cavs.h"

View File

@ -26,7 +26,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
#include "cavs.h"

View File

@ -26,7 +26,7 @@
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
/* Disable the encoder. */
#undef CONFIG_CLJR_ENCODER

View File

@ -49,7 +49,7 @@
#include "libavutil/lfg.h"
#include "libavutil/random_seed.h"
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "bytestream.h"

View File

@ -32,7 +32,7 @@
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "dcadata.h"
#include "dcahuff.h"

View File

@ -23,7 +23,7 @@
//#define DEBUG
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dnxhddata.h"
#include "dsputil.h"

View File

@ -40,7 +40,7 @@
#define ALT_BITSTREAM_READER
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "simple_idct.h"
#include "dvdata.h"

View File

@ -20,7 +20,7 @@
*/
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
//#define DEBUG
//#define DEBUG_PACKET_CONTENTS

View File

@ -20,7 +20,7 @@
*/
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "colorspace.h"
//#define DEBUG

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "colorspace.h"
#include "dsputil.h"

View File

@ -30,7 +30,7 @@
#include "avcodec.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
#include "dsputil.h"
#include "aandcttab.h"

View File

@ -30,7 +30,7 @@
#include "avcodec.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
#include "libavutil/lzo.h"
#define EA_PREAMBLE_SIZE 8

View File

@ -29,7 +29,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "aandcttab.h"
#include "mpeg12.h"

View File

@ -22,7 +22,7 @@
#include "avcodec.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
typedef union MacroBlock {
uint16_t pixels[4];

View File

@ -25,7 +25,7 @@
* @author Konstantin Shishkov
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "faxcompr.h"

View File

@ -26,7 +26,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "dsputil.h"
#include "rangecoder.h"

View File

@ -38,7 +38,7 @@
#include "libavutil/crc.h"
#include "avcodec.h"
#include "internal.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
#include "golomb.h"
#include "flac.h"

View File

@ -23,7 +23,7 @@
#include "libavutil/lls.h"
#include "libavutil/md5.h"
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "golomb.h"
#include "lpc.h"

View File

@ -51,7 +51,7 @@
#include <stdlib.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include <zlib.h>

View File

@ -32,7 +32,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "huffman.h"
#include "bytestream.h"
#include "dsputil.h"

View File

@ -23,7 +23,7 @@
*/
#include <limits.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
/**

View File

@ -28,7 +28,7 @@
#include "avcodec.h"
#include "libavutil/avutil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "g729.h"
#include "lsp.h"

View File

@ -19,12 +19,12 @@
*/
/**
* @file libavcodec/bitstream.h
* bitstream api header.
* @file libavcodec/get_bits.h
* bitstream reader API header.
*/
#ifndef AVCODEC_BITSTREAM_H
#define AVCODEC_BITSTREAM_H
#ifndef AVCODEC_GET_BITS_H
#define AVCODEC_GET_BITS_H
#include <stdint.h>
#include <stdlib.h>
@ -702,4 +702,4 @@ static inline int decode210(GetBitContext *gb){
return 2 - get_bits1(gb);
}
#endif /* AVCODEC_BITSTREAM_H */
#endif /* AVCODEC_GET_BITS_H */

View File

@ -31,7 +31,7 @@
#define AVCODEC_GOLOMB_H
#include <stdint.h>
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#define INVALID_VLC 0x80000000

View File

@ -20,7 +20,7 @@
#include "libavutil/common.h"
#include "bitstream.h"
#include "get_bits.h"
#include "mpegvideo.h"
#include "h264data.h"

View File

@ -21,7 +21,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "huffman.h"
/* symbol for Huffman tree node */

View File

@ -24,7 +24,7 @@
#define AVCODEC_HUFFMAN_H
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
typedef struct {
int16_t sym;

View File

@ -29,7 +29,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "dsputil.h"

View File

@ -36,7 +36,7 @@
#define ALT_BITSTREAM_READER
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "imcdata.h"

View File

@ -25,7 +25,7 @@
*/
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "indeo2data.h"
typedef struct Ir2Context{

View File

@ -22,7 +22,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "mpegvideo.h"
#include "msmpeg4data.h"
#include "intrax8huf.h"

View File

@ -19,7 +19,7 @@
#ifndef AVCODEC_INTRAX8_H
#define AVCODEC_INTRAX8_H
#include "bitstream.h"
#include "get_bits.h"
#include "mpegvideo.h"
typedef struct{

View File

@ -26,7 +26,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
#include "mathops.h"
#include "mjpeg.h"

View File

@ -26,7 +26,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
#include "mathops.h"
#include "dsputil.h"

View File

@ -42,7 +42,7 @@
#include <stdlib.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "lcl.h"
#if CONFIG_ZLIB

View File

@ -25,7 +25,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
#include "mathops.h"

View File

@ -30,7 +30,7 @@
#ifndef AVCODEC_LZW_H
#define AVCODEC_LZW_H
#include "bitstream.h"
#include "get_bits.h"
enum FF_LZW_MODES{
FF_LZW_GIF,

View File

@ -24,7 +24,7 @@
#include <stdint.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
#include "dsputil.h"

View File

@ -30,7 +30,7 @@
#define AVCODEC_MJPEGDEC_H
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#define MAX_COMPONENTS 4

View File

@ -27,7 +27,7 @@
#include <stdint.h>
#include "libavutil/crc.h"
#include "bitstream.h"
#include "get_bits.h"
#include "parser.h"
#include "mlp_parser.h"
#include "mlp.h"

View File

@ -27,7 +27,7 @@
#ifndef AVCODEC_MLP_PARSER_H
#define AVCODEC_MLP_PARSER_H
#include "bitstream.h"
#include "get_bits.h"
typedef struct MLPHeaderInfo
{

View File

@ -28,7 +28,7 @@
#include "avcodec.h"
#include "libavutil/intreadwrite.h"
#include "bitstream.h"
#include "get_bits.h"
#include "libavutil/crc.h"
#include "parser.h"
#include "mlp_parser.h"

View File

@ -20,7 +20,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#define MAX_HUFF_CODES 16

View File

@ -26,7 +26,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"

View File

@ -30,7 +30,7 @@
#include "libavutil/lfg.h"
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"

View File

@ -27,7 +27,7 @@
#include "libavutil/lfg.h"
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"

View File

@ -27,7 +27,7 @@
#include "libavutil/lfg.h"
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "bitstream.h"
#include "get_bits.h"
#include "mpeg4audio.h"
const int ff_mpeg4audio_sample_rates[16] = {

View File

@ -27,7 +27,7 @@
#define AVCODEC_MPEGAUDIO_H
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#define CONFIG_AUDIO_NONSHORT 0

View File

@ -25,7 +25,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
/*

View File

@ -29,7 +29,7 @@
#define AVCODEC_MPEGVIDEO_H
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "ratecontrol.h"
#include "parser.h"

View File

@ -31,7 +31,7 @@
#define AVCODEC_MSMPEG4DATA_H
#include "libavutil/common.h"
#include "bitstream.h"
#include "get_bits.h"
#include "rl.h"
/* motion vector table */

View File

@ -36,7 +36,7 @@
#include "dsputil.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
const float ff_nelly_dequantization_table[127] = {
0.0000000000,

View File

@ -38,7 +38,7 @@
#include "dsputil.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
typedef struct NellyMoserDecodeContext {

View File

@ -25,7 +25,7 @@
*/
#include "avcodec.h"
#include "bitstream.h" // for ff_reverse
#include "get_bits.h" // for ff_reverse
#include "bytestream.h"
#define MAX_CHANNELS 64

View File

@ -24,7 +24,7 @@
#include "avcodec.h"
#include "bytestream.h"
#include "bitstream.h"
#include "get_bits.h"
typedef struct PCXContext {
AVFrame picture;

View File

@ -22,7 +22,7 @@
#include <inttypes.h>
#include "libavutil/intreadwrite.h"
#include "libavcodec/bitstream.h"
#include "libavcodec/get_bits.h"
typedef struct AVComponentDescriptor{
uint16_t plane :2; ///< which of the 4 planes contains the component

View File

@ -31,7 +31,7 @@
#include "avcodec.h"
#include "internal.h"
#include "bitstream.h"
#include "get_bits.h"
#include "qcelpdata.h"

View File

@ -36,7 +36,7 @@
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"

View File

@ -23,7 +23,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "ra144.h"
#include "celp_filters.h"

View File

@ -21,7 +21,7 @@
#include "avcodec.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
#include "ra288.h"
#include "lpc.h"
#include "celp_math.h"

View File

@ -28,7 +28,7 @@
#define AVCODEC_RL_H
#include <stdint.h>
#include "bitstream.h"
#include "get_bits.h"
/* run length table */
#define MAX_RUN 64

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/common.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "rtjpeg.h"

View File

@ -29,7 +29,7 @@
#define DEBUG
#include <limits.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
#define MAX_CHANNELS 8

View File

@ -34,7 +34,7 @@
#include "avcodec.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
#define SMKTREE_BITS 9

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "golomb.h"
/**

View File

@ -26,7 +26,7 @@
#include "avcodec.h"
#define ALT_BITSTREAM_READER_LE
#include "bitstream.h"
#include "get_bits.h"
typedef struct SeqVideoContext {

View File

@ -25,7 +25,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#define TM2_ESCAPE 0x80000000

View File

@ -31,7 +31,7 @@
//#define DEBUG
#include <limits.h>
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#define FORMAT_INT 1
#define FORMAT_FLOAT 3

View File

@ -21,7 +21,7 @@
#ifndef AVCODEC_UNARY_H
#define AVCODEC_UNARY_H
#include "bitstream.h"
#include "get_bits.h"
/**
* Get unary code of limited length

View File

@ -30,7 +30,7 @@
#include <stdint.h>
#include "libavutil/rational.h"
#include "bitstream.h"
#include "get_bits.h"
/** Table for conversion between TTBLK and TTMB */
extern const int ff_vc1_ttblk_to_tt[3][8];

View File

@ -25,7 +25,7 @@
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "vorbis.h"

View File

@ -28,7 +28,7 @@
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "dsputil.h"
#include "vorbis.h"

View File

@ -36,7 +36,7 @@
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "vp3data.h"
#include "xiph.h"

View File

@ -26,7 +26,7 @@
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "vp56.h"
#include "vp56data.h"

View File

@ -26,7 +26,7 @@
#include "vp56data.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"

View File

@ -29,7 +29,7 @@
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
#include "get_bits.h"
#include "huffman.h"
#include "vp56.h"

View File

@ -20,7 +20,7 @@
*/
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "unary.h"
/**

View File

@ -22,7 +22,7 @@
#ifndef AVCODEC_WMA_H
#define AVCODEC_WMA_H
#include "bitstream.h"
#include "get_bits.h"
#include "put_bits.h"
#include "dsputil.h"

View File

@ -25,7 +25,7 @@
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
typedef struct WNV1Context{

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avcodec.h"
#include "bitstream.h"
#include "get_bits.h"
#include "bytestream.h"
static av_cold int decode_init(AVCodecContext *avctx) {

Some files were not shown because too many files have changed in this diff Show More