diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-04-24 16:42:42 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-04-24 16:42:42 +0100 |
| commit | 7cd6f032cc0e10edcd6bebedfd2e0de38ef2d40a (patch) | |
| tree | 61f13f30ee4bfe40958aaab85a65fd41c6875b0d /rotord/rotor.h | |
| parent | a2c6354640f24db3484ccf486c2c0cbd08808e60 (diff) | |
uuencode functionality in place
Diffstat (limited to 'rotord/rotor.h')
| -rwxr-xr-x | rotord/rotor.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rotord/rotor.h b/rotord/rotor.h index 997cd30..6ade885 100755 --- a/rotord/rotor.h +++ b/rotord/rotor.h @@ -65,6 +65,7 @@ main definitions of libavcodec.h are in utils.c #include "Poco/Random.h" #include "Poco/AutoPtr.h" #include "Poco/File.h" +#include "Poco/Base64Encoder.h" #include <iostream> using Poco::UUID; @@ -483,8 +484,8 @@ namespace Rotor { class Audio_thumbnailer: public Base_audio_processor { public: Audio_thumbnailer(){ - height=32; - width=64; //fit + height=128; + width=512; //fit data=new uint8_t[height*width]; memset(data,0,height*width); }; @@ -530,6 +531,7 @@ namespace Rotor { Poco::Mutex mutex; //lock for access from parent thread std::string audio_filename; std::string output_filename; + Audio_thumbnailer *audio_thumb; vampHost::QMAnalyser audio_analyser; Graph graph; |
