Mercurial > libavcodec.hg
comparison msmpeg4data.h @ 2753:ba8ecddf5598 libavcodec
adding a few const
| author | michael |
|---|---|
| date | Wed, 01 Jun 2005 21:19:00 +0000 |
| parents | 81a9f883a17a |
| children | 40f745e4fdff |
comparison
equal
deleted
inserted
replaced
| 2752:23665209e823 | 2753:ba8ecddf5598 |
|---|---|
| 1797 | 1797 |
| 1798 static const uint8_t v2_intra_cbpc[4][2] = { | 1798 static const uint8_t v2_intra_cbpc[4][2] = { |
| 1799 {1, 1}, {0, 3}, {1, 3}, {1, 2}, | 1799 {1, 1}, {0, 3}, {1, 3}, {1, 2}, |
| 1800 }; | 1800 }; |
| 1801 | 1801 |
| 1802 static uint8_t wmv1_y_dc_scale_table[32]={ | 1802 static const uint8_t wmv1_y_dc_scale_table[32]={ |
| 1803 // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 | 1803 // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 |
| 1804 0, 8, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21 | 1804 0, 8, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21 |
| 1805 }; | 1805 }; |
| 1806 static uint8_t wmv1_c_dc_scale_table[32]={ | 1806 static const uint8_t wmv1_c_dc_scale_table[32]={ |
| 1807 // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 | 1807 // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 |
| 1808 0, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22 | 1808 0, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22 |
| 1809 }; | 1809 }; |
| 1810 | 1810 |
| 1811 static uint8_t old_ff_y_dc_scale_table[32]={ | 1811 static const uint8_t old_ff_y_dc_scale_table[32]={ |
| 1812 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1812 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
| 1813 0, 8, 8, 8, 8,10,12,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 | 1813 0, 8, 8, 8, 8,10,12,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 |
| 1814 }; | 1814 }; |
| 1815 static uint8_t old_ff_c_dc_scale_table[32]={ | 1815 static const uint8_t old_ff_c_dc_scale_table[32]={ |
| 1816 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1816 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
| 1817 0, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22 | 1817 0, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22 |
| 1818 }; | 1818 }; |
| 1819 | 1819 |
| 1820 | 1820 |
