diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-04-28 11:10:57 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-04-28 11:10:57 -0700 |
commit | 774b681b80af4bcb6df58f5cc9c7254111fbc7f5 (patch) | |
tree | 0b051a954ae5917f0d2087cf8039d5ca5ccc8e7e /libavcodec/rv34.c | |
parent | 0195ab5f5ff216a8797623e62e2703f3df2624c2 (diff) | |
download | ffmpeg-774b681b80af4bcb6df58f5cc9c7254111fbc7f5.tar.gz |
rv34: remove inline keyword from rv34_decode_block().
Force-inlining increases object size by 8kB and causes a 2% slowdown.
Diffstat (limited to 'libavcodec/rv34.c')
-rw-r--r-- | libavcodec/rv34.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c index a3d3fcd3ea..beecf67e28 100644 --- a/libavcodec/rv34.c +++ b/libavcodec/rv34.c @@ -282,7 +282,7 @@ static inline void decode_subblock3(DCTELEM *dst, int code, GetBitContext *gb, V * o--o */ -static inline int rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc, int q_dc, int q_ac1, int q_ac2) +static int rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc, int q_dc, int q_ac1, int q_ac2) { int code, pattern, has_ac = 1; |