From 58170ffdf7064d3c9f02cd904367d343e4109ebe Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 5 May 2007 11:14:03 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20warning:=20In=20file=20included=20from=20?= =?UTF-8?q?mjpeg.c:903:=20jpeg=5Fls.c:190:=20warning:=20=E2=80=98inline?= =?UTF-8?q?=E2=80=99=20is=20not=20at=20beginning=20of=20declaration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 8893 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/jpeg_ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;