summaryrefslogtreecommitdiff
path: root/libavcodec/cavsdata.h
diff options
context:
space:
mode:
authorStefan Gehrer <stefan.gehrer@gmx.de>2006-07-03 17:37:57 +0000
committerStefan Gehrer <stefan.gehrer@gmx.de>2006-07-03 17:37:57 +0000
commitf503b1957400727f24406c082aee18e53c29c5b8 (patch)
tree1701e80dd7319fee296730d3a20a64e39bdbdb88 /libavcodec/cavsdata.h
parent05103ed33ffe37a6ea01ff6c5b26d495789b70c8 (diff)
downloadffmpeg-f503b1957400727f24406c082aee18e53c29c5b8.tar.gz
cosmetic patch:
Doxygen-style comments added some more comments Originally committed as revision 5602 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdata.h')
-rw-r--r--libavcodec/cavsdata.h10
1 files changed, 5 insertions, 5 deletions
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 {