2 * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * Context Adaptive Binary Arithmetic Coder inline functions
27 #ifndef AVCODEC_CABAC_FUNCTIONS_H
28 #define AVCODEC_CABAC_FUNCTIONS_H
36 # include "x86/cabac.h"
39 extern const uint8_t ff_h264_norm_shift[512];
40 extern uint8_t ff_h264_mlps_state[4*64];
41 extern uint8_t ff_h264_lps_range[4*2*64]; ///< rangeTabLPS
43 static void refill(CABACContext *c){
45 c->low+= (c->bytestream[0]<<9) + (c->bytestream[1]<<1);
47 c->low+= c->bytestream[0]<<1;
50 if (c->bytestream < c->bytestream_end)
51 c->bytestream += CABAC_BITS / 8;
54 static inline void renorm_cabac_decoder_once(CABACContext *c){
55 int shift= (uint32_t)(c->range - 0x100)>>31;
58 if(!(c->low & CABAC_MASK))
62 #ifndef get_cabac_inline
63 static void refill2(CABACContext *c){
66 x= c->low ^ (c->low-1);
67 i= 7 - ff_h264_norm_shift[x>>(CABAC_BITS-1)];
72 x+= (c->bytestream[0]<<9) + (c->bytestream[1]<<1);
74 x+= c->bytestream[0]<<1;
78 if (c->bytestream < c->bytestream_end)
79 c->bytestream += CABAC_BITS/8;
82 static av_always_inline int get_cabac_inline(CABACContext *c, uint8_t * const state){
84 int RangeLPS= ff_h264_lps_range[2*(c->range&0xC0) + s];
88 lps_mask= ((c->range<<(CABAC_BITS+1)) - c->low)>>31;
90 c->low -= (c->range<<(CABAC_BITS+1)) & lps_mask;
91 c->range += (RangeLPS - c->range) & lps_mask;
94 *state= (ff_h264_mlps_state+128)[s];
97 lps_mask= ff_h264_norm_shift[c->range];
100 if(!(c->low & CABAC_MASK))
106 static int av_noinline av_unused get_cabac_noinline(CABACContext *c, uint8_t * const state){
107 return get_cabac_inline(c,state);
110 static int av_unused get_cabac(CABACContext *c, uint8_t * const state){
111 return get_cabac_inline(c,state);
114 static int av_unused get_cabac_bypass(CABACContext *c){
118 if(!(c->low & CABAC_MASK))
121 range= c->range<<(CABAC_BITS+1);
131 #ifndef get_cabac_bypass_sign
132 static av_always_inline int get_cabac_bypass_sign(CABACContext *c, int val){
136 if(!(c->low & CABAC_MASK))
139 range= c->range<<(CABAC_BITS+1);
144 return (val^mask)-mask;
150 * @return the number of bytes read or 0 if no end
152 static int av_unused get_cabac_terminate(CABACContext *c){
154 if(c->low < c->range<<(CABAC_BITS+1)){
155 renorm_cabac_decoder_once(c);
158 return c->bytestream - c->bytestream_start;
162 #endif /* AVCODEC_CABAC_FUNCTIONS_H */