Revision 676d380f
libavcodec/bitstream.c | ||
---|---|---|
32 | 32 |
#include "get_bits.h" |
33 | 33 |
#include "put_bits.h" |
34 | 34 |
|
35 |
const uint8_t ff_log2_run[32]={
|
|
35 |
const uint8_t ff_log2_run[41]={
|
|
36 | 36 |
0, 0, 0, 0, 1, 1, 1, 1, |
37 | 37 |
2, 2, 2, 2, 3, 3, 3, 3, |
38 | 38 |
4, 4, 5, 5, 6, 6, 7, 7, |
39 |
8, 9,10,11,12,13,14,15 |
|
39 |
8, 9,10,11,12,13,14,15, |
|
40 |
16,17,18,19,20,21,22,23, |
|
41 |
24, |
|
40 | 42 |
}; |
41 | 43 |
|
42 | 44 |
void align_put_bits(PutBitContext *s) |
libavcodec/ffv1.c | ||
---|---|---|
40 | 40 |
#define MAX_QUANT_TABLES 8 |
41 | 41 |
#define MAX_CONTEXT_INPUTS 5 |
42 | 42 |
|
43 |
extern const uint8_t ff_log2_run[32];
|
|
43 |
extern const uint8_t ff_log2_run[41];
|
|
44 | 44 |
|
45 | 45 |
static const int8_t quant3[256]={ |
46 | 46 |
0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
Also available in: Unified diff