diff options
Diffstat (limited to 'macosx/HBAudioTrackPreset.m')
-rw-r--r-- | macosx/HBAudioTrackPreset.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBAudioTrackPreset.m b/macosx/HBAudioTrackPreset.m index 94542de7e..2478c39fc 100644 --- a/macosx/HBAudioTrackPreset.m +++ b/macosx/HBAudioTrackPreset.m @@ -444,7 +444,7 @@ decodeInt(_fallbackEncoder); if (_fallbackEncoder < 0) { goto fail; } decodeInt(_mixdown); if (_mixdown < 0) { goto fail; } decodeInt(_sampleRate); if (_sampleRate < 0) { goto fail; } - decodeInt(_bitRate); if (_bitRate < 0) { goto fail; } + decodeInt(_bitRate); if (_bitRate < -1) { goto fail; } decodeDouble(_gain); decodeDouble(_drc); |