! * \brief Close decoder */
| 629 | * \brief Close decoder |
| 630 | */ |
| 631 | void WelsCloseDecoder (PWelsDecoderContext pCtx) { |
| 632 | WelsFreeDynamicMemory (pCtx); |
| 633 | |
| 634 | WelsFreeStaticMemory (pCtx); |
| 635 | |
| 636 | #ifdef LONG_TERM_REF |
| 637 | pCtx->bParamSetsLostFlag = false; |
| 638 | #else |
| 639 | pCtx->bReferenceLostAtT0Flag = false; |
| 640 | #endif |
| 641 | pCtx->bNewSeqBegin = false; |
| 642 | pCtx->bPrintFrameErrorTraceFlag = false; |
| 643 | } |
| 644 | |
| 645 | /*! |
| 646 | * \brief configure decoder parameters |
no test coverage detected