From aa820b9659e369e1127434d443cdc5164e02d7cc Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 26 Feb 2025 07:57:25 -0400 Subject: [PATCH] MT#55283 add missing EVS DTX handling Change-Id: I04882d64df1f08d733a4fb87747f13c807e2795c (cherry picked from commit de47c13b0b4f73921503c40928eebc1c87585d8d) --- lib/codeclib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/codeclib.c b/lib/codeclib.c index dab198c7d..6584c6619 100644 --- a/lib/codeclib.c +++ b/lib/codeclib.c @@ -4947,6 +4947,8 @@ static void evs_def_init(struct codec_def_s *def) { } static int evs_dtx(decoder_t *dec, GQueue *out, int ptime) { + ilog(LOG_DEBUG, "pushing empty/lost frame to EVS decoder"); + evs_push_frame(dec, NULL, 0, 0, 0, 0, out); return 0; }