]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
wma: Doxify some comments.
authorAndre Noll <maan@systemlinux.org>
Fri, 1 Jun 2012 09:33:39 +0000 (11:33 +0200)
committerAndre Noll <maan@systemlinux.org>
Sat, 16 Jun 2012 12:49:02 +0000 (14:49 +0200)
struct coef_vlc_table->levels and struct getbit_context had undoxified
comments.

bitstream.h
wmadata.h

index 5d6be3be2693a84f8107504f4a086dfa578c817b..a3393380e5e02801a4312c6f904c1ea25527aad9 100644 (file)
@@ -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;
index b5dad0f5af40a15773dce43b4a77e65346ea5b66..185ec1fcecb738de2a322d4e81aa67f384026b1b 100644 (file)
--- 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;
 };