diff options
author | Arpi <arpi@thot.banki.hu> | 2002-04-20 21:17:26 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2002-04-20 21:17:26 +0000 |
commit | 2c029cd19d7a20aca129a4818212e48e5ce79a76 (patch) | |
tree | 4d390c78bc9bcb89c4c3d53f85d25b5dcf573213 | |
parent | 91029be79005b17311fcf75f3f9f977f4d20cfd7 (diff) | |
download | ffmpeg-2c029cd19d7a20aca129a4818212e48e5ce79a76.tar.gz |
postprocess array increased to handle images up to 2048x1536
Originally committed as revision 407 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3356dcfb68..d4f13024ce 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -332,8 +332,8 @@ void avcodec_register_all(void); #ifdef FF_POSTPROCESS #ifndef MBC -#define MBC 48 -#define MBR 36 +#define MBC 128 +#define MBR 96 #endif extern int quant_store[MBR+1][MBC+1]; // [Review] #endif |