Changeset 190117 in webkit


Ignore:
Timestamp:
Sep 22, 2015 9:13:10 AM (9 years ago)
Author:
eric.carlson@apple.com
Message:

Unreviewed 32-bit Yosemite build fix.

  • platform/mediastream/mac/WebAudioSourceProviderAVFObjC.mm:

(WebCore::WebAudioSourceProviderAVFObjC::provideInput):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190115 r190117  
     12015-09-22  Eric Carlson  <eric.carlson@apple.com>
     2
     3        Unreviewed 32-bit Yosemite build fix.
     4
     5        * platform/mediastream/mac/WebAudioSourceProviderAVFObjC.mm:
     6        (WebCore::WebAudioSourceProviderAVFObjC::provideInput):
     7
    182015-09-22  Eric Carlson  <eric.carlson@apple.com>
    29
  • trunk/Source/WebCore/platform/mediastream/mac/WebAudioSourceProviderAVFObjC.mm

    r190115 r190117  
    106106    uint64_t framesAvailable = endFrame - (m_readCount + m_writeAheadCount);
    107107    if (framesAvailable < framesToProcess) {
    108         framesToProcess = framesAvailable;
     108        framesToProcess = static_cast<size_t>(framesAvailable);
    109109        bus->zero();
    110110    }
Note: See TracChangeset for help on using the changeset viewer.