! * \brief Initialize Wels Flexible Macroblock Ordering (FMO) * * \param pFmo Wels fmo to be initialized * \param pPps pps argument * \param kiMbWidth mb width * \param kiMbHeight mb height * * \return 0 - successful; none 0 - failed; */
| 186 | * \return 0 - successful; none 0 - failed; |
| 187 | */ |
| 188 | int32_t InitFmo (PFmo pFmo, PPps pPps, const int32_t kiMbWidth, const int32_t kiMbHeight, CMemoryAlign* pMa) { |
| 189 | return FmoGenerateSliceGroup (pFmo, pPps, kiMbWidth, kiMbHeight, pMa); |
| 190 | } |
| 191 | |
| 192 | |
| 193 | /*! |
no test coverage detected