# HG changeset patch # User michael # Date 1194645530 0 # Node ID 9022754a5fa589460505ba02c43975d523bd7202 # Parent 6c7074038953a45808cc8b6cc1b2e6eeb0cb936c remove inline from non speed critical functions diff -r 6c7074038953 -r 9022754a5fa5 intrax8.c --- a/intrax8.c Fri Nov 09 21:56:18 2007 +0000 +++ b/intrax8.c Fri Nov 09 21:58:50 2007 +0000 @@ -89,7 +89,7 @@ } #undef init_or_vlc -static inline void x8_reset_vlc_tables(IntraX8Context * w){ +static void x8_reset_vlc_tables(IntraX8Context * w){ memset(w->j_dc_vlc,0,sizeof(w->j_dc_vlc)); memset(w->j_ac_vlc,0,sizeof(w->j_ac_vlc)); w->j_orient_vlc=NULL; @@ -643,7 +643,7 @@ return 0; } -static inline void x8_init_block_index(MpegEncContext *s){ //FIXME maybe merge with ff_* +static void x8_init_block_index(MpegEncContext *s){ //FIXME maybe merge with ff_* //not s->linesize as this would be wrong for field pics //not that IntraX8 have interlace support ;) const int linesize = s->current_picture.linesize[0];