новые иконки в OpenBoard
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.
OpenBoard/src/podcast/UBAbstractVideoEncoder.cpp

31 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);
}