[FFmpeg-cvslog] doxygen: Replace '\' by '@' in Doxygen markup tags.

Diego Biurrun git at videolan.org
Thu Dec 8 00:31:49 CET 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Dec  7 13:43:36 2011 +0100| [ff159e7816796c52fda7bcf6d87066a14784ee36] | committer: Diego Biurrun

doxygen: Replace '\' by '@' in Doxygen markup tags.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff159e7816796c52fda7bcf6d87066a14784ee36
---

 libavcodec/ppc/h264_altivec.c |    4 ++--
 libavcodec/ppc/util_altivec.h |    2 +-
 libavcodec/tableprint.h       |    4 ++--
 libavutil/lzo.h               |    4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/libavcodec/ppc/h264_altivec.c b/libavcodec/ppc/h264_altivec.c
index 3163a37..c8baee4 100644
--- a/libavcodec/ppc/h264_altivec.c
+++ b/libavcodec/ppc/h264_altivec.c
@@ -616,8 +616,8 @@ static inline void write16x4(uint8_t *dst, int dst_stride,
     *(dst_int+15*int_dst_stride) = *(src_int + 15);
 }
 
-/** \brief performs a 6x16 transpose of data in src, and stores it to dst
-    \todo FIXME: see if we can't spare some vec_lvsl() by them factorizing
+/** @brief performs a 6x16 transpose of data in src, and stores it to dst
+    @todo FIXME: see if we can't spare some vec_lvsl() by them factorizing
     out of unaligned_load() */
 #define readAndTranspose16x6(src, src_stride, r8, r9, r10, r11, r12, r13) {\
     register vec_u8 r0  = unaligned_load(0,             src);            \
diff --git a/libavcodec/ppc/util_altivec.h b/libavcodec/ppc/util_altivec.h
index e68e5b5..19ea962 100644
--- a/libavcodec/ppc/util_altivec.h
+++ b/libavcodec/ppc/util_altivec.h
@@ -94,7 +94,7 @@ do { \
 } while (0)
 
 
-/** \brief loads unaligned vector \a *src with offset \a offset
+/** @brief loads unaligned vector @a *src with offset @a offset
     and returns it */
 static inline vector unsigned char unaligned_load(int offset, uint8_t *src)
 {
diff --git a/libavcodec/tableprint.h b/libavcodec/tableprint.h
index 6f46a7c..81bb9af 100644
--- a/libavcodec/tableprint.h
+++ b/libavcodec/tableprint.h
@@ -58,7 +58,7 @@ void write_##type##_2d_array(const void *arg, int len, int len2)\
 /**
  * @name Predefined functions for printing tables
  *
- * \{
+ * @{
  */
 void write_int8_t_array     (const int8_t   *, int);
 void write_uint8_t_array    (const uint8_t  *, int);
@@ -69,7 +69,7 @@ void write_int8_t_2d_array  (const void *, int, int);
 void write_uint8_t_2d_array (const void *, int, int);
 void write_uint32_t_2d_array(const void *, int, int);
 void write_float_2d_array   (const void *, int, int);
-/** \} */ // end of printfuncs group
+/** @} */ // end of printfuncs group
 
 #define WRITE_ARRAY(prefix, type, name)                 \
     do {                                                \
diff --git a/libavutil/lzo.h b/libavutil/lzo.h
index d2c3466..1b774a5 100644
--- a/libavutil/lzo.h
+++ b/libavutil/lzo.h
@@ -32,7 +32,7 @@
 #include <stdint.h>
 
 /** @name Error flags returned by av_lzo1x_decode
-  * \{ */
+  * @{ */
 /// end of the input buffer reached before decoding finished
 #define AV_LZO_INPUT_DEPLETED 1
 /// decoded data did not fit into output buffer
@@ -41,7 +41,7 @@
 #define AV_LZO_INVALID_BACKPTR 4
 /// a non-specific error in the compressed bitstream
 #define AV_LZO_ERROR 8
-/** \} */
+/** @} */
 
 #define AV_LZO_INPUT_PADDING 8
 #define AV_LZO_OUTPUT_PADDING 12



More information about the ffmpeg-cvslog mailing list