diff options
author | Stefan Gehrer <stefan.gehrer@gmx.de> | 2007-07-07 04:54:05 +0000 |
---|---|---|
committer | Stefan Gehrer <stefan.gehrer@gmx.de> | 2007-07-07 04:54:05 +0000 |
commit | ac83e7b235eef9ed54e287486a68f47ddfcf3ce1 (patch) | |
tree | 34f517842c9c9db27d4dfcf991d08d079ea0c366 /libavcodec/cavsdata.h | |
parent | bd2216e48759801c5eeef9c46c5d913fa4326066 (diff) | |
download | ffmpeg-ac83e7b235eef9ed54e287486a68f47ddfcf3ce1.tar.gz |
make vector constants global
Originally committed as revision 9510 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdata.h')
-rw-r--r-- | libavcodec/cavsdata.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cavsdata.h b/libavcodec/cavsdata.h index 6cbe1ec1c5..2b38f39e1a 100644 --- a/libavcodec/cavsdata.h +++ b/libavcodec/cavsdata.h @@ -106,14 +106,14 @@ static const uint16_t dequant_mul[64] = { /** marks block as unavailable, i.e. out of picture or not yet decoded */ -static const vector_t un_mv = {0,0,1,NOT_AVAIL}; +const vector_t ff_cavs_un_mv = {0,0,1,NOT_AVAIL}; /** 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}; +const vector_t ff_cavs_dir_mv = {0,0,1,REF_DIR}; /** marks block as using intra prediction */ -static const vector_t intra_mv = {0,0,1,REF_INTRA}; +const vector_t ff_cavs_intra_mv = {0,0,1,REF_INTRA}; #define EOB 0,0,0 |