vic: Implement RGBX frame format

This commit is contained in:
ameerj
2021-10-07 11:06:57 -04:00
parent f84328934f
commit 899fdb9c44
2 changed files with 15 additions and 3 deletions

View File

@ -38,6 +38,7 @@ private:
enum class VideoPixelFormat : u64_le {
RGBA8 = 0x1f,
BGRA8 = 0x20,
RGBX8 = 0x23,
Yuv420 = 0x44,
};