From 61067d488fd7b4a66845863fcbd9bed14030a4f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Tue, 18 Feb 2014 10:19:35 +0200 Subject: [PATCH] Fix building with MT_DEBUG enabled after the encoder interface update There is no struct named SMulSliceOption any longer. --- codec/encoder/core/src/slice_multi_threading.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec/encoder/core/src/slice_multi_threading.cpp b/codec/encoder/core/src/slice_multi_threading.cpp index 1339fa7a..3508eb83 100644 --- a/codec/encoder/core/src/slice_multi_threading.cpp +++ b/codec/encoder/core/src/slice_multi_threading.cpp @@ -1459,7 +1459,7 @@ void TrackSliceConsumeTime (sWelsEncCtx* pCtx, int32_t* pDidList, const int32_t while (iSpatialIdx < iSpatialNum) { const int32_t kiDid = pDidList[iSpatialIdx]; SDLayerParam* pDlp = &pPara->sDependencyLayers[kiDid]; - SMulSliceOption* pMso = &pDlp->sSliceCfg; + SSliceConfig* pMso = &pDlp->sSliceCfg; SDqLayer* pCurDq = pCtx->ppDqLayerList[kiDid]; SSliceCtx* pSliceCtx = pCurDq->pSliceEncCtx; const uint32_t kuiCountSliceNum = pSliceCtx->iSliceNumInFrame;