mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-08 19:07:09 +00:00
* using DSPContext - so each codec could use its local (sub)set of CPU extension
* I think IDCT needs some better generic solution Originally committed as revision 1195 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
eb4b3dd3c3
commit
ec7e0bf0fd
@ -1301,10 +1301,10 @@ void ff_simple_idct_mmx(int16_t *block)
|
|||||||
void ff_simple_idct_put_mmx(UINT8 *dest, int line_size, DCTELEM *block)
|
void ff_simple_idct_put_mmx(UINT8 *dest, int line_size, DCTELEM *block)
|
||||||
{
|
{
|
||||||
idct(block);
|
idct(block);
|
||||||
put_pixels_clamped(block, dest, line_size);
|
put_pixels_clamped_mmx(block, dest, line_size);
|
||||||
}
|
}
|
||||||
void ff_simple_idct_add_mmx(UINT8 *dest, int line_size, DCTELEM *block)
|
void ff_simple_idct_add_mmx(UINT8 *dest, int line_size, DCTELEM *block)
|
||||||
{
|
{
|
||||||
idct(block);
|
idct(block);
|
||||||
add_pixels_clamped(block, dest, line_size);
|
add_pixels_clamped_mmx(block, dest, line_size);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user