diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-13 16:35:54 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-14 17:32:36 +0100 |
commit | e44c11e9fa505da3c54738ae2d21123338a28ca6 (patch) | |
tree | d4fee42ad9ff17bb923e3ac96ce525cb635a6019 /libavcodec/g722.c | |
parent | b5c2b5af6a2f5baade1d0688703b3e46fa2f6cf2 (diff) | |
download | ffmpeg-e44c11e9fa505da3c54738ae2d21123338a28ca6.tar.gz |
cosmetics: Move static and inline attributes to more standard places.
Fixes several "‘static’ is not at beginning of declaration" warnings.
Diffstat (limited to 'libavcodec/g722.c')
-rw-r--r-- | libavcodec/g722.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g722.c b/libavcodec/g722.c index 7b9ff7243a..a911bc7b37 100644 --- a/libavcodec/g722.c +++ b/libavcodec/g722.c @@ -129,7 +129,7 @@ static void do_adaptive_prediction(struct G722Band *band, const int cur_diff) band->prev_qtzd_reconst = cur_qtzd_reconst; } -static int inline linear_scale_factor(const int log_factor) +static inline int linear_scale_factor(const int log_factor) { const int wd1 = inv_log2_table[(log_factor >> 6) & 31]; const int shift = log_factor >> 11; |