diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-05 11:57:17 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-05 12:08:24 +0100 |
commit | 7ca2a23aaad74ac2c5e54359628013700791f104 (patch) | |
tree | c3c0d067f6f45e1d75e2f9f1270cceb5e6f765a2 /libavcodec/bitstream.c | |
parent | 8f1d18a91be942ea646a3c074bee35c6046882af (diff) | |
download | ffmpeg-7ca2a23aaad74ac2c5e54359628013700791f104.tar.gz |
avcodec/bitstream: Document the values supported for *_size in ff_init_vlc_sparse()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/bitstream.c')
-rw-r--r-- | libavcodec/bitstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index 8deaa4abb8..6c8dca1d85 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -266,7 +266,7 @@ static int build_table(VLC *vlc, int table_nb_bits, int nb_codes, 'bits' or 'codes' tables. 'xxx_size' : gives the number of bytes of each entry of the 'bits' - or 'codes' tables. + or 'codes' tables. Currently 1,2 and 4 are supported. 'wrap' and 'size' make it possible to use any memory configuration and types (byte/word/long) to store the 'bits', 'codes', and 'symbols' tables. |