You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
387 B
21 lines
387 B
4 months ago
|
syntax = "proto2";
|
||
|
|
||
|
package android.automotive.computepipe.fuzz.proto;
|
||
|
|
||
|
enum PixelFormat {
|
||
|
RGB = 0;
|
||
|
RGBA = 1;
|
||
|
GRAY = 2;
|
||
|
}
|
||
|
|
||
|
message Frame {
|
||
|
required uint32 height = 1;
|
||
|
required uint32 width = 2;
|
||
|
required PixelFormat format = 3;
|
||
|
required uint32 stride = 4;
|
||
|
required string buffer = 5;
|
||
|
}
|
||
|
|
||
|
message PixelMemHandleFuzzerInput {
|
||
|
repeated Frame frames = 1;
|
||
|
}
|