root/branches/perian-1.1/Patches/ffmpeg-forceinline.diff
| Revision 923, 1.5 kB (checked in by astrange, 4 months ago) |
|---|
-
ffmpeg/libavcodec/h264.c
old new 5368 5368 } 5369 5369 5370 5370 #ifndef CONFIG_SMALL 5371 static void decode_cabac_residual_dc( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) {5371 static av_noinline void decode_cabac_residual_dc( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) { 5372 5372 decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, 1); 5373 5373 } 5374 5374 5375 static void decode_cabac_residual_nondc( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) {5375 static av_noinline void decode_cabac_residual_nondc( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) { 5376 5376 decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, 0); 5377 5377 } 5378 5378 #endif 5379 5379 5380 static void decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) {5380 static av_always_inline void decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) { 5381 5381 #ifdef CONFIG_SMALL 5382 5382 decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, cat == 0 || cat == 3); 5383 5383 #else
Note: See TracBrowser for help on using the browser.
