summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2009-06-11 11:27:26 +0100
committerJan Schmidt <thaytan@noraisin.net>2009-06-11 11:27:26 +0100
commit42c9f83b5fed7bad9a341da0b2bae02abd3edb58 (patch)
treef00f74481526755e20976b6d993bfc37cd43fe3c
parentceea8dc15f8b9628bec092c8ca2d8284b258abfe (diff)
docs: Remove gtk-doc comment marker
These comment blocks aren't gtk-doc comments and cause annoying noise in the docs build.
-rw-r--r--gst/matroska/lzo.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/matroska/lzo.c b/gst/matroska/lzo.c
index 57982348d..995638f83 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