mirror of https://github.com/PCSX2/pcsx2.git
Removed idct_mmx.obj from the svn and updated the project to reflect the change.
The file was only available as a compiled .obj, with no sourcecode, and wasn't used in any platform or configuration, so me & pseudonym decided it was best not to even have it. Left a comment in the idct.cpp file explaining it. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2719 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
b9fc6d43e9
commit
80fa74532a
Binary file not shown.
|
@ -253,14 +253,16 @@ u8 mpeg2_scan_alt[64] = {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/* idct_mmx.c */
|
// The MMX verson wasn't being used and it was only available as a .obj,
|
||||||
void mpeg2_idct_copy_mmxext (s16 * block, u8 * dest, int stride);
|
// so I removed it (gigaherz).
|
||||||
void mpeg2_idct_add_mmxext (int last, s16 * block,
|
///* idct_mmx.c */
|
||||||
s16 * dest, int stride);
|
//void mpeg2_idct_copy_mmxext (s16 * block, u8 * dest, int stride);
|
||||||
void mpeg2_idct_copy_mmx (s16 * block, u8 * dest, int stride);
|
//void mpeg2_idct_add_mmxext (int last, s16 * block,
|
||||||
void mpeg2_idct_add_mmx (int last, s16 * block,
|
// s16 * dest, int stride);
|
||||||
s16 * dest, int stride);
|
//void mpeg2_idct_copy_mmx (s16 * block, u8 * dest, int stride);
|
||||||
void mpeg2_idct_mmx_init (void);
|
//void mpeg2_idct_add_mmx (int last, s16 * block,
|
||||||
|
// s16 * dest, int stride);
|
||||||
|
//void mpeg2_idct_mmx_init (void);
|
||||||
|
|
||||||
void mpeg2_idct_init()
|
void mpeg2_idct_init()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1254,10 +1254,6 @@
|
||||||
RelativePath="..\..\IPU\coroutine.h"
|
RelativePath="..\..\IPU\coroutine.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\..\Ipu\idct_mmx.obj"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\Ipu\IPU.cpp"
|
RelativePath="..\..\Ipu\IPU.cpp"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue