~jaromil/freej/master

« back to all changes in this revision

Viewing changes to qt/QqWidget.h

  • Committer: fred
  • Date: 2011-01-25 17:32:31 UTC
  • Revision ID: git-v1:6126f899abcd96f6bab887cb2f840caf272b2c6b
Little modif in qt to test sound and streaming + various modif in freej

in qfreej : adding automatic call to ::openSoundDevice() when opening a
video.
Layer replaced by VideoLayer.
Added streaming config in ::Sound()
Changed from 10 to 1ms.

TODO file created (instead of the comments in the main)

in freej :
JackClient::Process() -> now writing jack outputs in a ring buffer.
commented out the RunCallback call.
OggTheoraEncoder:: -> a 30 sec recording to a file
from the JackClient ring buffer in wav PCM format added.

In theorautils.cpp -> work in progress :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define QQWIDGET_H
3
3
#include <QWidget>
4
4
#include <text_layer.h>
 
5
#include <video_layer.h>
 
6
//#include <v4l2_layer.h>
5
7
#include <QTabWidget>
6
8
#include <QTextEdit>
7
9
#include <QComboBox>
48
50
 
49
51
private:
50
52
    int newIdx;
51
 
    Layer *qLayer;
 
53
    //Layer *qLayer;
 
54
    VideoLayer *qLayer;
 
55
    //V4L2CamLayer *qLayer;
52
56
    TextLayer *qTextLayer;
53
57
    GeneratorLayer *m_qGeneLayer;
54
58
    QTextEdit *text;