From 5d5132e5bf39298739737d75aafb66a7405978a3 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 1 Jun 2012 11:33:39 +0200 Subject: [PATCH] wma: Doxify some comments. struct coef_vlc_table->levels and struct getbit_context had undoxified comments. --- bitstream.h | 4 ++-- wmadata.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }; -- 2.39.2