Get an audio waveform image pixels
| 256 | |
| 257 | // Get an audio waveform image pixels |
| 258 | const unsigned char* Frame::GetWaveformPixels(int width, int height, int Red, int Green, int Blue, int Alpha) |
| 259 | { |
| 260 | // Get audio wave form image |
| 261 | wave_image = GetWaveform(width, height, Red, Green, Blue, Alpha); |
| 262 | |
| 263 | // Return array of pixel packets |
| 264 | return wave_image->constBits(); |
| 265 | } |
| 266 | |
| 267 | // Display the wave form |
| 268 | void Frame::DisplayWaveform() |
nothing calls this directly
no outgoing calls
no test coverage detected