summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/opengl/hwdec_osx.c2
-rw-r--r--video/vt.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/video/out/opengl/hwdec_osx.c b/video/out/opengl/hwdec_osx.c
index aa350209ec..734e3a2e0e 100644
--- a/video/out/opengl/hwdec_osx.c
+++ b/video/out/opengl/hwdec_osx.c
@@ -79,7 +79,7 @@ static struct vt_format vt_formats[] = {
},
{
.cvpixfmt = kCVPixelFormatType_32BGRA,
- .imgfmt = IMGFMT_RGB0,
+ .imgfmt = IMGFMT_BGR0,
.planes = 1,
.gl = {
{ GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, GL_RGBA }
diff --git a/video/vt.c b/video/vt.c
index 90c955049d..f0804d38a0 100644
--- a/video/vt.c
+++ b/video/vt.c
@@ -9,7 +9,7 @@
static const uint32_t map_imgfmt_cvpixfmt[][2] = {
{IMGFMT_420P, kCVPixelFormatType_420YpCbCr8Planar},
{IMGFMT_UYVY, kCVPixelFormatType_422YpCbCr8},
- {IMGFMT_RGB0, kCVPixelFormatType_32BGRA},
+ {IMGFMT_BGR0, kCVPixelFormatType_32BGRA},
{IMGFMT_NV12, kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange},
{0}
};