IVGCVSW-3005 Correct the order of inputs and outputs of deepspeech v1

Change-Id: I36b3467e74508ad4e8f3140285f965bc63433d1d
Signed-off-by: Narumol Prangnawarat <narumol.prangnawarat@arm.com>
diff --git a/tests/LstmCommon.hpp b/tests/LstmCommon.hpp
index 31c4d04..0876d26 100755
--- a/tests/LstmCommon.hpp
+++ b/tests/LstmCommon.hpp
@@ -13,16 +13,16 @@
 struct LstmInput
 {
     LstmInput(const std::vector<float>& inputSeq,
-              const std::vector<float>& stateC,
-              const std::vector<float>& stateH)
+              const std::vector<float>& stateH,
+              const std::vector<float>& stateC)
             : m_InputSeq(inputSeq)
-            , m_StateC(stateC)
             , m_StateH(stateH)
+            , m_StateC(stateC)
     {}
 
     std::vector<float>        m_InputSeq;
-    std::vector<float>        m_StateC;
     std::vector<float>        m_StateH;
+    std::vector<float>        m_StateC;
 };
 
 using LstmInputs = std::pair<std::string, std::vector<LstmInput>>;