mirror of
https://github.com/LuanRT/googlevideo.git
synced 2026-06-13 08:42:31 +00:00
11 lines
206 B
Protocol Buffer
11 lines
206 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
import "misc/common.proto";
|
|
|
|
message CryptoParams {
|
|
optional bytes hmac = 4;
|
|
optional bytes iv = 5;
|
|
optional .misc.CompressionType compression_type = 6;
|
|
}
|