comparison cabac.h @ 4579:03f7feb14dd3 libavcodec

use av_noinline instead of __attribute((noinline))
author aurel
date Fri, 23 Feb 2007 10:23:45 +0000
parents 4cceb7c877af
children 25dd62b93846
comparison
equal deleted inserted replaced
4578:006563b9ab27 4579:03f7feb14dd3
573 #endif /* BRANCHLESS_CABAC_DECODER */ 573 #endif /* BRANCHLESS_CABAC_DECODER */
574 #endif /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */ 574 #endif /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */
575 return bit; 575 return bit;
576 } 576 }
577 577
578 static int __attribute((noinline)) get_cabac_noinline(CABACContext *c, uint8_t * const state){ 578 static int av_noinline get_cabac_noinline(CABACContext *c, uint8_t * const state){
579 return get_cabac_inline(c,state); 579 return get_cabac_inline(c,state);
580 } 580 }
581 581
582 static int get_cabac(CABACContext *c, uint8_t * const state){ 582 static int get_cabac(CABACContext *c, uint8_t * const state){
583 return get_cabac_inline(c,state); 583 return get_cabac_inline(c,state);