From ff159e7816796c52fda7bcf6d87066a14784ee36 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 7 Dec 2011 13:43:36 +0100 Subject: [PATCH] doxygen: Replace '\' by '@' in Doxygen markup tags. --- 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 3163a37d3b..c8baee456e 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 e68e5b593d..19ea9626db 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 6f46a7cc8a..81bb9afdcb 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 d2c3466239..1b774a53bc 100644 --- a/libavutil/lzo.h +++ b/libavutil/lzo.h @@ -32,7 +32,7 @@ #include /** @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 -- 2.11.0