summaryrefslogtreecommitdiff
path: root/libavcodec/speedhq.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-22 18:56:28 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-27 15:44:38 +0200
commite59e14eee11e2efd8b2c58ee1033682ddfe22845 (patch)
tree572817c6424529fef12a723591526720a2914626 /libavcodec/speedhq.c
parent4190019ff4672f38835fc0d03206bdf4278a8cb4 (diff)
avcodec/speedhq: Remove unused ff_rl_speedhq
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/speedhq.c')
-rw-r--r--libavcodec/speedhq.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c
index 46ff0cfc53..eb7de03116 100644
--- a/libavcodec/speedhq.c
+++ b/libavcodec/speedhq.c
@@ -20,7 +20,6 @@
*/
#include <stdint.h>
-#include "rl.h"
#include "speedhq.h"
/* AC codes: Very similar but not identical to MPEG-2. */
@@ -97,11 +96,3 @@ const uint8_t ff_speedhq_run[121] = {
23, 24, 25, 26, 27, 28, 29, 30,
31,
};
-
-RLTable ff_rl_speedhq = {
- 121,
- 121,
- ff_speedhq_vlc_table,
- ff_speedhq_run,
- ff_speedhq_level,
-};