|
|
|
@ -3497,7 +3497,7 @@ b= t; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void av_always_inline hl_decode_mb_internal(H264Context *h, int simple){ |
|
|
|
|
static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){ |
|
|
|
|
MpegEncContext * const s = &h->s; |
|
|
|
|
const int mb_x= s->mb_x; |
|
|
|
|
const int mb_y= s->mb_y; |
|
|
|
@ -5976,7 +5976,7 @@ static int decode_cabac_mb_mvd( H264Context *h, int list, int n, int l ) { |
|
|
|
|
return get_cabac_bypass_sign( &h->cabac, -mvd ); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static int inline get_cabac_cbf_ctx( H264Context *h, int cat, int idx ) { |
|
|
|
|
static inline int get_cabac_cbf_ctx( H264Context *h, int cat, int idx ) { |
|
|
|
|
int nza, nzb; |
|
|
|
|
int ctx = 0; |
|
|
|
|
|
|
|
|
@ -6185,7 +6185,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n |
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void inline compute_mb_neighbors(H264Context *h) |
|
|
|
|
static inline void compute_mb_neighbors(H264Context *h) |
|
|
|
|
{ |
|
|
|
|
MpegEncContext * const s = &h->s; |
|
|
|
|
const int mb_xy = s->mb_x + s->mb_y*s->mb_stride; |
|
|
|
|