diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:58:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:58:50 +0000 |
commit | dc6e492bb2ab010d7d1fa1bd5684ba06ebd6a3a0 (patch) | |
tree | b42f3dc27a4ff760055bcc344c0bde9ed22cfa2f /libavcodec/intrax8.c | |
parent | b7f435b058d60771c6db4db1246526c095b54d26 (diff) | |
download | ffmpeg-dc6e492bb2ab010d7d1fa1bd5684ba06ebd6a3a0.tar.gz |
remove inline from non speed critical functions
Originally committed as revision 10982 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 1f006f9ce9..9a6f8a0da7 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -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]; |