| 648 | //------------------------------------------------------------------------------ |
| 649 | |
| 650 | static bool shouldRenderWaveformImage( |
| 651 | FileFormat::FileFormat input_format, |
| 652 | FileFormat::FileFormat output_format) |
| 653 | { |
| 654 | return (FileFormat::isWaveformDataFormat(input_format) || |
| 655 | FileFormat::isAudioFormat(input_format)) && |
| 656 | FileFormat::isSupported(input_format) && |
| 657 | output_format == FileFormat::Png; |
| 658 | } |
| 659 | |
| 660 | //------------------------------------------------------------------------------ |
| 661 |
no test coverage detected