* 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
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
idct(block);
|
||||
add_pixels_clamped(block, dest, line_size);
|
||||
add_pixels_clamped_mmx(block, dest, line_size);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue