| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Simple IDCT MMX | 2 * Simple IDCT MMX |
| 3 * | 3 * |
| 4 * Copyright (c) 2001, 2002 Michael Niedermayer <michaelni@gmx.at> | 4 * Copyright (c) 2001, 2002 Michael Niedermayer <michaelni@gmx.at> |
| 5 * | 5 * |
| 6 * This file is part of FFmpeg. | 6 * This file is part of FFmpeg. |
| 7 * | 7 * |
| 8 * FFmpeg is free software; you can redistribute it and/or | 8 * FFmpeg is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 void ff_simple_idct_mmx(int16_t *block) | 1280 void ff_simple_idct_mmx(int16_t *block) |
| 1281 { | 1281 { |
| 1282 idct(block); | 1282 idct(block); |
| 1283 } | 1283 } |
| 1284 | 1284 |
| 1285 //FIXME merge add/put into the idct | 1285 //FIXME merge add/put into the idct |
| 1286 | 1286 |
| 1287 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block) | 1287 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block) |
| 1288 { | 1288 { |
| 1289 idct(block); | 1289 idct(block); |
| 1290 put_pixels_clamped_mmx(block, dest, line_size); | 1290 ff_put_pixels_clamped_mmx(block, dest, line_size); |
| 1291 } | 1291 } |
| 1292 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block) | 1292 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block) |
| 1293 { | 1293 { |
| 1294 idct(block); | 1294 idct(block); |
| 1295 add_pixels_clamped_mmx(block, dest, line_size); | 1295 ff_add_pixels_clamped_mmx(block, dest, line_size); |
| 1296 } | 1296 } |
| OLD | NEW |