| 4 | #include <string> |
| 5 | |
| 6 | static void UpdateHashFromPlane (SHA1Context* ctx, const uint8_t* plane, |
| 7 | int width, int height, int stride) { |
| 8 | for (int i = 0; i < height; i++) { |
| 9 | SHA1Input (ctx, plane, width); |
| 10 | plane += stride; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | class ThreadDecoderCapabilityTest : public ::testing::Test { |
| 15 | public: |
no test coverage detected