Skip to content

Commit

Permalink
Removed extra arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
bsekachev committed Aug 10, 2023
1 parent d4e49e7 commit ab6626a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions cvat-core/src/frames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,6 @@ export async function getFrame(
chunkSize,
decodedBlocksCacheSize,
dimension,
startFrame,
stopFrame,
),
decodedBlocksCacheSize,
activeChunkRequest: null,
Expand Down
6 changes: 0 additions & 6 deletions cvat-data/src/ts/cvat-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ interface BlockToDecode {
export class FrameDecoder {
private blockType: BlockType;
private chunkSize: number;
private startFrame: number;
private stopFrame: number;
/*
ImageBitmap when decode zip or video chunks
Blob when 3D dimension
Expand All @@ -106,8 +104,6 @@ export class FrameDecoder {
chunkSize: number,
cachedBlockCount: number,
dimension: DimensionType = DimensionType.DIMENSION_2D,
startFrame: number,
stopFrame: number,
) {
this.mutex = new Mutex();
this.orderedStack = [];
Expand All @@ -119,8 +115,6 @@ export class FrameDecoder {
this.renderHeight = 1080;
this.chunkSize = chunkSize;
this.blockType = blockType;
this.startFrame = startFrame;
this.stopFrame = stopFrame;

this.decodedChunks = {};
this.requestedChunkToDecode = null;
Expand Down

0 comments on commit ab6626a

Please sign in to comment.