diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-05 12:18:14 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-05 12:18:14 +0000 |
commit | 5a6a6cc7dc5adc376c4ff082218d055d67bf3175 (patch) | |
tree | e4c71528295426af10046316aa092a34de3f12e5 /libavcodec/h264.c | |
parent | 58170ffdf7064d3c9f02cd904367d343e4109ebe (diff) | |
download | ffmpeg-5a6a6cc7dc5adc376c4ff082218d055d67bf3175.tar.gz |
Fix multiple "‘inline/static’ is not at beginning of declaration" warnings.
Originally committed as revision 8894 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index f8f61d3744..3c0df98abf 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3497,7 +3497,7 @@ b= t; } } -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 @@ static int decode_cabac_mb_mvd( H264Context *h, int list, int n, int l ) { 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 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n 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; |