#pragma once #include "PommeTypes.h" #include "SoundMixer/cmixer.h" #include #include #include namespace Pomme::Video { struct Movie { int width; int height; FourCharCode videoFormat; float videoFrameRate; std::queue> videoFrames; FourCharCode audioFormat; int audioSampleRate; int audioBitDepth; int audioNChannels; cmixer::WavStream audioStream; unsigned audioSampleCount; }; Movie ReadMoov(std::istream& f); }