| 100 | } |
| 101 | |
| 102 | FFmpegReader::FFmpegReader(const std::string &path, bool inspect_reader) |
| 103 | : FFmpegReader(path, DurationStrategy::VideoPreferred, inspect_reader) {} |
| 104 | |
| 105 | FFmpegReader::FFmpegReader(const std::string &path, DurationStrategy duration_strategy, bool inspect_reader) |
| 106 | : path(path), pFormatCtx(NULL), videoStream(-1), audioStream(-1), pCodecCtx(NULL), aCodecCtx(NULL), |
no test coverage detected