diff rl.h @ 6446:42fc209231cb libavcodec

move run length table constants to rl.h
author aurel
date Tue, 04 Mar 2008 23:58:12 +0000
parents 1d83e9c34641
children 778ecab25dd8
line wrap: on
line diff
--- a/rl.h	Tue Mar 04 23:10:47 2008 +0000
+++ b/rl.h	Tue Mar 04 23:58:12 2008 +0000
@@ -29,7 +29,10 @@
 
 #include <stdint.h>
 #include "bitstream.h"
-#include "mpegvideo.h"
+
+/* run length table */
+#define MAX_RUN    64
+#define MAX_LEVEL  64
 
 /** RLTable. */
 typedef struct RLTable {