summaryrefslogtreecommitdiffstats
path: root/src/sources/mp3decoding.h
blob: 00fa1041feb6f38d434dec758ca0b5f0442fd5c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "util/types.h"

namespace mixxx {

// In the worst case up to 29 MP3 frames need to be prefetched
// for accurate seeking:
// http://www.mars.org/mailman/public/mad-dev/2002-May/000634.html
// Used by both SoundSourceMp3 and SoundSourceCoreAudio.
constexpr SINT kMp3SeekFramePrefetchCount = 29;

} // namespace mixxx