| 425 | } |
| 426 | |
| 427 | void decoderFFmpeg::fillStatisticList(stats::StatisticsData &statisticsData) const |
| 428 | { |
| 429 | auto sourceColorMapper = |
| 430 | stats::color::ColorMapper({-2, 2}, stats::color::PredefinedType::Col3_bblg); |
| 431 | |
| 432 | statisticsData.addStatType(stats::StatisticsType(0, "Source -", sourceColorMapper)); |
| 433 | statisticsData.addStatType(stats::StatisticsType(1, "Source +", sourceColorMapper)); |
| 434 | statisticsData.addStatType(stats::StatisticsType(2, "Motion Vector -", 4)); |
| 435 | statisticsData.addStatType(stats::StatisticsType(3, "Motion Vector +", 4)); |
| 436 | } |
| 437 | |
| 438 | bool decoderFFmpeg::createDecoder(FFmpeg::AVCodecIDWrapper codecID, |
| 439 | FFmpeg::AVCodecParametersWrapper codecpar) |
nothing calls this directly
no test coverage detected