VirtualBox

Changeset 67475 in vbox


Ignore:
Timestamp:
Jun 19, 2017 1:23:12 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
116211
Message:

Audio/DevHDA: Build fix if VBOX_WITH_AUDIO_HDA_ASYNC_IO is not defined.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevHDA.cpp

    r67467 r67475  
    55655565        {
    55665566#endif
    5567             const uint32_t cbReadable = hdaStreamGetUsed(pStream);
    5568             if (cbReadable)
     5567            const uint32_t cbToTransfer = hdaStreamGetUsed(pStream);
     5568            if (cbToTransfer)
    55695569            {
    55705570                /* When running synchronously, do the DMA data transfers here.
    55715571                 * Otherwise this will be done in the stream's async I/O thread. */
    5572                 rc2 = hdaStreamTransfer(pThis, pStream, cbReadable);
     5572                rc2 = hdaStreamTransfer(pThis, pStream, cbToTransfer);
    55735573                AssertRC(rc2);
    55745574            }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette