comparison cavsdata.h @ 4177:127d84a4c8e0 libavcodec

move all cavs-parsing to cavs.c This should help building parser without decoder
author stefang
date Sun, 12 Nov 2006 20:18:07 +0000
parents c8c591fe26f8
children 6c457e692336
comparison
equal deleted inserted replaced
4176:23da44e8fd05 4177:127d84a4c8e0
129 MV_BWD_A3 = MV_BWD_OFFS+8, 129 MV_BWD_A3 = MV_BWD_OFFS+8,
130 MV_BWD_X2, 130 MV_BWD_X2,
131 MV_BWD_X3 131 MV_BWD_X3
132 }; 132 };
133 133
134 #ifdef CONFIG_CAVS_DECODER
134 static const uint8_t partition_flags[30] = { 135 static const uint8_t partition_flags[30] = {
135 0, //I_8X8 136 0, //I_8X8
136 0, //P_SKIP 137 0, //P_SKIP
137 0, //P_16X16 138 0, //P_16X16
138 SPLITH, //P_16X8 139 SPLITH, //P_16X8
637 638
638 static const int_fast8_t left_modifier_l[8] = { 0,-1, 6,-1,-1, 7, 6, 7}; 639 static const int_fast8_t left_modifier_l[8] = { 0,-1, 6,-1,-1, 7, 6, 7};
639 static const int_fast8_t top_modifier_l[8] = {-1, 1, 5,-1,-1, 5, 7, 7}; 640 static const int_fast8_t top_modifier_l[8] = {-1, 1, 5,-1,-1, 5, 7, 7};
640 static const int_fast8_t left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6}; 641 static const int_fast8_t left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6};
641 static const int_fast8_t top_modifier_c[7] = { 4, 1,-1,-1, 4, 6, 6}; 642 static const int_fast8_t top_modifier_c[7] = { 4, 1,-1,-1, 4, 6, 6};
643 #endif /* CONFIG_CAVS_DECODER */