Changeset 1012

Show
Ignore:
Timestamp:
01/17/09 01:47:22 (20 months ago)
Author:
astrange
Message:

Update ffmpeg patches

Location:
trunk/Patches
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/Patches/ffmpeg-forceinline.diff

    r923 r1012  
    66 } 
    77  
    8  #ifndef CONFIG_SMALL 
     8 #if !CONFIG_SMALL 
    99-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 ) { 
    1010+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 ) { 
     
    2020-static void decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, const uint32_t *qmul, int max_coeff ) { 
    2121+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  #ifdef CONFIG_SMALL 
     22 #if CONFIG_SMALL 
    2323     decode_cabac_residual_internal(h, block, cat, n, scantable, qmul, max_coeff, cat == 0 || cat == 3); 
    2424 #else 
  • trunk/Patches/ffmpeg-h264dsp-crash.diff

    r1005 r1012  
    99+#undef  H264_QPEL_FUNCS 
    1010+#define H264_QPEL_FUNCS(x, y, CPU)  
    11  #ifdef HAVE_SSSE3 
     11 #if HAVE_SSSE3 
    1212         if(mm_flags & MM_SSSE3){ 
    1313             H264_QPEL_FUNCS(1, 0, ssse3);