diff options
author | Stefan Gehrer <stefan.gehrer@gmx.de> | 2009-01-16 17:20:17 +0000 |
---|---|---|
committer | Stefan Gehrer <stefan.gehrer@gmx.de> | 2009-01-16 17:20:17 +0000 |
commit | e685e8eadae23d4f6790c03072f001d9c0e19833 (patch) | |
tree | cdc17f6b07a836d8bc699e9543e87d045780b77d /libavcodec/cavsdata.h | |
parent | 2b3242253d9a8701f3ca1f3be88e5dd2d96c8dd6 (diff) | |
download | ffmpeg-e685e8eadae23d4f6790c03072f001d9c0e19833.tar.gz |
rename vector_t to cavs_vector
Originally committed as revision 16641 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 6d80ac11d9..b597da1986 100644 --- a/libavcodec/cavsdata.h +++ b/libavcodec/cavsdata.h @@ -90,14 +90,14 @@ const uint16_t ff_cavs_dequant_mul[64] = { /** marks block as unavailable, i.e. out of picture or not yet decoded */ -const vector_t ff_cavs_un_mv = {0,0,1,NOT_AVAIL}; +const cavs_vector 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 */ -const vector_t ff_cavs_dir_mv = {0,0,1,REF_DIR}; +const cavs_vector ff_cavs_dir_mv = {0,0,1,REF_DIR}; /** marks block as using intra prediction */ -const vector_t ff_cavs_intra_mv = {0,0,1,REF_INTRA}; +const cavs_vector ff_cavs_intra_mv = {0,0,1,REF_INTRA}; #define EOB 0,0,0 |