X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_decoder.h;h=8765be42674c3fd8a41323c5bf865dfdab2d7071;hb=bd12a72f78409e3f482be3d47b5efb57af4ad982;hp=d422503a78b4a643afee95493ff2c3a6a09ec85d;hpb=a8855402f9bc9815b10405ff68c313f4a4584651;p=dcpomatic.git diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index d422503a7..8765be426 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -63,8 +63,10 @@ private: /** Frame after the last one that was emitted from Data (i.e. at the resampled rate, if applicable) * for each AudioStream. */ - std::map _positions; - std::map > _resamplers; + typedef std::map PositionMap; + PositionMap _positions; + typedef std::map > ResamplerMap; + ResamplerMap _resamplers; bool _fast; };