Changeset 1012
- Timestamp:
- 01/17/09 01:47:22 (1 year ago)
- Files:
-
- trunk/Patches/ffmpeg-forceinline.diff (modified) (2 diffs)
- trunk/Patches/ffmpeg-h264dsp-crash.diff (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Patches/ffmpeg-forceinline.diff
r923 r1012 6 6 } 7 7 8 #if ndefCONFIG_SMALL8 #if !CONFIG_SMALL 9 9 -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 ) { 10 10 +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 ) { … … 20 20 -static void decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) { 21 21 +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 ) { 22 #if defCONFIG_SMALL22 #if CONFIG_SMALL 23 23 decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, cat == 0 || cat == 3); 24 24 #else trunk/Patches/ffmpeg-h264dsp-crash.diff
r1005 r1012 9 9 +#undef H264_QPEL_FUNCS 10 10 +#define H264_QPEL_FUNCS(x, y, CPU) 11 #if defHAVE_SSSE311 #if HAVE_SSSE3 12 12 if(mm_flags & MM_SSSE3){ 13 13 H264_QPEL_FUNCS(1, 0, ssse3);
