diff h264.c @ 4908:777f250df232 libavcodec

Fix multiple "¡Æinline/static¡Ç is not at beginning of declaration" warnings.
author diego
date Sat, 05 May 2007 12:18:14 +0000
parents b1fd0281c139
children 0d1cc37d9430
line wrap: on
line diff
--- a/h264.c	Sat May 05 11:14:03 2007 +0000
+++ b/h264.c	Sat May 05 12:18:14 2007 +0000
@@ -3497,7 +3497,7 @@
     }
 }
 
-static void av_always_inline hl_decode_mb_internal(H264Context *h, int simple){
+static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
     MpegEncContext * const s = &h->s;
     const int mb_x= s->mb_x;
     const int mb_y= s->mb_y;
@@ -5976,7 +5976,7 @@
     return get_cabac_bypass_sign( &h->cabac, -mvd );
 }
 
-static int inline get_cabac_cbf_ctx( H264Context *h, int cat, int idx ) {
+static inline int get_cabac_cbf_ctx( H264Context *h, int cat, int idx ) {
     int nza, nzb;
     int ctx = 0;
 
@@ -6185,7 +6185,7 @@
     return 0;
 }
 
-static void inline compute_mb_neighbors(H264Context *h)
+static inline void compute_mb_neighbors(H264Context *h)
 {
     MpegEncContext * const s = &h->s;
     const int mb_xy  = s->mb_x + s->mb_y*s->mb_stride;