diff cavsdata.h @ 3402:34d3e497e310 libavcodec

cosmetic patch: Doxygen-style comments added some more comments
author stefang
date Mon, 03 Jul 2006 17:37:57 +0000
parents adccbf4a1040
children 9bb2734f65d7
line wrap: on
line diff
--- a/cavsdata.h	Mon Jul 03 17:22:18 2006 +0000
+++ b/cavsdata.h	Mon Jul 03 17:37:57 2006 +0000
@@ -194,15 +194,15 @@
     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 {