diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-10-07 08:37:20 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-10-07 08:37:20 +0000 |
commit | 8f271177b0c40a4a7063994d6c8c44a8b6990f5f (patch) | |
tree | fc496e08eb08884cc08cef27f9a6ef7d54bbed92 | |
parent | fbdae895f25b8f4b672d09823bcc17250871a145 (diff) | |
download | ffmpeg-8f271177b0c40a4a7063994d6c8c44a8b6990f5f.tar.gz |
Sync cosmetics from upstream.
Originally committed as revision 15576 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/idct_mmx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/i386/idct_mmx.c b/libavcodec/i386/idct_mmx.c index d860c7e381..1e4add9f96 100644 --- a/libavcodec/i386/idct_mmx.c +++ b/libavcodec/i386/idct_mmx.c @@ -3,6 +3,7 @@ * Copyright (C) 1999-2001 Aaron Holtzman <aholtzma@ess.engr.uvic.ca> * * This file is part of mpeg2dec, a free MPEG-2 video stream decoder. + * See http://libmpeg2.sourceforge.net/ for updates. * * mpeg2dec is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,6 +33,7 @@ #define round(bias) ((int)(((bias)+0.5) * (1<<ROW_SHIFT))) #define rounder(bias) {round (bias), round (bias)} + #if 0 /* C row IDCT - it is just here to document the MMXEXT and MMX versions */ static inline void idct_row (int16_t * row, int offset, @@ -533,6 +535,7 @@ static inline void idct_col (int16_t * col, int offset) #undef C4 } + static const int32_t rounder0[] ATTR_ALIGN(8) = rounder ((1 << (COL_SHIFT - 1)) - 0.5); static const int32_t rounder4[] ATTR_ALIGN(8) = rounder (0); |