]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/i386/fdct_mmx.c
Simplify vsad16_mmx().
[ffmpeg] / libavcodec / i386 / fdct_mmx.c
index 69e75b23cf1c1f7fd4dc77767e262ce0764a265f..9e017a656a2a7ef52bfecaf72a0aa4d0593abe97 100644 (file)
@@ -29,8 +29,9 @@
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
-#include "common.h"
-#include "../dsputil.h"
+
+#include "libavutil/common.h"
+#include "libavcodec/dsputil.h"
 #include "mmx.h"
 
 #define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align)))
@@ -475,7 +476,7 @@ static av_always_inline void fdct_row_mmx2(const int16_t *in, int16_t *out, cons
 
 static av_always_inline void fdct_row_mmx(const int16_t *in, int16_t *out, const int16_t *table)
 {
-//FIXME reorder (i dont have a old mmx only cpu here to benchmark ...)
+//FIXME reorder (I do not have an old MMX-only CPU here to benchmark ...)
     movd_m2r(*(in + 6), mm1);
     punpcklwd_m2r(*(in + 4), mm1);
     movq_r2r(mm1, mm2);