Widevine CAS plugin updates include: - Make Android session id little endian - Rename ca_descriptor.proto to media_cas.proto
19 lines
442 B
Protocol Buffer
19 lines
442 B
Protocol Buffer
// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine Master
|
|
// License Agreement.
|
|
|
|
syntax = "proto2";
|
|
|
|
package video_widevine;
|
|
|
|
option optimize_for = LITE_RUNTIME;
|
|
|
|
// Widevine private data in the CA descriptor.
|
|
message CaDescriptorPrivateData {
|
|
// Provider name.
|
|
optional string provider = 1;
|
|
|
|
// Content ID.
|
|
optional bytes content_id = 2;
|
|
}
|