diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-05-22 19:50:13 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-05-28 15:38:43 +0100 |
commit | 324e50ee95929a9491b855c5e15451145bd5d1ec (patch) | |
tree | 69e76a6536ed3ada91c3771f087a76fb9b8acf8d /libavcodec/rl.h | |
parent | 6f57375d707de40dcec28d3cef886c364e032c21 (diff) | |
download | ffmpeg-324e50ee95929a9491b855c5e15451145bd5d1ec.tar.gz |
rl: Add a function for freeing dynamically allocated tables.
Such tables are not used anywhere currently, but that should change.
Diffstat (limited to 'libavcodec/rl.h')
-rw-r--r-- | libavcodec/rl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/rl.h b/libavcodec/rl.h index d03d4365a8..8244968898 100644 --- a/libavcodec/rl.h +++ b/libavcodec/rl.h @@ -56,6 +56,11 @@ typedef struct RLTable { void ff_rl_init(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]); void ff_rl_init_vlc(RLTable *rl); +/** + * Free the contents of a dynamically allocated table. + */ +void ff_rl_free(RLTable *rl); + #define INIT_VLC_RL(rl, static_size)\ {\ int q;\ |