Fixed #2143 FLA Export / Sound playback - taking MP3 initial latency into account

This commit is contained in:
Jindra Petřík
2023-12-30 18:06:08 +01:00
parent 779be797e2
commit 2404151922
14 changed files with 130 additions and 44 deletions
@@ -164,4 +164,9 @@ public class SoundStreamFrameRange implements TreeItem, SoundTag {
public String getFlaExportName() {
return head.getFlaExportName() + "_" + (startFrame + 1) + "-" + (endFrame + 1);
}
@Override
public int getInitialLatency() {
return 0;
}
}