Commit 9220cfba authored by michael's avatar michael

remove inline from non speed critical functions


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10982 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aa25c450
......@@ -89,7 +89,7 @@ static void x8_vlc_init(){
}
#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 @@ block_placed:
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];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment