| 1547 | } |
| 1548 | |
| 1549 | int32_t GetTotalCodedNalCount (SFrameBSInfo* pFbi) { |
| 1550 | int32_t iTotalCodedNalCount = 0; |
| 1551 | for (int32_t iNalIdx = 0; iNalIdx < MAX_LAYER_NUM_OF_FRAME; iNalIdx++) { |
| 1552 | iTotalCodedNalCount += pFbi->sLayerInfo[iNalIdx].iNalCount; |
| 1553 | } |
| 1554 | |
| 1555 | return iTotalCodedNalCount; |
| 1556 | } |
| 1557 | |
| 1558 | int32_t FrameBsRealloc (sWelsEncCtx* pCtx, |
| 1559 | SFrameBSInfo* pFrameBsInfo, |
no outgoing calls
no test coverage detected