[FFmpeg-cvslog] r8893 - trunk/libavcodec/jpeg_ls.c
diego
subversion
Sat May 5 13:14:03 CEST 2007
Author: diego
Date: Sat May 5 13:14:03 2007
New Revision: 8893
Log:
Fix warning:
In file included from mjpeg.c:903:
jpeg_ls.c:190: warning: ?inline? is not at beginning of declaration
Modified:
trunk/libavcodec/jpeg_ls.c
Modified: trunk/libavcodec/jpeg_ls.c
==============================================================================
--- trunk/libavcodec/jpeg_ls.c (original)
+++ trunk/libavcodec/jpeg_ls.c Sat May 5 13:14:03 2007
@@ -187,7 +187,7 @@ static int decode_lse(MJpegDecodeContext
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;
More information about the ffmpeg-cvslog
mailing list