| 613 | //------------------------------------------------------------------------------ |
| 614 | |
| 615 | static bool shouldGenerateWaveformData( |
| 616 | FileFormat::FileFormat input_format, |
| 617 | FileFormat::FileFormat output_format) |
| 618 | { |
| 619 | return FileFormat::isAudioFormat(input_format) && |
| 620 | FileFormat::isSupported(input_format) && |
| 621 | FileFormat::isWaveformDataFormat(output_format); |
| 622 | } |
| 623 | |
| 624 | //------------------------------------------------------------------------------ |
| 625 |
no test coverage detected