Symbol: APE_INFO_FILE_VERSION
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
20
if (GetInfo(APE_INFO_FILE_VERSION) < 3930)
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
261
if (m_spAPEInfo->GetInfo(APE_INFO_FILE_VERSION) >= 3950)
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
65
m_spUnBitArray.Assign((CUnBitArrayBase *) CreateUnBitArray(this, GetInfo(APE_INFO_FILE_VERSION)));
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
67
if (GetInfo(APE_INFO_FILE_VERSION) >= 3950)
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
69
m_spNewPredictorX.Assign(new CPredictorDecompress3950toCurrent(GetInfo(APE_INFO_COMPRESSION_LEVEL), GetInfo(APE_INFO_FILE_VERSION)));
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
70
m_spNewPredictorY.Assign(new CPredictorDecompress3950toCurrent(GetInfo(APE_INFO_COMPRESSION_LEVEL), GetInfo(APE_INFO_FILE_VERSION)));
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
74
m_spNewPredictorX.Assign(new CPredictorDecompressNormal3930to3950(GetInfo(APE_INFO_COMPRESSION_LEVEL), GetInfo(APE_INFO_FILE_VERSION)));
src/add-ons/media/plugins/ape_reader/MAClib/APEDecompress.cpp
75
m_spNewPredictorY.Assign(new CPredictorDecompressNormal3930to3950(GetInfo(APE_INFO_COMPRESSION_LEVEL), GetInfo(APE_INFO_FILE_VERSION)));
src/add-ons/media/plugins/ape_reader/MAClib/APEInfo.cpp
138
case APE_INFO_FILE_VERSION:
src/add-ons/media/plugins/ape_reader/MAClib/APEInfo.h
67
#define GET_FRAMES_START_ON_BYTES_BOUNDARIES(APE_INFO) (((APE_INFO)->GetInfo(APE_INFO_FILE_VERSION) > 3800) ? TRUE : FALSE)
src/add-ons/media/plugins/ape_reader/MAClib/APEInfo.h
68
#define GET_USES_SPECIAL_FRAMES(APE_INFO) (((APE_INFO)->GetInfo(APE_INFO_FILE_VERSION) > 3820) ? TRUE : FALSE)
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
317
if (spAPEDecompress->GetInfo(APE_INFO_FILE_VERSION) == MAC_VERSION_NUMBER && spAPEDecompress->GetInfo(APE_INFO_COMPRESSION_LEVEL) == nCompressionLevel)
src/add-ons/media/plugins/ape_reader/MAClib/MACLib.cpp
25
if (pAPEInfo->GetInfo(APE_INFO_FILE_VERSION) >= 3930)