diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-30 01:20:07 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-04 17:41:34 +0200 |
commit | fccb23b7dddc28769013a3185fa79834ef3699d9 (patch) | |
tree | 872a334066600d560de24cb755afe7fef5a6aa78 /libavcodec/speedhq.c | |
parent | b92e14147f8efb32f3dbbb112dbaa5a5ab9bcd03 (diff) | |
download | ffmpeg-fccb23b7dddc28769013a3185fa79834ef3699d9.tar.gz |
avcodec/mpeg12vlc: Move MPEG-1/2 RL VLCs to it
It is better place for these declarations than
mpeg12data.h as RL VLC are just a variant of VLCs.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/speedhq.c')
-rw-r--r-- | libavcodec/speedhq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c index 11d3311794..6dbba02776 100644 --- a/libavcodec/speedhq.c +++ b/libavcodec/speedhq.c @@ -38,9 +38,9 @@ #include "idctdsp.h" #include "libavutil/thread.h" #include "mathops.h" -#include "mpeg12dec.h" #include "mpeg12data.h" #include "mpeg12vlc.h" +#include "rl.h" #define MAX_INDEX (64 - 1) |