summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorGuillaume Poirier <gpoirier@mplayerhq.hu>2006-10-12 07:51:18 +0000
committerGuillaume Poirier <gpoirier@mplayerhq.hu>2006-10-12 07:51:18 +0000
commita0490b324ac186b0ca6ad5880249299885963e8b (patch)
tree6b7712e0aa8f435d7253284ca293bb97d7ae7d13 /libavcodec
parent28146a8c7a1e025e0d5284ceb59a0aa777cbbf67 (diff)
adds some useful comments after some of the #else, #elseif,
#endif preprocessor directives to make it clearer which code block depends on which #define xx Originally committed as revision 6668 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cabac.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index e3a2aa8e19..c922126989 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -449,7 +449,7 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
: "%ecx", "%ebx", "%edx", "%esi"
);
bit&=1;
-#else
+#else /* BRANCHLESS_CABAC_DECODER */
asm volatile(
"movzbl (%1), %%eax \n\t"
"movl "RANGE "(%2), %%ebx \n\t"
@@ -467,7 +467,7 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
"andl %%ecx, %%edx \n\t"
"subl %%edx, %%ebx \n\t"
"xorl %%ecx, %%eax \n\t"
-#else
+#else /* CMOV_IS_FAST */
"movl %%edx, %%ecx \n\t"
"subl %%ebx, %%edx \n\t"
"sarl $31, %%edx \n\t" //lps_mask
@@ -477,7 +477,7 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
"andl %%edx, %%ecx \n\t"
"subl %%ecx, %%ebx \n\t"
"xorl %%edx, %%eax \n\t"
-#endif
+#endif /* CMOV_IS_FAST */
//eax:state ebx:low edx:mask esi:range
"movzbl "MANGLE(ff_h264_mps_state)"(%%eax), %%ecx \n\t"
@@ -519,8 +519,8 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
: "%ecx", "%ebx", "%edx", "%esi"
);
bit&=1;
-#endif
-#else
+#endif /* BRANCHLESS_CABAC_DECODER */
+#else /* ARCH_X86 */
int s = *state;
int RangeLPS= ff_h264_lps_range[s][c->range>>(CABAC_BITS+7)]<<(CABAC_BITS+1);
int bit, lps_mask attribute_unused;
@@ -543,7 +543,7 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
refill2(c);
}
}
-#else
+#else /* BRANCHLESS_CABAC_DECODER */
lps_mask= (c->range - c->low)>>31;
c->low -= c->range & lps_mask;
@@ -558,8 +558,8 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
c->low <<= lps_mask;
if(!(c->low & CABAC_MASK))
refill2(c);
-#endif
-#endif
+#endif /* BRANCHLESS_CABAC_DECODER */
+#endif /* ARCH_X86 */
return bit;
}