diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-05 11:14:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-05 11:14:03 +0000 |
commit | 58170ffdf7064d3c9f02cd904367d343e4109ebe (patch) | |
tree | c1809c11aaec9b6e6009a5bc8eb72b9fcdd32fb6 /libavcodec | |
parent | ab8a0d04e9ea38270ede84bd3655578eca2ca40a (diff) | |
download | ffmpeg-58170ffdf7064d3c9f02cd904367d343e4109ebe.tar.gz |
Fix warning:
In file included from mjpeg.c:903:
jpeg_ls.c:190: warning: ‘inline’ is not at beginning of declaration
Originally committed as revision 8893 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/jpeg_ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jpeg_ls.c b/libavcodec/jpeg_ls.c index 136e3fb809..855fc73da0 100644 --- a/libavcodec/jpeg_ls.c +++ b/libavcodec/jpeg_ls.c @@ -187,7 +187,7 @@ static int decode_lse(MJpegDecodeContext *s) return 0; } -static void inline downscale_state(JLSState *state, int Q){ +static inline void downscale_state(JLSState *state, int Q){ if(state->N[Q] == state->reset){ state->A[Q] >>=1; state->B[Q] >>=1; |