thumbnail/waveform generation

This commit is contained in:
itsmattkc
2018-06-15 20:17:05 -07:00
parent f8ce6c08f8
commit dc8d4728fc
29 changed files with 849 additions and 479 deletions
+4 -4
View File
@@ -44,9 +44,9 @@ struct Clip
long timeline_in;
long timeline_out;
int track;
uint8_t color_r;
uint8_t color_g;
uint8_t color_b;
quint8 color_r;
quint8 color_g;
quint8 color_b;
long getLength();
// inherited information (should be set to the same references in copy())
@@ -73,7 +73,7 @@ struct Clip
bool multithreaded;
Cacher* cacher;
QWaitCondition can_cache;
uint16_t cache_size;
quint16 cache_size;
ClipCache cache_A;
ClipCache cache_B;
QMutex lock;
+1 -1
View File
@@ -29,7 +29,7 @@ public:
virtual void save(QXmlStreamWriter* stream);
virtual void process_gl(int* anchor_x, int* anchor_y);
virtual void process_audio(uint8_t* samples, int nb_bytes);
virtual void process_audio(quint8* samples, int nb_bytes);
public slots:
void field_changed();