diff options
author | Stefan Gehrer <stefan.gehrer@gmx.de> | 2006-11-12 20:18:07 +0000 |
---|---|---|
committer | Stefan Gehrer <stefan.gehrer@gmx.de> | 2006-11-12 20:18:07 +0000 |
commit | 53aa68b3290533eeaae7812ad1c30de5f783e9f6 (patch) | |
tree | e8e79db08353011f86184bfe93b1c151b562f2d6 /libavcodec/cavsdata.h | |
parent | 55fde95e3bfc0e337a482e2508c3ce60009d8c7b (diff) | |
download | ffmpeg-53aa68b3290533eeaae7812ad1c30de5f783e9f6.tar.gz |
move all cavs-parsing to cavs.c
This should help building parser without decoder
Originally committed as revision 6993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdata.h')
-rw-r--r-- | libavcodec/cavsdata.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/cavsdata.h b/libavcodec/cavsdata.h index 983c802be2..d769851360 100644 --- a/libavcodec/cavsdata.h +++ b/libavcodec/cavsdata.h @@ -131,6 +131,7 @@ enum mv_loc_t { MV_BWD_X3 }; +#ifdef CONFIG_CAVS_DECODER static const uint8_t partition_flags[30] = { 0, //I_8X8 0, //P_SKIP @@ -639,3 +640,4 @@ static const int_fast8_t left_modifier_l[8] = { 0,-1, 6,-1,-1, 7, 6, 7}; static const int_fast8_t top_modifier_l[8] = {-1, 1, 5,-1,-1, 5, 7, 7}; static const int_fast8_t left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6}; static const int_fast8_t top_modifier_c[7] = { 4, 1,-1,-1, 4, 6, 6}; +#endif /* CONFIG_CAVS_DECODER */ |