-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
converted to tslint, added loop file
- Loading branch information
1 parent
517b1db
commit 7de3494
Showing
58 changed files
with
2,000 additions
and
3,306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"printWidth": 100 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
declare const EventEmitter: any; | ||
declare const SmartBuffer: any; | ||
declare let dataRemaining: any; | ||
declare const FLV: { | ||
SCRIPT: number; | ||
VIDEO: number; | ||
VIDEO_AVC: number; | ||
VIDEO_AVC_KEYFRAME: number; | ||
VIDEO_AVC_INTERFRAME: number; | ||
AUDIO: number; | ||
AUDIO_AAC: number; | ||
AUDIO_AAC_HEADER: number; | ||
AUDIO_AAC_RAW: number; | ||
AUDIO_MP3: number; | ||
AVC_DECODER_CONFIG: number; | ||
AVC_VIDEO_DATA: number; | ||
}; | ||
declare const FLVHeaderSize = 9; | ||
declare const FLVTagHeaderSize = 17; | ||
declare class FLVDecoder extends EventEmitter { | ||
constructor(streamReadyCallback: any); | ||
saveTag(tag: any): void; | ||
logTag(tag: any): void; | ||
readTag(data: any): { | ||
type: number; | ||
aacFrameType: number; | ||
avcFrameType: number; | ||
avcPayloadType: number; | ||
size: number; | ||
timestamp: number; | ||
info: { | ||
audioFormat: number; | ||
audioBitRate: number; | ||
audioSampleSize: number; | ||
audioCodecID: number; | ||
}; | ||
data: null; | ||
} | null; | ||
parseChunks(chunk: any): number | undefined; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.