diff options
author | Alexandra Hájková <alexandra.khirnova@gmail.com> | 2016-05-14 11:45:01 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-05-17 10:29:27 +0200 |
commit | ffa190d0479d2370dd89c95692f822cbff2cc24c (patch) | |
tree | 6b09a2c8623644bdf5fdd4bb683af2a44dbe6c09 /libavcodec/rl.h | |
parent | b23613268c6b56a8f9de7859562d82b4b88353d9 (diff) | |
download | ffmpeg-ffa190d0479d2370dd89c95692f822cbff2cc24c.tar.gz |
Move VLC and RL_VLC_ELEM structure definitions to a separate header
Use the newly created vlc.h directly instead of including get_bits when needed.
The VLC and RL_VLC_ELEM structures are independent from the bitreader.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/rl.h')
-rw-r--r-- | libavcodec/rl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/rl.h b/libavcodec/rl.h index e4a622f322..a5725cea51 100644 --- a/libavcodec/rl.h +++ b/libavcodec/rl.h @@ -28,7 +28,8 @@ #define AVCODEC_RL_H #include <stdint.h> -#include "get_bits.h" + +#include "vlc.h" /* run length table */ #define MAX_RUN 64 |