| 27 | TEST_F (EncoderInitTest, JustInit) {} |
| 28 | |
| 29 | struct EncodeFileParam { |
| 30 | const char* pkcFileName; |
| 31 | const char* pkcHashStr[2]; |
| 32 | EUsageType eUsageType; |
| 33 | int iWidth; |
| 34 | int iHeight; |
| 35 | float fFrameRate; |
| 36 | SliceModeEnum eSliceMode; |
| 37 | bool bDenoise; |
| 38 | int iLayerNum; |
| 39 | bool bLossless; |
| 40 | bool bEnableLtr; |
| 41 | bool bCabac; |
| 42 | // unsigned short iMultipleThreadIdc; |
| 43 | }; |
| 44 | |
| 45 | void EncFileParamToParamExt (EncodeFileParam* pEncFileParam, SEncParamExt* pEnxParamExt) { |
| 46 | ASSERT_TRUE (NULL != pEncFileParam && NULL != pEnxParamExt); |
nothing calls this directly
no outgoing calls
no test coverage detected