]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/motion_test.c
10l: Rename missed occurrences of CONFIG_EBX_AVAILABLE to HAVE_EBX_AVAILABLE.
[ffmpeg] / libavcodec / motion_test.c
index 671b5a12fdf8a41b97c40c91de2e882b16f291ea..ecdb62a4e141b51dda3f1bf0a48afa7f5f77f805 100644 (file)
@@ -1,4 +1,22 @@
-/* motion test. (c) 2001 Fabrice Bellard. */
+/*
+ * (c) 2001 Fabrice Bellard
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
 
 /**
  * @file motion_test.c
 
 #include "i386/mmx.h"
 
+#undef exit
+#undef printf
+
 int pix_abs16x16_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
 int pix_abs16x16_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
+int pix_abs16x16_c(uint8_t *blk1, uint8_t *blk2, int lx);
 int pix_abs16x16_x2_mmx(uint8_t *blk1, uint8_t *blk2, int lx);
 int pix_abs16x16_x2_mmx1(uint8_t *blk1, uint8_t *blk2, int lx);
 int pix_abs16x16_x2_c(uint8_t *blk1, uint8_t *blk2, int lx);