googlevideo
Version:
A set of utilities for working with Google Video APIs.
19 lines (18 loc) • 637 B
TypeScript
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
export declare const protobufPackage = "video_streaming";
export interface CryptoParams {
hmac?: Uint8Array | undefined;
iv?: Uint8Array | undefined;
compressionType?: CryptoParams_CompressionType | undefined;
}
export declare enum CryptoParams_CompressionType {
VAL_0 = 0,
VAL_1 = 1,
VAL_2 = 2,
UNRECOGNIZED = -1
}
export declare const CryptoParams: MessageFns<CryptoParams>;
export interface MessageFns<T> {
encode(message: T, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): T;
}