From 781f9856bce9f73e82ab94e6566438c26e37da6f Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Wed, 28 Dec 2016 17:40:32 +0000 Subject: [PATCH] Allow for multi block non LC embedded data. --- DMREmbeddedLC.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DMREmbeddedLC.cpp b/DMREmbeddedLC.cpp index 3180923..2163bd4 100644 --- a/DMREmbeddedLC.cpp +++ b/DMREmbeddedLC.cpp @@ -30,7 +30,8 @@ CDMREmbeddedLC::CDMREmbeddedLC() : m_rawLC(NULL), m_state(LCS_NONE) { - m_rawLC = new bool[128U]; + // Allow for multi-block non embedded LC data + m_rawLC = new bool[300U]; } CDMREmbeddedLC::~CDMREmbeddedLC()