move run length table constants to rl.h

Originally committed as revision 12319 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs
2008-03-04 23:58:12 +00:00
parent 288a44fb7a
commit 6d93461504
2 changed files with 5 additions and 7 deletions

View File

@@ -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 {