From: Andre Noll Date: Fri, 1 Jun 2012 09:33:39 +0000 (+0200) Subject: wma: Doxify some comments. X-Git-Tag: v0.4.11~15 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=5d5132e5bf39298739737d75aafb66a7405978a3 wma: Doxify some comments. struct coef_vlc_table->levels and struct getbit_context had undoxified comments. --- diff --git a/bitstream.h b/bitstream.h index 5d6be3be..a3393380 100644 --- a/bitstream.h +++ b/bitstream.h @@ -11,9 +11,9 @@ /** 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; diff --git a/wmadata.h b/wmadata.h index b5dad0f5..185ec1fc 100644 --- a/wmadata.h +++ b/wmadata.h @@ -29,7 +29,7 @@ struct coef_vlc_table { 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; };