Module: libav
Branch: master
Commit: 51f16a9bf22ee81116df2a02d3107c6f3ad17402

Author:    Mans Rullgard <[email protected]>
Committer: Mans Rullgard <[email protected]>
Date:      Mon Jun 20 03:19:20 2011 +0100

x86: cabac: remove unused macro parameter

Signed-off-by: Mans Rullgard <[email protected]>

---

 libavcodec/cabac.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index b868f77..c80c259 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -313,7 +313,7 @@ static av_always_inline int get_cabac_inline(CABACContext 
*c, uint8_t * const st
     int bit, low;
 
 #if HAVE_FAST_CMOV
-#define BRANCHLESS_GET_CABAC_UPDATE(ret, cabac, statep, low, lowword, range, 
tmp, tmpbyte)\
+#define BRANCHLESS_GET_CABAC_UPDATE(ret, cabac, statep, low, lowword, range, 
tmp)\
         "mov    "tmp"       , %%ecx                                     \n\t"\
         "shl    $17         , "tmp"                                     \n\t"\
         "cmp    "low"       , "tmp"                                     \n\t"\
@@ -323,7 +323,7 @@ static av_always_inline int get_cabac_inline(CABACContext 
*c, uint8_t * const st
         "sub    "tmp"       , "low"                                     \n\t"\
         "xor    %%ecx       , "ret"                                     \n\t"
 #else /* HAVE_FAST_CMOV */
-#define BRANCHLESS_GET_CABAC_UPDATE(ret, cabac, statep, low, lowword, range, 
tmp, tmpbyte)\
+#define BRANCHLESS_GET_CABAC_UPDATE(ret, cabac, statep, low, lowword, range, 
tmp)\
         "mov    "tmp"       , %%ecx                                     \n\t"\
         "shl    $17         , "tmp"                                     \n\t"\
         "sub    "low"       , "tmp"                                     \n\t"\
@@ -344,7 +344,7 @@ static av_always_inline int get_cabac_inline(CABACContext 
*c, uint8_t * const st
         "and    $0xC0       , "range"                                   \n\t"\
         "movzbl "MANGLE(ff_h264_lps_range)"("ret", "range", 2), "range" \n\t"\
         "sub    "range"     , "tmp"                                     \n\t"\
-        BRANCHLESS_GET_CABAC_UPDATE(ret, cabac, statep, low, lowword, range, 
tmp, tmpbyte)\
+        BRANCHLESS_GET_CABAC_UPDATE(ret, cabac, statep, low, lowword, range, 
tmp)\
         "movzbl " MANGLE(ff_h264_norm_shift) "("range"), %%ecx          \n\t"\
         "shl    %%cl        , "range"                                   \n\t"\
         "movzbl "MANGLE(ff_h264_mlps_state)"+128("ret"), "tmp"          \n\t"\

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to