forked from len0rd/rockbox
Fix corrupted videos on target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10485 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c5a309afbd
commit
b09ba217cc
1 changed files with 3 additions and 3 deletions
|
@ -40,7 +40,7 @@ extern struct plugin_api* rb;
|
||||||
#define PIC_CODING_EXT 0x100
|
#define PIC_CODING_EXT 0x100
|
||||||
|
|
||||||
/* default intra quant matrix, in zig-zag order */
|
/* default intra quant matrix, in zig-zag order */
|
||||||
static const uint8_t default_intra_quantizer_matrix[64] IBSS_ATTR = {
|
static const uint8_t default_intra_quantizer_matrix[64] ICONST_ATTR = {
|
||||||
8,
|
8,
|
||||||
16, 16,
|
16, 16,
|
||||||
19, 16, 19,
|
19, 16, 19,
|
||||||
|
@ -58,7 +58,7 @@ static const uint8_t default_intra_quantizer_matrix[64] IBSS_ATTR = {
|
||||||
83
|
83
|
||||||
};
|
};
|
||||||
|
|
||||||
uint8_t mpeg2_scan_norm[64] ICONST_ATTR = {
|
uint8_t mpeg2_scan_norm[64] IDATA_ATTR = {
|
||||||
/* Zig-Zag scan pattern */
|
/* Zig-Zag scan pattern */
|
||||||
0, 1, 8, 16, 9, 2, 3, 10, 17, 24, 32, 25, 18, 11, 4, 5,
|
0, 1, 8, 16, 9, 2, 3, 10, 17, 24, 32, 25, 18, 11, 4, 5,
|
||||||
12, 19, 26, 33, 40, 48, 41, 34, 27, 20, 13, 6, 7, 14, 21, 28,
|
12, 19, 26, 33, 40, 48, 41, 34, 27, 20, 13, 6, 7, 14, 21, 28,
|
||||||
|
@ -66,7 +66,7 @@ uint8_t mpeg2_scan_norm[64] ICONST_ATTR = {
|
||||||
58, 59, 52, 45, 38, 31, 39, 46, 53, 60, 61, 54, 47, 55, 62, 63
|
58, 59, 52, 45, 38, 31, 39, 46, 53, 60, 61, 54, 47, 55, 62, 63
|
||||||
};
|
};
|
||||||
|
|
||||||
uint8_t mpeg2_scan_alt[64] ICONST_ATTR = {
|
uint8_t mpeg2_scan_alt[64] IDATA_ATTR = {
|
||||||
/* Alternate scan pattern */
|
/* Alternate scan pattern */
|
||||||
0, 8, 16, 24, 1, 9, 2, 10, 17, 25, 32, 40, 48, 56, 57, 49,
|
0, 8, 16, 24, 1, 9, 2, 10, 17, 25, 32, 40, 48, 56, 57, 49,
|
||||||
41, 33, 26, 18, 3, 11, 4, 12, 19, 27, 34, 42, 50, 58, 35, 43,
|
41, 33, 26, 18, 3, 11, 4, 12, 19, 27, 34, 42, 50, 58, 35, 43,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue