From bbd3a4fe0c4c90249a4e5b064ea3a584e2714cfd Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 20 Oct 2020 16:06:16 +0200 Subject: [PATCH] Libavcodec conv.: fixed another typo --- src/libavcodec_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libavcodec_common.c b/src/libavcodec_common.c index 9d36267fe..6b0fda707 100644 --- a/src/libavcodec_common.c +++ b/src/libavcodec_common.c @@ -2023,7 +2023,7 @@ const struct av_to_uv_conversion *get_av_to_uv_conversions() { // 8-bit YUV (NV12) {AV_PIX_FMT_NV12, UYVY, nv12_to_uyvy, true}, {AV_PIX_FMT_NV12, RGB, nv12_to_rgb24, false}, - {AV_PIX_FMT_NV12, RGB, nv12_to_rgb32, false}, + {AV_PIX_FMT_NV12, RGBA, nv12_to_rgb32, false}, // RGB {AV_PIX_FMT_GBRP, RGB, gbrp_to_rgb, true}, {AV_PIX_FMT_GBRP, RGBA, gbrp_to_rgba, true},