mirror of
https://github.com/LuanRT/googlevideo.git
synced 2026-06-20 04:01:18 +00:00
14 lines
241 B
Protocol Buffer
14 lines
241 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
message CryptoParams {
|
|
enum CompressionType {
|
|
NONE = 0;
|
|
GZIP = 1;
|
|
BROTLI = 2;
|
|
}
|
|
|
|
optional bytes hmac = 4;
|
|
optional bytes iv = 5;
|
|
optional CompressionType compression_type = 6;
|
|
} |