summaryrefslogtreecommitdiff
path: root/libavcodec/speedhq.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-22 02:26:52 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-27 15:44:38 +0200
commit65beba7889982468c8c4e2add66ff0d3a790aaa8 (patch)
tree0c991e27cc2fd16100ce2515cd724bd26184ac4a /libavcodec/speedhq.c
parenta12abf59a9255eef50324245f079a6687c7b4a98 (diff)
downloadffmpeg-65beba7889982468c8c4e2add66ff0d3a790aaa8.tar.gz
avcodec/speedhqdec: Use ff_rl_speedhq.table_(run|level) directly
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/speedhq.c')
-rw-r--r--libavcodec/speedhq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c
index 2d6e8ca949..46ff0cfc53 100644
--- a/libavcodec/speedhq.c
+++ b/libavcodec/speedhq.c
@@ -60,7 +60,7 @@ const uint16_t ff_speedhq_vlc_table[SPEEDHQ_RL_NB_ELEMS + 2][2] = {
{0x0006, 4} /* EOB */
};
-static const uint8_t speedhq_level[121] = {
+const uint8_t ff_speedhq_level[121] = {
1, 2, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24,
@@ -79,7 +79,7 @@ static const uint8_t speedhq_level[121] = {
1,
};
-static const uint8_t speedhq_run[121] = {
+const uint8_t ff_speedhq_run[121] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
@@ -102,6 +102,6 @@ RLTable ff_rl_speedhq = {
121,
121,
ff_speedhq_vlc_table,
- speedhq_run,
- speedhq_level,
+ ff_speedhq_run,
+ ff_speedhq_level,
};