Mercurial > libavcodec.hg
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 3401:e88c3bc82b15 | 3402:34d3e497e310 |
|---|---|
| 192 int16_t y; | 192 int16_t y; |
| 193 int16_t dist; | 193 int16_t dist; |
| 194 int16_t ref; | 194 int16_t ref; |
| 195 } vector_t; | 195 } vector_t; |
| 196 | 196 |
| 197 // marks block as unavailable, i.e. out of picture | 197 /** marks block as unavailable, i.e. out of picture |
| 198 // or not yet decoded | 198 or not yet decoded */ |
| 199 static const vector_t un_mv = {0,0,1,NOT_AVAIL}; | 199 static const vector_t un_mv = {0,0,1,NOT_AVAIL}; |
| 200 | 200 |
| 201 //marks block as "no prediction from this direction" | 201 /** marks block as "no prediction from this direction" |
| 202 // e.g. forward motion vector in BWD partition | 202 e.g. forward motion vector in BWD partition */ |
| 203 static const vector_t dir_mv = {0,0,1,REF_DIR}; | 203 static const vector_t dir_mv = {0,0,1,REF_DIR}; |
| 204 | 204 |
| 205 //marks block as using intra prediction | 205 /** marks block as using intra prediction */ |
| 206 static const vector_t intra_mv = {0,0,1,REF_INTRA}; | 206 static const vector_t intra_mv = {0,0,1,REF_INTRA}; |
| 207 | 207 |
| 208 typedef struct residual_vlc_t { | 208 typedef struct residual_vlc_t { |
| 209 int8_t rltab[59][3]; | 209 int8_t rltab[59][3]; |
| 210 int8_t level_add[26]; | 210 int8_t level_add[26]; |
