VP8LFillBitWindow: use 64-bit path for msvc x64 builds

Change-Id: I14a3865f4091dd048e02abc99aa4e7f1e325e12a
This commit is contained in:
James Zern 2012-07-14 13:20:26 -07:00
parent 3ca7ce9805
commit 596dff784d

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.