Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_UTILTIY_AUDIO_PCM_PLOTTER_H__
00009 #define __SP_UTILTIY_AUDIO_PCM_PLOTTER_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013 #include "FileFormats/Sound/spSoundLoader.hpp"
00014 #include "RenderSystem/spTextureBase.hpp"
00015
00016
00017 namespace sp
00018 {
00019 namespace tool
00020 {
00021
00022
00024 namespace AudioPCMPlotter
00025 {
00026
00041 SP_EXPORT bool plotAudioBuffer(
00042 const audio::SAudioBuffer &AudioBuffer, const dim::rect2di &Rect, const video::color &Color,
00043 f32 RangeFrom = 0.0f, f32 RangeTo = 1.0f
00044 );
00045
00046 }
00047
00048
00049 }
00050
00051 }
00052
00053
00054 #endif
00055
00056
00057
00058