summaryrefslogtreecommitdiff
path: root/libavcodec/cavsdata.h
diff options
context:
space:
mode:
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 {