Initial working version

This commit is contained in:
Samuel Kent
2022-12-22 20:22:22 +11:00
parent ce9675a1cc
commit ced7fa5092
902 changed files with 150252 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { IGetToken } from 'strtok3/lib/core';
/**
* 6.2 Identification Header
* Ref: https://theora.org/doc/Theora.pdf: 6.2 Identification Header Decode
*/
export interface IIdentificationHeader {
id: string;
vmaj: number;
vmin: number;
vrev: number;
vmbw: number;
vmbh: number;
nombr: number;
nqual: number;
}
/**
* 6.2 Identification Header
* Ref: https://theora.org/doc/Theora.pdf: 6.2 Identification Header Decode
*/
export declare const IdentificationHeader: IGetToken<IIdentificationHeader>;