LeviLamina
Loading...
Searching...
No Matches
VideoRotation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class VideoRotation : int {
8 KVideoRotation0 = 0,
9 KVideoRotation90 = 90,
10 KVideoRotation180 = 180,
11 KVideoRotation270 = 270,
12};
13
14}