From 79eb81e8d0874e0d1c29634754ca025391d1e917 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Mon, 1 Dec 2025 01:52:39 +0900 Subject: [PATCH] tav: D1 res is 720x480 --- video_encoder/encoder_tav.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video_encoder/encoder_tav.c b/video_encoder/encoder_tav.c index 4687b69..f78b744 100644 --- a/video_encoder/encoder_tav.c +++ b/video_encoder/encoder_tav.c @@ -2397,7 +2397,7 @@ static int parse_resolution(const char *res_str, int *width, int *height, const } if (strcmp(res_str, "d1") == 0 || strcmp(res_str, "D1") == 0) { *width = 720; - *height = 486; + *height = 480; return 1; } if (strcmp(res_str, "d1pal") == 0 || strcmp(res_str, "D1PAL") == 0) {