Skip to content

Commit 15eb61a

Browse files
committed
fix enum field indices
do not skip index = 2 Signed-off-by: RIFJo <jochmann@rt.rif-ev.de>
1 parent f0a9a84 commit 15eb61a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

osi_sensorviewconfiguration.proto

+2-2
Original file line numberDiff line numberDiff line change
@@ -766,13 +766,13 @@ message CameraSensorViewConfiguration
766766
// Pixel data is mirrored along the vertical axis.
767767
// The image is mirrored left-to-right.
768768
//
769-
PIXEL_ORDER_RIGHT_LEFT_TOP_BOTTOM = 3;
769+
PIXEL_ORDER_RIGHT_LEFT_TOP_BOTTOM = 2;
770770

771771
// Pixels are ordered left-to-right, bottom-to-top.
772772
// Pixel data is mirrored along the horizontal axis.
773773
// The image is mirrored top-to-bottom.
774774
//
775-
PIXEL_ORDER_LEFT_RIGHT_BOTTOM_TOP = 4;
775+
PIXEL_ORDER_LEFT_RIGHT_BOTTOM_TOP = 3;
776776
}
777777

778778

0 commit comments

Comments
 (0)