comparison i386/idct_mmx.c @ 2024:f65d87bfdd5a libavcodec

some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
author michael
date Tue, 18 May 2004 17:09:46 +0000
parents 35de17dd6ed8
children 42d3e9068e32
comparison
equal deleted inserted replaced
2023:50e92cec1b84 2024:f65d87bfdd5a
21 * along with this program; if not, write to the Free Software 21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */ 23 */
24 24
25 #include "../common.h" 25 #include "../common.h"
26 #include "../dsputil.h"
26 27
27 #include "mmx.h" 28 #include "mmx.h"
28 29
29 #define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align))) 30 #define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align)))
30 31
586 \ 587 \
587 idct_col (block, 0); \ 588 idct_col (block, 0); \
588 idct_col (block, 4); \ 589 idct_col (block, 4); \
589 } 590 }
590 591
592 void ff_mmx_idct(DCTELEM *block);
593 void ff_mmxext_idct(DCTELEM *block);
591 594
592 declare_idct (ff_mmxext_idct, mmxext_table, 595 declare_idct (ff_mmxext_idct, mmxext_table,
593 mmxext_row_head, mmxext_row, mmxext_row_tail, mmxext_row_mid) 596 mmxext_row_head, mmxext_row, mmxext_row_tail, mmxext_row_mid)
594 597
595 declare_idct (ff_mmx_idct, mmx_table, 598 declare_idct (ff_mmx_idct, mmx_table,