From 7355c196ba8f06c4f12b57c2712c9fd482aee1e3 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 18 Jan 2021 13:56:44 +1100 Subject: [PATCH] [client] remove YUV420 support --- client/src/main.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/client/src/main.c b/client/src/main.c index 4fc1ceca..13578b14 100644 --- a/client/src/main.c +++ b/client/src/main.c @@ -582,12 +582,6 @@ static int frameThread(void * unused) lgrFormat.bpp = 64; break; - case FRAME_TYPE_YUV420: - dataSize = lgrFormat.height * lgrFormat.width; - dataSize += (dataSize / 4) * 2; - lgrFormat.bpp = 12; - break; - default: DEBUG_ERROR("Unsupported frameType"); error = true;