added waveform support in footage viewer and fixed audio regression where sound stopped playing if it hit EOF
This commit is contained in:
@@ -4,10 +4,11 @@
|
||||
#include <QResizeEvent>
|
||||
|
||||
// enforces aspect ratio
|
||||
ViewerContainer::ViewerContainer(QWidget *parent) : QWidget(parent) {
|
||||
child = NULL;
|
||||
aspect_ratio = 1;
|
||||
}
|
||||
ViewerContainer::ViewerContainer(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
child(NULL),
|
||||
aspect_ratio(1)
|
||||
{}
|
||||
|
||||
void ViewerContainer::adjust() {
|
||||
if (child != NULL) {
|
||||
|
||||
Reference in New Issue
Block a user