comparison simple_idct.h @ 706:e65798d228ea libavcodec

idct permutation cleanup, idct can be selected per context now fixing some threadunsafe code
author michaelni
date Sun, 29 Sep 2002 22:44:22 +0000
parents e7b72c1dfa1b
children 2b7ff6dfee35
comparison
equal deleted inserted replaced
705:107a56aa74f5 706:e65798d228ea
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */ 19 */
20 20
21 void simple_idct_put(UINT8 *dest, int line_size, INT16 *block); 21 void simple_idct_put(UINT8 *dest, int line_size, INT16 *block);
22 void simple_idct_add(UINT8 *dest, int line_size, INT16 *block); 22 void simple_idct_add(UINT8 *dest, int line_size, INT16 *block);
23 void simple_idct_mmx(short *block); 23 void ff_simple_idct_mmx(short *block);
24 void ff_simple_idct_add_mmx(UINT8 *dest, int line_size, INT16 *block);
25 void ff_simple_idct_put_mmx(UINT8 *dest, int line_size, INT16 *block);
24 void simple_idct(short *block); 26 void simple_idct(short *block);