diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-07-17 10:43:42 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-07-17 10:43:42 +0000 |
commit | 0c733da8e2dc411afbc1e74f88890dcf15533553 (patch) | |
tree | 127324520317998bcc2a10c0472df5ca57fe7cf2 /libavcodec/indeo5.c | |
parent | 23ccf3c7a7621175156b4f8f89d321f081adbe59 (diff) | |
download | ffmpeg-0c733da8e2dc411afbc1e74f88890dcf15533553.tar.gz |
Fix Doxygen @param command attribute syntax.
The [in] and [out] attributes have to be appended to the @param command.
Originally committed as revision 24283 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo5.c')
-rw-r--r-- | libavcodec/indeo5.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/libavcodec/indeo5.c b/libavcodec/indeo5.c index dd22d4fb9e..d8aab20579 100644 --- a/libavcodec/indeo5.c +++ b/libavcodec/indeo5.c @@ -84,8 +84,8 @@ typedef struct { * This header is present in key frames only. * It defines parameters for all frames in a GOP. * - * @param ctx [in,out] ptr to the decoder context - * @param avctx [in] ptr to the AVCodecContext + * @param[in,out] ctx ptr to the decoder context + * @param[in] avctx ptr to the AVCodecContext * @return result code: 0 = OK, -1 = error */ static int decode_gop_header(IVI5DecContext *ctx, AVCodecContext *avctx) @@ -298,7 +298,7 @@ static int decode_gop_header(IVI5DecContext *ctx, AVCodecContext *avctx) /** * Skip a header extension. * - * @param gb [in,out] the GetBit context + * @param[in,out] gb the GetBit context */ static inline void skip_hdr_extension(GetBitContext *gb) { @@ -314,8 +314,8 @@ static inline void skip_hdr_extension(GetBitContext *gb) /** * Decode Indeo5 picture header. * - * @param ctx [in,out] ptr to the decoder context - * @param avctx [in] ptr to the AVCodecContext + * @param[in,out] ctx ptr to the decoder context + * @param[in] avctx ptr to the AVCodecContext * @return result code: 0 = OK, -1 = error */ static int decode_pic_hdr(IVI5DecContext *ctx, AVCodecContext *avctx) @@ -366,9 +366,9 @@ static int decode_pic_hdr(IVI5DecContext *ctx, AVCodecContext *avctx) /** * Decode Indeo5 band header. * - * @param ctx [in,out] ptr to the decoder context - * @param band [in,out] ptr to the band descriptor - * @param avctx [in] ptr to the AVCodecContext + * @param[in,out] ctx ptr to the decoder context + * @param[in,out] band ptr to the band descriptor + * @param[in] avctx ptr to the AVCodecContext * @return result code: 0 = OK, -1 = error */ static int decode_band_hdr(IVI5DecContext *ctx, IVIBandDesc *band, @@ -435,10 +435,10 @@ static int decode_band_hdr(IVI5DecContext *ctx, IVIBandDesc *band, * Decode info (block type, cbp, quant delta, motion vector) * for all macroblocks in the current tile. * - * @param ctx [in,out] ptr to the decoder context - * @param band [in,out] ptr to the band descriptor - * @param tile [in,out] ptr to the tile descriptor - * @param avctx [in] ptr to the AVCodecContext + * @param[in,out] ctx ptr to the decoder context + * @param[in,out] band ptr to the band descriptor + * @param[in,out] tile ptr to the tile descriptor + * @param[in] avctx ptr to the AVCodecContext * @return result code: 0 = OK, -1 = error */ static int decode_mb_info(IVI5DecContext *ctx, IVIBandDesc *band, @@ -559,9 +559,9 @@ static int decode_mb_info(IVI5DecContext *ctx, IVIBandDesc *band, /** * Decode an Indeo5 band. * - * @param ctx [in,out] ptr to the decoder context - * @param band [in,out] ptr to the band descriptor - * @param avctx [in] ptr to the AVCodecContext + * @param[in,out] ctx ptr to the decoder context + * @param[in,out] band ptr to the band descriptor + * @param[in] avctx ptr to the AVCodecContext * @return result code: 0 = OK, -1 = error */ static int decode_band(IVI5DecContext *ctx, int plane_num, @@ -649,7 +649,7 @@ static int decode_band(IVI5DecContext *ctx, int plane_num, /** * Switch buffers. * - * @param ctx [in,out] ptr to the decoder context + * @param[in,out] ctx ptr to the decoder context */ static void switch_buffers(IVI5DecContext *ctx) { |