comparison cavsdata.h @ 5235:5e6c54a13769 libavcodec

make vector constants global
author stefang
date Sat, 07 Jul 2007 04:54:05 +0000
parents 2b72f9bc4f06
children 5760ab0250aa
comparison
equal deleted inserted replaced
5234:c94c4aa7d25f 5235:5e6c54a13769
104 32771,35734,38965,42497,46341,50535,55109,60099 104 32771,35734,38965,42497,46341,50535,55109,60099
105 }; 105 };
106 106
107 /** marks block as unavailable, i.e. out of picture 107 /** marks block as unavailable, i.e. out of picture
108 or not yet decoded */ 108 or not yet decoded */
109 static const vector_t un_mv = {0,0,1,NOT_AVAIL}; 109 const vector_t ff_cavs_un_mv = {0,0,1,NOT_AVAIL};
110 110
111 /** marks block as "no prediction from this direction" 111 /** marks block as "no prediction from this direction"
112 e.g. forward motion vector in BWD partition */ 112 e.g. forward motion vector in BWD partition */
113 static const vector_t dir_mv = {0,0,1,REF_DIR}; 113 const vector_t ff_cavs_dir_mv = {0,0,1,REF_DIR};
114 114
115 /** marks block as using intra prediction */ 115 /** marks block as using intra prediction */
116 static const vector_t intra_mv = {0,0,1,REF_INTRA}; 116 const vector_t ff_cavs_intra_mv = {0,0,1,REF_INTRA};
117 117
118 #define EOB 0,0,0 118 #define EOB 0,0,0
119 119
120 static const residual_vlc_t intra_2dvlc[7] = { 120 static const residual_vlc_t intra_2dvlc[7] = {
121 { 121 {