struct coef_vlc_table->levels and struct getbit_context had undoxified
comments.
/** Structure for bistream I/O. */
struct getbit_context {
- /* Start of the internal buffer. */
+ /** Start of the internal buffer. */
const uint8_t *buffer;
- /* End of the internal buffer. */
+ /** End of the internal buffer. */
const uint8_t *buffer_end;
/** Bit counter. */
int index;
const uint32_t *huffcodes;
/** VLC bit size. */
const uint8_t *huffbits;
- /* Table to build run/level tables. */
+ /** Table to build run/level tables. */
const uint16_t *levels;
};