| 43 | namespace { |
| 44 | |
| 45 | class HDR10Test : public ::testing::Test { |
| 46 | protected: |
| 47 | virtual void SetUp(); |
| 48 | virtual void TearDown(); |
| 49 | bool DoIndexing(std::string); |
| 50 | |
| 51 | FFMS_Indexer* indexer; |
| 52 | FFMS_Index* index; |
| 53 | int video_track_idx; |
| 54 | FFMS_VideoSource* video_source; |
| 55 | const FFMS_VideoProperties* VP; |
| 56 | |
| 57 | FFMS_ErrorInfo E; |
| 58 | char ErrorMsg[1024]; |
| 59 | |
| 60 | std::string SamplesDir; |
| 61 | }; |
| 62 | |
| 63 | void HDR10Test::SetUp() { |
| 64 | indexer = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected