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/vc1.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/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 199dc68887..cda1f420cc 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -318,7 +318,7 @@ static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v) * @return whether other 3 pairs should be filtered or not * @see 8.6 */ -static int av_always_inline vc1_filter_line(uint8_t* src, int stride, int pq){ +static av_always_inline int vc1_filter_line(uint8_t* src, int stride, int pq){ uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; int a0 = (2*(src[-2*stride] - src[ 1*stride]) - 5*(src[-1*stride] - src[ 0*stride]) + 4) >> 3; |