mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-08 02:20:06 +08:00
[jpeg]: Accept 8K width and height for JPEG dec
JPEG VDPU can support 8K image decoding. So we can change the limit on hal header file. Change-Id: Icd744300b391be0fb6387215252145c945caf488 Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
This commit is contained in:
@@ -34,8 +34,8 @@
|
||||
#define MAX_HUFFMAN_CODE_BIT_LENGTH (16) /* The longest code word is 16 bits */
|
||||
#define MIN_WIDTH (48) /* 48 Bytes */
|
||||
#define MIN_HEIGHT (48) /* 48 Bytes */
|
||||
#define MAX_WIDTH (4*1024) /* 4K Bytes */
|
||||
#define MAX_HEIGHT (4*1024) /* 4K Bytes */
|
||||
#define MAX_WIDTH (8*1024) /* 4K Bytes */
|
||||
#define MAX_HEIGHT (8*1024) /* 4K Bytes */
|
||||
#define MAX_STREAM_LENGTH (MAX_WIDTH * MAX_HEIGHT) /* 16M Bytes */
|
||||
#define ZERO_PADDING_LENGTH (4) /* 4 Bytes */
|
||||
#define JPEGD_BASELINE_TABLE_SIZE (QUANTIZE_TABLE_LENGTH * 3 \
|
||||
|
Reference in New Issue
Block a user