1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added new FrameRateType fps23976 to AudioPlayHead

This commit is contained in:
hogliux 2017-09-01 11:09:44 +01:00
parent dec870f5eb
commit 86f9c11d15
10 changed files with 45 additions and 12 deletions

View file

@ -4,6 +4,27 @@ JUCE breaking changes
Develop Branch
=============
Change
------
A new FrameRateType fps23976 has been added to AudioPlayHead
Possible Issues
---------------
Previously JUCE would report the FrameRateType fps24 for both 24 and
23.976 fps. If your code uses switch statements (or similar) to handle
all possible frame rate types, then this change may cause it to fall
through.
Workaround
----------
Add fps23976 to your switch statement and handle it appropriately.
Rationale
---------
JUCE should be able to handle all popular frame rate codes but was
missing support for 23.976.
Change
------
The String (bool) constructor and operator<< (String&, bool) have been