|
|
@@ -683,7 +683,7 @@ static always_inline int get_cabac_bypass_sign(CABACContext *c, int val){ |
|
|
|
|
|
|
|
//FIXME the x86 code from this file should be moved into i386/h264 or cabac something.c/h (note ill kill you if you move my code away from under my fingers before iam finished with it!) |
|
|
|
//FIXME use some macros to avoid duplicatin get_cabac (cant be done yet as that would make optimization work hard) |
|
|
|
#ifdef ARCH_X86 |
|
|
|
#if defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) |
|
|
|
static int decode_significance_x86(CABACContext *c, int max_coeff, uint8_t *significant_coeff_ctx_base, int *index){ |
|
|
|
void *end= significant_coeff_ctx_base + max_coeff - 1; |
|
|
|
int minusstart= -(int)significant_coeff_ctx_base; |
|
|
@@ -789,7 +789,7 @@ static int decode_significance_8x8_x86(CABACContext *c, uint8_t *significant_coe |
|
|
|
); |
|
|
|
return coeff_count; |
|
|
|
} |
|
|
|
#endif |
|
|
|
#endif /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */ |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|