comparison simple_idct.h @ 1106:1e39f273ecd6 libavcodec

per file doxy
author michaelni
date Thu, 06 Mar 2003 11:32:04 +0000
parents b32afefe7d33
children ef2149182f1c
comparison
equal deleted inserted replaced
1105:b773f9d23236 1106:1e39f273ecd6
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software 17 * License along with this library; if not, write to the Free Software
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 /**
22 * @file simple_idct.h
23 * simple idct header.
24 */
25
21 void simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block); 26 void simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block);
22 void simple_idct_add(uint8_t *dest, int line_size, DCTELEM *block); 27 void simple_idct_add(uint8_t *dest, int line_size, DCTELEM *block);
23 void ff_simple_idct_mmx(int16_t *block); 28 void ff_simple_idct_mmx(int16_t *block);
24 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, int16_t *block); 29 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, int16_t *block);
25 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, int16_t *block); 30 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, int16_t *block);