openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.
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.

50 lines
1.4 KiB

#include "tools/clip/recorder/widget.h"
3 months ago
#include "tools/clip/recorder/ffmpeg.h"
3 months ago
3 months ago
Recorder::Recorder(const std::string& outputFile, QObject *parent) : QObject(parent) {
const float scale = util::getenv("SCALE", 1.0f);
encoder = new FFmpegEncoder(outputFile, DEVICE_SCREEN_SIZE.width() * scale, DEVICE_SCREEN_SIZE.height() * scale, UI_FREQ);
}
3 months ago
Recorder::~Recorder() {
keepRunning = false; // Signal processing thread to stop
delete encoder;
3 months ago
}
3 months ago
void Recorder::saveFrame(const std::shared_ptr<QPixmap> &frame) {
3 months ago
QMutexLocker locker(&mutex);
// Drop frame if queue is full
if (frameQueue.size() >= MAX_QUEUE_SIZE) {
qDebug() << "Dropping frame";
return;
}
3 months ago
frameQueue.enqueue(frame);
if (isProcessing.loadRelaxed() == 0) {
isProcessing.storeRelaxed(1);
3 months ago
QMetaObject::invokeMethod(this, &Recorder::processQueue, Qt::QueuedConnection);
}
}
void Recorder::processQueue() {
while (keepRunning) {
3 months ago
std::shared_ptr<QPixmap> frame;
3 months ago
{
QMutexLocker locker(&mutex);
if (frameQueue.isEmpty()) {
isProcessing.storeRelaxed(0);
3 months ago
return;
}
frame = frameQueue.dequeue();
}
if (!encoder->writeFrame(frame->toImage().convertToFormat(QImage::Format_ARGB32))) {
3 months ago
fprintf(stderr, "did not write\n");
}
}
isProcessing.storeRelaxed(0);
3 months ago
}