comparison cavsdata.h @ 8605:33f51dd2491f libavcodec

rename vector_t to cavs_vector
author stefang
date Fri, 16 Jan 2009 17:20:17 +0000
parents 0579157cbb14
children fdafbcef52f5
comparison
equal deleted inserted replaced
8604:48c89068a41b 8605:33f51dd2491f
88 32771,35734,38965,42497,46341,50535,55109,60099 88 32771,35734,38965,42497,46341,50535,55109,60099
89 }; 89 };
90 90
91 /** marks block as unavailable, i.e. out of picture 91 /** marks block as unavailable, i.e. out of picture
92 or not yet decoded */ 92 or not yet decoded */
93 const vector_t ff_cavs_un_mv = {0,0,1,NOT_AVAIL}; 93 const cavs_vector ff_cavs_un_mv = {0,0,1,NOT_AVAIL};
94 94
95 /** marks block as "no prediction from this direction" 95 /** marks block as "no prediction from this direction"
96 e.g. forward motion vector in BWD partition */ 96 e.g. forward motion vector in BWD partition */
97 const vector_t ff_cavs_dir_mv = {0,0,1,REF_DIR}; 97 const cavs_vector ff_cavs_dir_mv = {0,0,1,REF_DIR};
98 98
99 /** marks block as using intra prediction */ 99 /** marks block as using intra prediction */
100 const vector_t ff_cavs_intra_mv = {0,0,1,REF_INTRA}; 100 const cavs_vector ff_cavs_intra_mv = {0,0,1,REF_INTRA};
101 101
102 #define EOB 0,0,0 102 #define EOB 0,0,0
103 103
104 const struct dec_2dvlc ff_cavs_intra_dec[7] = { 104 const struct dec_2dvlc ff_cavs_intra_dec[7] = {
105 { 105 {