mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-18 23:18:59 +02:00
2019-01-17 Fred Gleason <fredg@paravelsystems.com>
* Removed dead debugging lines from the 'RDRenderer' class.
This commit is contained in:
parent
08ffd57eca
commit
b23fd5dd63
@ -18401,3 +18401,5 @@
|
|||||||
2019-01-17 Fred Gleason <fredg@paravelsystems.com>
|
2019-01-17 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in log rendering that caused custom transitions
|
* Fixed a bug in log rendering that caused custom transitions
|
||||||
to be rendered as a PLAY transition.
|
to be rendered as a PLAY transition.
|
||||||
|
2019-01-17 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Removed dead debugging lines from the 'RDRenderer' class.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// Render a Rivendell log to a single audio object.
|
// Render a Rivendell log to a single audio object.
|
||||||
//
|
//
|
||||||
// (C) Copyright 2017-2018 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2017-2019 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// This program is free software; you can redistribute it and/or modify
|
||||||
// it under the terms of the GNU General Public License version 2 as
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// Render a Rivendell log to a single audio object.
|
// Render a Rivendell log to a single audio object.
|
||||||
//
|
//
|
||||||
// (C) Copyright 2017 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2017-2019 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// This program is free software; you can redistribute it and/or modify
|
||||||
// it under the terms of the GNU General Public License version 2 as
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
@ -28,19 +28,13 @@
|
|||||||
#include <qobject.h>
|
#include <qobject.h>
|
||||||
#include <qstringlist.h>
|
#include <qstringlist.h>
|
||||||
|
|
||||||
//#include <rdconfig.h>
|
|
||||||
#include <rdlog_event.h>
|
#include <rdlog_event.h>
|
||||||
#include <rdsettings.h>
|
#include <rdsettings.h>
|
||||||
//#include <rdstation.h>
|
|
||||||
//#include <rdsystem.h>
|
|
||||||
//#include <rduser.h>
|
|
||||||
|
|
||||||
class __RDRenderLogLine : public RDLogLine
|
class __RDRenderLogLine : public RDLogLine
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
__RDRenderLogLine(RDLogLine *ll,unsigned chans);
|
__RDRenderLogLine(RDLogLine *ll,unsigned chans);
|
||||||
// __RDRenderLogLine(RDLogLine *ll,RDUser *user,RDStation *station,RDSystem *sys,
|
|
||||||
// RDConfig *config,unsigned chans);
|
|
||||||
RDCart *cart() const;
|
RDCart *cart() const;
|
||||||
RDCut *cut() const;
|
RDCut *cut() const;
|
||||||
SNDFILE *handle() const;
|
SNDFILE *handle() const;
|
||||||
@ -62,10 +56,6 @@ class __RDRenderLogLine : public RDLogLine
|
|||||||
RDCut *ll_cut;
|
RDCut *ll_cut;
|
||||||
SNDFILE *ll_handle;
|
SNDFILE *ll_handle;
|
||||||
RDLogLine *ll_logline;
|
RDLogLine *ll_logline;
|
||||||
// RDUser *ll_user;
|
|
||||||
// RDStation *ll_station;
|
|
||||||
// RDSystem *ll_system;
|
|
||||||
// RDConfig *ll_config;
|
|
||||||
unsigned ll_channels;
|
unsigned ll_channels;
|
||||||
double ll_ramp_level;
|
double ll_ramp_level;
|
||||||
double ll_ramp_rate;
|
double ll_ramp_rate;
|
||||||
@ -79,8 +69,6 @@ class RDRenderer : public QObject
|
|||||||
Q_OBJECT;
|
Q_OBJECT;
|
||||||
public:
|
public:
|
||||||
RDRenderer(QObject *parent=0);
|
RDRenderer(QObject *parent=0);
|
||||||
// RDRenderer(RDUser *user,RDStation *station,RDSystem *system,RDConfig *config,
|
|
||||||
// QObject *parent=0);
|
|
||||||
~RDRenderer();
|
~RDRenderer();
|
||||||
bool renderToFile(const QString &outfile,RDLogEvent *log,RDSettings *s,
|
bool renderToFile(const QString &outfile,RDLogEvent *log,RDSettings *s,
|
||||||
const QTime &start_time,bool ignore_stops,
|
const QTime &start_time,bool ignore_stops,
|
||||||
@ -117,10 +105,6 @@ class RDRenderer : public QObject
|
|||||||
void ProgressMessage(const QString &msg);
|
void ProgressMessage(const QString &msg);
|
||||||
void ProgressMessage(const QTime &time,int line,const QString &trans,
|
void ProgressMessage(const QTime &time,int line,const QString &trans,
|
||||||
const QString &msg);
|
const QString &msg);
|
||||||
// RDUser *render_user;
|
|
||||||
// RDStation *render_station;
|
|
||||||
// RDSystem *render_system;
|
|
||||||
// RDConfig *render_config;
|
|
||||||
QStringList render_warnings;
|
QStringList render_warnings;
|
||||||
bool render_abort;
|
bool render_abort;
|
||||||
int render_total_passes;
|
int render_total_passes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user