Issue #80 - De-unify dom/media/flac

This commit is contained in:
Matt A. Tobin 2020-04-18 02:08:39 -04:00 committed by Roy Tam
commit 4be245aede
4 changed files with 11 additions and 9 deletions

View file

@ -33,14 +33,6 @@ namespace flac {
// flac::FrameHeader - Holds the flac frame header and its parsing
// state.
#define FLAC_MAX_CHANNELS 8
#define FLAC_MIN_BLOCKSIZE 16
#define FLAC_MAX_BLOCKSIZE 65535
#define FLAC_MIN_FRAME_SIZE 11
#define FLAC_MAX_FRAME_HEADER_SIZE 16
#define FLAC_MAX_FRAME_SIZE (FLAC_MAX_FRAME_HEADER_SIZE \
+FLAC_MAX_BLOCKSIZE*FLAC_MAX_CHANNELS*3)
class FrameHeader {
public:
const AudioInfo& Info() const { return mInfo; }