| 41 | } |
| 42 | |
| 43 | static std::string GetOfflineFolder() { |
| 44 | return JoinPaths(GetH264EncoderToolsFolder(), "OffLineFolder"); |
| 45 | } |
| 46 | |
| 47 | static bool WriteYUVPlane(uint8_t* data, int stride, int width, int height, FILE* fp) { |
| 48 | for (int j = 0; j < height; j++) { |
no test coverage detected