Merge "VP8LFillBitWindow: use 64-bit path for msvc x64 builds" into 0.2.0

This commit is contained in:
James Zern 2012-07-16 19:13:30 -07:00 committed by Gerrit Code Review
commit 6569cd7c88

View File

@ -146,7 +146,7 @@ static void ShiftBytes(VP8LBitReader* const br) {
void VP8LFillBitWindow(VP8LBitReader* const br) { void VP8LFillBitWindow(VP8LBitReader* const br) {
if (br->bit_pos_ >= 32) { if (br->bit_pos_ >= 32) {
#if defined(__x86_64__) #if defined(__x86_64__) || defined(_M_X64)
if (br->pos_ + 8 < br->len_) { if (br->pos_ + 8 < br->len_) {
br->val_ >>= 32; br->val_ >>= 32;
// The expression below needs a little-endian arch to work correctly. // The expression below needs a little-endian arch to work correctly.