mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
Issue #80 - De-unify dom/media/flac
This commit is contained in:
parent
3b247782e1
commit
4be245aede
4 changed files with 11 additions and 9 deletions
|
|
@ -13,6 +13,15 @@
|
|||
namespace mozilla {
|
||||
|
||||
namespace flac {
|
||||
|
||||
#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 Frame;
|
||||
class FrameParser;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue