From f503b1957400727f24406c082aee18e53c29c5b8 Mon Sep 17 00:00:00 2001 From: Stefan Gehrer Date: Mon, 3 Jul 2006 17:37:57 +0000 Subject: cosmetic patch: Doxygen-style comments added some more comments Originally committed as revision 5602 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cavsdata.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavcodec/cavsdata.h') diff --git a/libavcodec/cavsdata.h b/libavcodec/cavsdata.h index a73a3d60d7..d8de9d33bf 100644 --- a/libavcodec/cavsdata.h +++ b/libavcodec/cavsdata.h @@ -194,15 +194,15 @@ DECLARE_ALIGNED_8(typedef, struct) { int16_t ref; } vector_t; -// marks block as unavailable, i.e. out of picture -// or not yet decoded +/** marks block as unavailable, i.e. out of picture + or not yet decoded */ static const vector_t un_mv = {0,0,1,NOT_AVAIL}; -//marks block as "no prediction from this direction" -// e.g. forward motion vector in BWD partition +/** marks block as "no prediction from this direction" + e.g. forward motion vector in BWD partition */ static const vector_t dir_mv = {0,0,1,REF_DIR}; -//marks block as using intra prediction +/** marks block as using intra prediction */ static const vector_t intra_mv = {0,0,1,REF_INTRA}; typedef struct residual_vlc_t { -- cgit v1.2.3