Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 172845
Collapse All | Expand All

(-)libavcodec/cabac.h.broken (-3 / +3 lines)
Lines 528-534 Link Here
528
528
529
        :"=&a"(bit)
529
        :"=&a"(bit)
530
        :"r"(state), "r"(c)
530
        :"r"(state), "r"(c)
531
        : "%"REG_c, "%ebx", "%edx", "%esi", "memory"
531
        : "%"REG_c, "%edx", "%esi", "memory"
532
    );
532
    );
533
    bit&=1;
533
    bit&=1;
534
#endif /* BRANCHLESS_CABAC_DECODER */
534
#endif /* BRANCHLESS_CABAC_DECODER */
Lines 726-732 Link Here
726
        "movl %%ebx, "LOW      "(%3)            \n\t"
726
        "movl %%ebx, "LOW      "(%3)            \n\t"
727
        :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)\
727
        :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)\
728
        :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)\
728
        :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)\
729
        : "%"REG_c, "%ebx", "%edx", "%esi", "memory"\
729
        : "%"REG_c, "%edx", "%esi", "memory"\
730
    );
730
    );
731
    return coeff_count;
731
    return coeff_count;
732
}
732
}
Lines 782-788 Link Here
782
        "movl %%ebx, "LOW      "(%3)            \n\t"
782
        "movl %%ebx, "LOW      "(%3)            \n\t"
783
        :"=&a"(coeff_count),"+m"(last), "+m"(index)\
783
        :"=&a"(coeff_count),"+m"(last), "+m"(index)\
784
        :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)\
784
        :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)\
785
        : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory"\
785
        : "%"REG_c, "%edx", "%esi", "%"REG_D, "memory"\
786
    );
786
    );
787
    return coeff_count;
787
    return coeff_count;
788
}
788
}

Return to bug 172845