Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for 64bit WAVE files #36

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Commits on Nov 24, 2020

  1. add support for 64bit WAVE files

    Rengati authored Nov 24, 2020
    Configuration menu
    Copy the full SHA
    c5c9693 View commit details
    Browse the repository at this point in the history
  2. add support for 64bit WAVE files

    Rengati authored Nov 24, 2020
    Configuration menu
    Copy the full SHA
    424b5a6 View commit details
    Browse the repository at this point in the history
  3. add support for 64bit WAVE files

    try to solve git test build issue
    Rengati authored Nov 24, 2020
    Configuration menu
    Copy the full SHA
    315ff39 View commit details
    Browse the repository at this point in the history
  4. add support for 64bit WAVE files

    IEEE format preferred for saving 64bit WAVE files
    Rengati authored Nov 24, 2020
    Configuration menu
    Copy the full SHA
    d338659 View commit details
    Browse the repository at this point in the history
  5. add support for 64bit WAVE files

    cleaner cast
    Rengati authored Nov 24, 2020
    Configuration menu
    Copy the full SHA
    e032c33 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2020

  1. add support for 64bit WAVE files

    static cast necessary if T is float
    Rengati authored Nov 25, 2020
    Configuration menu
    Copy the full SHA
    bf4d23c View commit details
    Browse the repository at this point in the history
  2. correct an error on 32bit IEEEFloat WAVE writing

    the reinterpret_cast<int32_t&> will return the expected result only with a 32bit variable, so if T is double (64bit) it will not generate the right int32_t
    Rengati authored Nov 25, 2020
    Configuration menu
    Copy the full SHA
    24996fa View commit details
    Browse the repository at this point in the history