Changeset 5461304
- Timestamp:
- May 8, 2025, 7:35:54 PM (27 hours ago)
- Branches:
- master
- Parents:
- 8098196
- git-author:
- Lluc Simó <lluc.simo@protonmail.com> (02/26/25 23:50:54)
- git-committer:
- Paul Brossier <piem@piem.org> (05/08/25 19:35:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/rubberband_utils.c
r8098196 r5461304 7 7 #include <rubberband/rubberband-c.h> 8 8 9 // check rubberband is 1.8.1, warn if 1.310 #if !((RUBBERBAND_API_MAJOR_VERSION > = 2) &&\11 ( RUBBERBAND_API_MINOR_VERSION >= 5))9 // check rubberband is greater than 1.8.1, warn if 1.3 10 #if !((RUBBERBAND_API_MAJOR_VERSION > 2) || \ 11 ((RUBBERBAND_API_MAJOR_VERSION == 2) && (RUBBERBAND_API_MINOR_VERSION >= 5))) 12 12 #warning RubberBandOptionDetectorSoft not available, \ 13 13 please upgrade rubberband to version 1.8.1 or higher
Note: See TracChangeset
for help on using the changeset viewer.