From c5c58bc116da9c9ffd2f490470c771154314edeb Mon Sep 17 00:00:00 2001 From: fduncanh Date: Tue, 3 May 2022 02:15:32 -0400 Subject: [PATCH] fix broken -rpi option (broken by typo) --- uxplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uxplay.cpp b/uxplay.cpp index 037cb81..d5b2b61 100644 --- a/uxplay.cpp +++ b/uxplay.cpp @@ -585,7 +585,7 @@ int main (int argc, char *argv[]) { video_decoder = "avdec_h264"; video_converter.erase(); video_converter = "videoconvert"; - } else if (arg == "-v4l2" || arg == "rpi") { + } else if (arg == "-v4l2" || arg == "-rpi") { video_decoder.erase(); video_decoder = "v4l2h264dec"; video_converter.erase();