Skip to content

Commit

Permalink
Add UNKNOWN to pixel format (#223)
Browse files Browse the repository at this point in the history
Co-authored-by: Ian B <[email protected]>
  • Loading branch information
ianBtesser and Ian B authored Nov 14, 2024
1 parent 6167330 commit a4de093
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions protos/farm_ng/oak/oak.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ message EncoderOptions {
}

enum PixelFormat {
YUV420 = 0;
RAW8 = 1;
Encoded = 2;
UNKNOWN = 0;
YUV420 = 1;
RAW8 = 2;
Encoded = 3;
}

message Resolution {
Expand Down

0 comments on commit a4de093

Please sign in to comment.