Commit 49baf44c authored by Reimar Döffinger's avatar Reimar Döffinger

Make ff_mba_* arrays const.

Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent b052601b
...@@ -59,8 +59,8 @@ extern RLTable rl_intra_aic; ...@@ -59,8 +59,8 @@ extern RLTable rl_intra_aic;
extern const uint16_t h263_format[8][2]; extern const uint16_t h263_format[8][2];
extern const uint8_t modified_quant_tab[2][32]; extern const uint8_t modified_quant_tab[2][32];
extern uint16_t ff_mba_max[6]; extern const uint16_t ff_mba_max[6];
extern uint8_t ff_mba_length[7]; extern const uint8_t ff_mba_length[7];
extern uint8_t ff_h263_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3]; extern uint8_t ff_h263_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
......
...@@ -264,11 +264,11 @@ const uint8_t ff_h263_chroma_qscale_table[32]={ ...@@ -264,11 +264,11 @@ const uint8_t ff_h263_chroma_qscale_table[32]={
0, 1, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9,10,10,11,11,12,12,12,13,13,13,14,14,14,14,14,15,15,15,15,15 0, 1, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9,10,10,11,11,12,12,12,13,13,13,14,14,14,14,14,15,15,15,15,15
}; };
uint16_t ff_mba_max[6]={ const uint16_t ff_mba_max[6]={
47, 98, 395,1583,6335,9215 47, 98, 395,1583,6335,9215
}; };
uint8_t ff_mba_length[7]={ const uint8_t ff_mba_length[7]={
6, 7, 9, 11, 13, 14, 14 6, 7, 9, 11, 13, 14, 14
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment