Ignore:
Timestamp:
Aug 12, 2015, 7:21:38 PM (9 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
60fc05b
Parents:
3a1a5d6 (diff), 7b2d740 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'develop' into notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/sink_wavwrite.c

    r3a1a5d6 rb257b60  
    4545#define HTOLES(x) x
    4646#else
     47#ifdef HAVE_WIN_HACKS
     48#define HTOLES(x) x
     49#else
    4750#define HTOLES(x) SWAPS(htons(x))
     51#endif
    4852#endif
    4953
     
    98102  // zero samplerate given. do not open yet
    99103  if ((sint_t)samplerate == 0) return s;
     104  // samplerate way too large, fail
     105  if ((sint_t)samplerate > 192000 * 4) goto beach;
    100106
    101107  s->samplerate = samplerate;
Note: See TracChangeset for help on using the changeset viewer.