| 12 | namespace { |
| 13 | |
| 14 | class DisplayMatrixTest : public ::testing::Test { |
| 15 | protected: |
| 16 | virtual void SetUp(); |
| 17 | virtual void TearDown(); |
| 18 | bool DoIndexing(std::string); |
| 19 | |
| 20 | FFMS_Indexer* indexer; |
| 21 | FFMS_Index* index; |
| 22 | int video_track_idx; |
| 23 | FFMS_VideoSource* video_source; |
| 24 | const FFMS_VideoProperties* VP; |
| 25 | |
| 26 | FFMS_ErrorInfo E; |
| 27 | char ErrorMsg[1024]; |
| 28 | |
| 29 | std::string SamplesDir; |
| 30 | }; |
| 31 | |
| 32 | void DisplayMatrixTest::SetUp() { |
| 33 | indexer = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected