mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit 'e880418660c80e2f12a123e131975cdb6b12cd13'
* commit 'e880418660c80e2f12a123e131975cdb6b12cd13': cabac: remove write-only h264_mps_state[] Conflicts: libavcodec/cabac.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
b0b66269f4
@ -74,7 +74,6 @@ static const uint8_t lps_range[64][4]= {
|
||||
};
|
||||
|
||||
static uint8_t h264_lps_state[2*64];
|
||||
static uint8_t h264_mps_state[2*64];
|
||||
|
||||
static const uint8_t mps_state[64]= {
|
||||
1, 2, 3, 4, 5, 6, 7, 8,
|
||||
@ -146,11 +145,8 @@ void ff_init_cabac_states(void)
|
||||
ff_h264_lps_range[j*2*64+2*i+0]=
|
||||
ff_h264_lps_range[j*2*64+2*i+1]= lps_range[i][j];
|
||||
}
|
||||
|
||||
ff_h264_mlps_state[128+2*i+0]=
|
||||
h264_mps_state[2 * i + 0] = 2 * mps_state[i] + 0;
|
||||
ff_h264_mlps_state[128+2*i+1]=
|
||||
h264_mps_state[2 * i + 1] = 2 * mps_state[i] + 1;
|
||||
ff_h264_mlps_state[128 + 2 * i + 0] = 2 * mps_state[i] + 0;
|
||||
ff_h264_mlps_state[128 + 2 * i + 1] = 2 * mps_state[i] + 1;
|
||||
|
||||
if( i ){
|
||||
h264_lps_state[2*i+0]=
|
||||
@ -205,7 +201,7 @@ static void put_cabac(CABACContext *c, uint8_t * const state, int bit){
|
||||
|
||||
if(bit == ((*state)&1)){
|
||||
c->range -= RangeLPS;
|
||||
*state = h264_mps_state[*state];
|
||||
*state = ff_h264_mlps_state[128 + *state];
|
||||
}else{
|
||||
c->low += c->range - RangeLPS;
|
||||
c->range = RangeLPS;
|
||||
|
Loading…
Reference in New Issue
Block a user