changeset 599:49da89abe282 libavutil

Add necessary, remove unnecessary #includes.
author diego
date Sun, 11 Jan 2009 21:03:42 +0000
parents 730f5a534ed9
children 198d4fd6541d
files crc.c md5.c
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/crc.c	Sun Jan 11 20:26:53 2009 +0000
+++ b/crc.c	Sun Jan 11 21:03:42 2009 +0000
@@ -18,7 +18,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include "common.h"
+#include "config.h"
+#include "bswap.h"
 #include "crc.h"
 
 #ifdef CONFIG_HARDCODED_TABLES
--- a/md5.c	Sun Jan 11 20:26:53 2009 +0000
+++ b/md5.c	Sun Jan 11 21:03:42 2009 +0000
@@ -30,8 +30,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include "common.h"
 #include <string.h>
+#include "bswap.h"
 #include "md5.h"
 
 typedef struct AVMD5{