Browse Source

10l

Originally committed as revision 1940 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 23 years ago
parent
commit
7408ad05cc
2 changed files with 4 additions and 3 deletions
  1. +3
    -3
      libavcodec/cabac.h
  2. +1
    -0
      libavformat/avienc.c

+ 3
- 3
libavcodec/cabac.h View File

@@ -43,9 +43,9 @@ typedef struct CABACContext{
PutBitContext pb;
}CABACContext;

const uint8_t ff_h264_lps_range[64][4];
const uint8_t ff_h264_mps_state[64];
const uint8_t ff_h264_lps_state[64];
extern const uint8_t ff_h264_lps_range[64][4];
extern const uint8_t ff_h264_mps_state[64];
extern const uint8_t ff_h264_lps_state[64];

void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size);
void ff_init_cabac_decoder(CABACContext *c, uint8_t *buf, int buf_size);


+ 1
- 0
libavformat/avienc.c View File

@@ -164,6 +164,7 @@ const CodecTag codec_bmp_tags[] = {
{ CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') },
{ CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
{ CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') },
{ CODEC_ID_FFV1, MKTAG('F', 'F', 'V', '1') },
{ 0, 0 },
};



Loading…
Cancel
Save