diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-17 12:11:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-17 12:11:46 +0000 |
commit | de86157836aa8b2616d9fd9f56a1c1e55ff632df (patch) | |
tree | 11bb50237be958df9428d6393d4a0ff5c5dc27e9 /libavcodec/h264.c | |
parent | 1bf6e565dde17ac5603565c2d719005d91d6f5bd (diff) | |
download | ffmpeg-de86157836aa8b2616d9fd9f56a1c1e55ff632df.tar.gz |
cosmetics: 'void/int inline' --> 'inline void/int' to avoid warnings of the type
"'inline' is not at beginning of declaration" with -Wextra.
Originally committed as revision 17392 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 285f9c9569..c1e3cfaff3 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -6266,7 +6266,7 @@ static void filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, } -static void av_always_inline filter_mb_dir(H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize, int mb_xy, int mb_type, int mvy_limit, int first_vertical_edge_done, int dir) { +static av_always_inline void filter_mb_dir(H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize, int mb_xy, int mb_type, int mvy_limit, int first_vertical_edge_done, int dir) { MpegEncContext * const s = &h->s; int edge; const int mbm_xy = dir == 0 ? mb_xy -1 : h->top_mb_xy; |