From 3820b2a2db27de602fbe7d33d6f161e2dfc76139 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Mon, 25 Aug 2025 19:00:40 +0900 Subject: [PATCH] increased default audio rates --- video_encoder/encoder_tev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video_encoder/encoder_tev.c b/video_encoder/encoder_tev.c index ce50d33..a41473b 100644 --- a/video_encoder/encoder_tev.c +++ b/video_encoder/encoder_tev.c @@ -39,7 +39,7 @@ static inline float FCLAMP(float x, float min, float max) { return x < min ? min : (x > max ? max : x); } -static const int MP2_RATE_TABLE[5] = {64, 112, 160, 224, 384}; +static const int MP2_RATE_TABLE[5] = {80, 128, 192, 224, 384}; static const int QUANT_MULT_Y[5] = {40, 10, 6, 4, 1}; static const int QUANT_MULT_CO[5] = {40, 10, 6, 4, 1}; static const int QUANT_MULT_CG[5] = {106, 22, 10, 5, 1}; // CO[i] * sqrt(7 - 2i)