From: Jan Schmidt Date: Thu, 11 Jun 2009 10:27:26 +0000 (+0100) Subject: docs: Remove gtk-doc comment marker X-Git-Tag: RELEASE-0.10.16~478 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42c9f83b5fed7bad9a341da0b2bae02abd3edb58;p=platform%2Fupstream%2Fgst-plugins-good.git docs: Remove gtk-doc comment marker These comment blocks aren't gtk-doc comments and cause annoying noise in the docs build. --- diff --git a/gst/matroska/lzo.c b/gst/matroska/lzo.c index 5798234..995638f 100644 --- a/gst/matroska/lzo.c +++ b/gst/matroska/lzo.c @@ -36,7 +36,7 @@ typedef struct LZOContext int error; } LZOContext; -/** +/* * \brief read one byte from input buffer, avoiding overrun * \return byte read */ @@ -55,7 +55,7 @@ get_byte (LZOContext * c) #define GETB(c) get_byte(&(c)) #endif -/** +/* * \brief decode a length value in the coding used by lzo * \param x previous byte value * \param mask bits used from x @@ -86,7 +86,7 @@ get_len (LZOContext * c, int x, int mask) #define COPY4(d, s) (d)[0] = (s)[0]; (d)[1] = (s)[1]; (d)[2] = (s)[2]; (d)[3] = (s)[3]; #endif -/** +/* * \brief copy bytes from input to output buffer with checking * \param cnt number of bytes to copy, must be >= 0 */ @@ -115,7 +115,7 @@ copy (LZOContext * c, int cnt) c->out = dst + cnt; } -/** +/* * \brief copy previously decoded bytes to current position * \param back how many bytes back we start * \param cnt number of bytes to copy, must be >= 0 @@ -171,7 +171,7 @@ copy_backptr (LZOContext * c, int back, int cnt) c->out = dst; } -/** +/* * \brief decode LZO 1x compressed data * \param out output buffer * \param outlen size of output buffer, number of bytes left are returned here