Mercurial > libavcodec.hg
comparison simple_idct.h @ 1064:b32afefe7d33 libavcodec
* UINTX -> uintx_t INTX -> intx_t
| author | kabi |
|---|---|
| date | Tue, 11 Feb 2003 16:35:48 +0000 |
| parents | fb6cbb8a04a3 |
| children | 1e39f273ecd6 |
comparison
equal
deleted
inserted
replaced
| 1063:fdeac9642346 | 1064:b32afefe7d33 |
|---|---|
| 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 void simple_idct_put(UINT8 *dest, int line_size, DCTELEM *block); | 21 void simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block); |
| 22 void simple_idct_add(UINT8 *dest, int line_size, DCTELEM *block); | 22 void simple_idct_add(uint8_t *dest, int line_size, DCTELEM *block); |
| 23 void ff_simple_idct_mmx(int16_t *block); | 23 void ff_simple_idct_mmx(int16_t *block); |
| 24 void ff_simple_idct_add_mmx(UINT8 *dest, int line_size, int16_t *block); | 24 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, int16_t *block); |
| 25 void ff_simple_idct_put_mmx(UINT8 *dest, int line_size, int16_t *block); | 25 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, int16_t *block); |
| 26 void simple_idct(DCTELEM *block); | 26 void simple_idct(DCTELEM *block); |
| 27 | 27 |
| 28 void simple_idct248_put(UINT8 *dest, int line_size, DCTELEM *block); | 28 void simple_idct248_put(uint8_t *dest, int line_size, DCTELEM *block); |
| 29 | 29 |
| 30 void simple_idct84_add(UINT8 *dest, int line_size, DCTELEM *block); | 30 void simple_idct84_add(uint8_t *dest, int line_size, DCTELEM *block); |
| 31 void simple_idct48_add(UINT8 *dest, int line_size, DCTELEM *block); | 31 void simple_idct48_add(uint8_t *dest, int line_size, DCTELEM *block); |
