diff mpegvideo.c @ 17:b69fe46fd708 libavcodec

Adding fastmemcpy stuff to speedup mplayer project
author nickols_k
date Thu, 02 Aug 2001 08:29:38 +0000
parents 174ef88f619a
children 1d2077091e88
line wrap: on
line diff
--- a/mpegvideo.c	Mon Jul 30 23:51:20 2001 +0000
+++ b/mpegvideo.c	Thu Aug 02 08:29:38 2001 +0000
@@ -24,6 +24,15 @@
 #include "dsputil.h"
 #include "mpegvideo.h"
 
+/* Stuff below is useful only for mplayer project */
+#ifdef HAVE_CONFIG_H
+#include "../config.h"
+#endif
+
+#ifdef USE_FASTMEMCPY
+#include "fastmemcpy.h"
+#endif
+
 static void encode_picture(MpegEncContext *s, int picture_number);
 static void rate_control_init(MpegEncContext *s);
 static int rate_estimate_qscale(MpegEncContext *s);