| 212 | } |
| 213 | |
| 214 | void DecoderParseSyntaxTest::Uninit() { |
| 215 | if (m_pCtx) { |
| 216 | UninitDecoder (m_pCtx); |
| 217 | } |
| 218 | if (m_pWelsTrace) { |
| 219 | delete m_pWelsTrace; |
| 220 | m_pWelsTrace = NULL; |
| 221 | } |
| 222 | memset (&m_sDecParam, 0, sizeof (SDecodingParam)); |
| 223 | memset (&m_sBufferInfo, 0, sizeof (SBufferInfo)); |
| 224 | m_pData[0] = m_pData[1] = m_pData[2] = NULL; |
| 225 | m_iBufLength = 0; |
| 226 | } |
| 227 | |
| 228 | bool DecoderParseSyntaxTest::DecodeBs (const char* sFileName, EDecCase eDecCase) { |
| 229 |
nothing calls this directly
no test coverage detected