From f134f6b26b96f748a2a91c701156df61c3576b5a Mon Sep 17 00:00:00 2001 From: f4exb Date: Fri, 26 Mar 2021 05:59:40 +0100 Subject: [PATCH] DATV: leandvb dvbs2: update cstln object with MOCOD info --- plugins/channelrx/demoddatv/leansdr/dvbs2.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/channelrx/demoddatv/leansdr/dvbs2.h b/plugins/channelrx/demoddatv/leansdr/dvbs2.h index 1828c06d4..1b21f2dfc 100644 --- a/plugins/channelrx/demoddatv/leansdr/dvbs2.h +++ b/plugins/channelrx/demoddatv/leansdr/dvbs2.h @@ -1054,6 +1054,9 @@ struct s2_frame_receiver : runnable // Constellation for data slots. dcstln = get_cstln(pls.modcod); cstln = dcstln; // Used by GUI + cstln->m_rateCode = (int) mcinfo->rate; + cstln->m_typeCode = (int) mcinfo->c; + cstln->m_setByModcod = true; // Output special slot with PLS information. pout->is_pls = true; pout->pls = pls;