You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
532 B
30 lines
532 B
/*
|
|
* UBAbstractVideoEncoder.cpp
|
|
*
|
|
* Created on: 3 sept. 2009
|
|
* Author: Luc
|
|
*/
|
|
|
|
#include "UBAbstractVideoEncoder.h"
|
|
|
|
UBAbstractVideoEncoder::UBAbstractVideoEncoder(QObject *pParent)
|
|
: QObject(pParent)
|
|
, mFramesPerSecond(10)
|
|
, mVideoSize(640, 480)
|
|
, mVideoBitsPerSecond(1700000) // 1.7 Mbps
|
|
{
|
|
// NOOP
|
|
|
|
}
|
|
|
|
UBAbstractVideoEncoder::~UBAbstractVideoEncoder()
|
|
{
|
|
// NOOP
|
|
}
|
|
|
|
|
|
void UBAbstractVideoEncoder::newChapter(const QString& pLabel, long timestamp)
|
|
{
|
|
Q_UNUSED(pLabel);
|
|
Q_UNUSED(timestamp);
|
|
}
|
|
|