2017-03-05 21:39:34 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef PLUGINS_CHANNELTX_MODATV_ATVMOD_H_
|
|
|
|
#define PLUGINS_CHANNELTX_MODATV_ATVMOD_H_
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QMutex>
|
|
|
|
|
2017-03-08 02:36:28 -05:00
|
|
|
#include <opencv2/core/core.hpp>
|
|
|
|
#include <opencv2/highgui/highgui.hpp>
|
|
|
|
|
2017-03-05 21:39:34 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "dsp/basebandsamplesource.h"
|
|
|
|
#include "dsp/nco.h"
|
|
|
|
#include "dsp/interpolator.h"
|
|
|
|
#include "dsp/movingaverage.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
|
|
|
class ATVMod : public BasebandSampleSource {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef enum
|
|
|
|
{
|
2017-03-06 12:40:14 -05:00
|
|
|
ATVStdPAL625,
|
|
|
|
ATVStdPAL525
|
2017-03-05 21:39:34 -05:00
|
|
|
} ATVStd;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
ATVModInputUniform,
|
2017-03-06 19:38:19 -05:00
|
|
|
ATVModInputHBars,
|
|
|
|
ATVModInputVBars,
|
2017-03-08 13:04:10 -05:00
|
|
|
ATVModInputChessboard,
|
2017-03-06 19:38:19 -05:00
|
|
|
ATVModInputHGradient,
|
2017-03-07 19:35:18 -05:00
|
|
|
ATVModInputVGradient,
|
|
|
|
ATVModInputImage,
|
|
|
|
ATVModInputVideo
|
2017-03-05 21:39:34 -05:00
|
|
|
} ATVModInput;
|
|
|
|
|
2017-03-07 13:19:54 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
ATVModulationAM,
|
|
|
|
ATVModulationFM
|
|
|
|
} ATVModulation;
|
|
|
|
|
2017-03-07 19:35:18 -05:00
|
|
|
class MsgConfigureImageFileName : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const QString& getFileName() const { return m_fileName; }
|
|
|
|
|
|
|
|
static MsgConfigureImageFileName* create(const QString& fileName)
|
|
|
|
{
|
|
|
|
return new MsgConfigureImageFileName(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_fileName;
|
|
|
|
|
|
|
|
MsgConfigureImageFileName(const QString& fileName) :
|
|
|
|
Message(),
|
|
|
|
m_fileName(fileName)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-03-08 20:09:31 -05:00
|
|
|
class MsgConfigureVideoFileName : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const QString& getFileName() const { return m_fileName; }
|
|
|
|
|
|
|
|
static MsgConfigureVideoFileName* create(const QString& fileName)
|
|
|
|
{
|
|
|
|
return new MsgConfigureVideoFileName(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_fileName;
|
|
|
|
|
|
|
|
MsgConfigureVideoFileName(const QString& fileName) :
|
|
|
|
Message(),
|
|
|
|
m_fileName(fileName)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-03-09 17:17:14 -05:00
|
|
|
class MsgConfigureVideoFileSourceSeek : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getPercentage() const { return m_seekPercentage; }
|
|
|
|
|
|
|
|
static MsgConfigureVideoFileSourceSeek* create(int seekPercentage)
|
|
|
|
{
|
|
|
|
return new MsgConfigureVideoFileSourceSeek(seekPercentage);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_seekPercentage; //!< percentage of seek position from the beginning 0..100
|
|
|
|
|
|
|
|
MsgConfigureVideoFileSourceSeek(int seekPercentage) :
|
|
|
|
Message(),
|
|
|
|
m_seekPercentage(seekPercentage)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureVideoFileSourceStreamTiming : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static MsgConfigureVideoFileSourceStreamTiming* create()
|
|
|
|
{
|
|
|
|
return new MsgConfigureVideoFileSourceStreamTiming();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
MsgConfigureVideoFileSourceStreamTiming() :
|
|
|
|
Message()
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportVideoFileSourceStreamTiming : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getFrameCount() const { return m_frameCount; }
|
|
|
|
|
|
|
|
static MsgReportVideoFileSourceStreamTiming* create(int frameCount)
|
|
|
|
{
|
|
|
|
return new MsgReportVideoFileSourceStreamTiming(frameCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_frameCount;
|
|
|
|
|
|
|
|
MsgReportVideoFileSourceStreamTiming(int frameCount) :
|
|
|
|
Message(),
|
|
|
|
m_frameCount(frameCount)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportVideoFileSourceStreamData : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getFrameRate() const { return m_frameRate; }
|
|
|
|
quint32 getVideoLength() const { return m_videoLength; }
|
|
|
|
|
|
|
|
static MsgReportVideoFileSourceStreamData* create(int frameRate,
|
|
|
|
quint32 recordLength)
|
|
|
|
{
|
|
|
|
return new MsgReportVideoFileSourceStreamData(frameRate, recordLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_frameRate;
|
|
|
|
int m_videoLength; //!< Video length in frames
|
|
|
|
|
|
|
|
MsgReportVideoFileSourceStreamData(int frameRate,
|
|
|
|
int videoLength) :
|
|
|
|
Message(),
|
|
|
|
m_frameRate(frameRate),
|
|
|
|
m_videoLength(videoLength)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-03-05 21:39:34 -05:00
|
|
|
ATVMod();
|
|
|
|
~ATVMod();
|
|
|
|
|
|
|
|
void configure(MessageQueue* messageQueue,
|
|
|
|
Real rfBandwidth,
|
|
|
|
ATVStd atvStd,
|
|
|
|
ATVModInput atvModInput,
|
|
|
|
Real uniformLevel,
|
2017-03-07 13:19:54 -05:00
|
|
|
ATVModulation atvModulation,
|
2017-03-05 21:39:34 -05:00
|
|
|
bool channelMute);
|
|
|
|
|
|
|
|
virtual void pull(Sample& sample);
|
|
|
|
virtual void pullAudio(int nbSamples); // this is used for video signal actually
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
|
|
|
|
|
|
|
Real getMagSq() const { return m_movingAverage.average(); }
|
|
|
|
|
2017-03-06 12:40:14 -05:00
|
|
|
static int getSampleRateUnits(ATVStd std);
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* Level changed
|
|
|
|
* \param rmsLevel RMS level in range 0.0 - 1.0
|
|
|
|
* \param peakLevel Peak level in range 0.0 - 1.0
|
|
|
|
* \param numSamples Number of audio samples analyzed
|
|
|
|
*/
|
|
|
|
void levelChanged(qreal rmsLevel, qreal peakLevel, int numSamples);
|
|
|
|
|
|
|
|
private:
|
|
|
|
class MsgConfigureATVMod : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
Real getRFBandwidth() const { return m_rfBandwidth; }
|
|
|
|
ATVStd getATVStd() const { return m_atvStd; }
|
|
|
|
ATVModInput getATVModInput() const { return m_atvModInput; }
|
|
|
|
Real getUniformLevel() const { return m_uniformLevel; }
|
2017-03-07 13:19:54 -05:00
|
|
|
ATVModulation getModulation() const { return m_atvModulation; }
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
static MsgConfigureATVMod* create(
|
|
|
|
Real rfBandwidth,
|
|
|
|
ATVStd atvStd,
|
|
|
|
ATVModInput atvModInput,
|
2017-03-07 13:19:54 -05:00
|
|
|
Real uniformLevel,
|
|
|
|
ATVModulation atvModulation)
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-07 13:19:54 -05:00
|
|
|
return new MsgConfigureATVMod(rfBandwidth, atvStd, atvModInput, uniformLevel, atvModulation);
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-03-07 13:19:54 -05:00
|
|
|
Real m_rfBandwidth;
|
|
|
|
ATVStd m_atvStd;
|
|
|
|
ATVModInput m_atvModInput;
|
|
|
|
Real m_uniformLevel;
|
|
|
|
ATVModulation m_atvModulation;
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
MsgConfigureATVMod(
|
|
|
|
Real rfBandwidth,
|
|
|
|
ATVStd atvStd,
|
|
|
|
ATVModInput atvModInput,
|
2017-03-07 13:19:54 -05:00
|
|
|
Real uniformLevel,
|
|
|
|
ATVModulation atvModulation) :
|
2017-03-05 21:39:34 -05:00
|
|
|
Message(),
|
|
|
|
m_rfBandwidth(rfBandwidth),
|
|
|
|
m_atvStd(atvStd),
|
|
|
|
m_atvModInput(atvModInput),
|
2017-03-07 13:19:54 -05:00
|
|
|
m_uniformLevel(uniformLevel),
|
|
|
|
m_atvModulation(atvModulation)
|
2017-03-05 21:39:34 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Config
|
|
|
|
{
|
2017-03-07 13:19:54 -05:00
|
|
|
int m_outputSampleRate; //!< sample rate from channelizer
|
|
|
|
qint64 m_inputFrequencyOffset; //!< offset from baseband center frequency
|
|
|
|
Real m_rfBandwidth; //!< Bandwidth of modulated signal
|
|
|
|
ATVStd m_atvStd; //!< Standard
|
|
|
|
ATVModInput m_atvModInput; //!< Input source type
|
|
|
|
Real m_uniformLevel; //!< Percentage between black and white for uniform screen display
|
|
|
|
ATVModulation m_atvModulation; //!< RF modulation type
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
Config() :
|
|
|
|
m_outputSampleRate(-1),
|
|
|
|
m_inputFrequencyOffset(0),
|
|
|
|
m_rfBandwidth(0),
|
|
|
|
m_atvStd(ATVStdPAL625),
|
2017-03-06 19:38:19 -05:00
|
|
|
m_atvModInput(ATVModInputHBars),
|
2017-03-07 13:19:54 -05:00
|
|
|
m_uniformLevel(0.5f),
|
|
|
|
m_atvModulation(ATVModulationAM)
|
2017-03-05 21:39:34 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
Config m_config;
|
|
|
|
Config m_running;
|
|
|
|
|
|
|
|
NCO m_carrierNco;
|
|
|
|
Complex m_modSample;
|
2017-03-07 13:19:54 -05:00
|
|
|
float m_modPhasor; //!< For FM modulation
|
2017-03-05 21:39:34 -05:00
|
|
|
Interpolator m_interpolator;
|
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
|
|
|
int m_tvSampleRate; //!< sample rate for generating signal
|
|
|
|
uint32_t m_pointsPerSync; //!< number of line points for the horizontal sync
|
|
|
|
uint32_t m_pointsPerBP; //!< number of line points for the back porch
|
2017-03-06 12:40:14 -05:00
|
|
|
uint32_t m_pointsPerImgLine; //!< number of line points for the image line
|
2017-03-05 21:39:34 -05:00
|
|
|
uint32_t m_pointsPerFP; //!< number of line points for the front porch
|
|
|
|
uint32_t m_pointsPerFSync; //!< number of line points for the field first sync
|
2017-03-06 19:38:19 -05:00
|
|
|
uint32_t m_pointsPerHBar; //!< number of line points for a bar of the bar chart
|
|
|
|
uint32_t m_linesPerVBar; //!< number of lines for a bar of the bar chart
|
2017-03-05 21:39:34 -05:00
|
|
|
uint32_t m_pointsPerTU; //!< number of line points per time unit
|
|
|
|
uint32_t m_nbLines; //!< number of lines per complete frame
|
2017-03-08 13:04:10 -05:00
|
|
|
uint32_t m_nbLines2; //!< same number as above (non interlaced) or half the number above (interlaced)
|
|
|
|
uint32_t m_nbImageLines; //!< number of image lines excluding synchronization lines
|
|
|
|
uint32_t m_nbImageLines2; //!< same number as above (non interlaced) or half the number above (interlaced)
|
2017-03-05 21:39:34 -05:00
|
|
|
uint32_t m_nbHorizPoints; //!< number of line points per horizontal line
|
2017-03-09 13:07:45 -05:00
|
|
|
uint32_t m_nbSyncLinesHead; //!< number of header sync lines
|
2017-03-08 13:04:10 -05:00
|
|
|
uint32_t m_nbBlankLines; //!< number of lines in a frame (full or half) that are blanked (black) at the top of the image
|
|
|
|
float m_hBarIncrement; //!< video level increment at each horizontal bar increment
|
|
|
|
float m_vBarIncrement; //!< video level increment at each vertical bar increment
|
2017-03-05 21:39:34 -05:00
|
|
|
bool m_interlaced; //!< true if image is interlaced (2 half frames per frame)
|
2017-03-08 13:04:10 -05:00
|
|
|
bool m_evenImage; //!< in interlaced mode true if this is an even image
|
2017-03-05 21:39:34 -05:00
|
|
|
QMutex m_settingsMutex;
|
|
|
|
int m_horizontalCount; //!< current point index on line
|
|
|
|
int m_lineCount; //!< current line index in frame
|
2017-03-08 20:09:31 -05:00
|
|
|
float m_fps; //!< resulting frames per second
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
MovingAverage<Real> m_movingAverage;
|
|
|
|
quint32 m_levelCalcCount;
|
|
|
|
Real m_peakLevel;
|
|
|
|
Real m_levelSum;
|
|
|
|
|
2017-03-08 19:00:46 -05:00
|
|
|
cv::Mat m_imageOriginal; //!< original non resized image
|
|
|
|
cv::Mat m_image; //!< resized image for transmission at given rate
|
2017-03-08 13:04:10 -05:00
|
|
|
bool m_imageOK;
|
2017-03-08 02:36:28 -05:00
|
|
|
|
2017-03-08 20:09:31 -05:00
|
|
|
cv::VideoCapture m_video; //!< current video capture
|
2017-03-09 13:07:45 -05:00
|
|
|
cv::Mat m_frameOriginal; //!< current frame from video
|
|
|
|
cv::Mat m_frame; //!< current displayable video frame
|
|
|
|
float m_videoFPS; //!< current video FPS rate
|
|
|
|
int m_videoWidth; //!< current video frame width
|
|
|
|
int m_videoHeight; //!< current video frame height
|
|
|
|
float m_videoFx; //!< current video horizontal scaling factor
|
|
|
|
float m_videoFy; //!< current video vertictal scaling factor
|
|
|
|
float m_videoFPSq; //!< current video FPS sacaling factor
|
|
|
|
float m_videoFPSCount; //!< current video FPS fractional counter
|
|
|
|
int m_videoPrevFPSCount; //!< current video FPS previous integer counter
|
2017-03-09 17:17:14 -05:00
|
|
|
int m_videoLength; //!< current video length in frames
|
2017-03-08 20:09:31 -05:00
|
|
|
bool m_videoOK;
|
|
|
|
|
2017-03-05 21:39:34 -05:00
|
|
|
static const float m_blackLevel;
|
|
|
|
static const float m_spanLevel;
|
|
|
|
static const int m_levelNbSamples;
|
2017-03-08 13:04:10 -05:00
|
|
|
static const int m_nbBars; // number of bars in bar or chessboard patterns
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
void apply(bool force = false);
|
|
|
|
void pullFinalize(Complex& ci, Sample& sample);
|
|
|
|
void pullVideo(Real& sample);
|
|
|
|
void calculateLevel(Real& sample);
|
|
|
|
void modulateSample();
|
|
|
|
void applyStandard();
|
2017-03-08 17:48:14 -05:00
|
|
|
void openImage(const QString& fileName);
|
2017-03-08 20:09:31 -05:00
|
|
|
void openVideo(const QString& fileName);
|
2017-03-08 19:00:46 -05:00
|
|
|
void resizeImage();
|
2017-03-09 13:07:45 -05:00
|
|
|
void calculateVideoSizes();
|
|
|
|
void resizeVideo();
|
2017-03-09 17:17:14 -05:00
|
|
|
void seekVideoFileStream(int seekPercentage);
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
inline void pullImageLine(Real& sample)
|
|
|
|
{
|
|
|
|
if (m_horizontalCount < m_pointsPerSync) // sync pulse
|
|
|
|
{
|
|
|
|
sample = 0.0f; // ultra-black
|
|
|
|
}
|
|
|
|
else if (m_horizontalCount < m_pointsPerSync + m_pointsPerBP) // back porch
|
|
|
|
{
|
2017-03-06 12:40:14 -05:00
|
|
|
sample = m_blackLevel; // black
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
2017-03-06 12:40:14 -05:00
|
|
|
else if (m_horizontalCount < m_pointsPerSync + m_pointsPerBP + m_pointsPerImgLine)
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
|
|
|
int pointIndex = m_horizontalCount - (m_pointsPerSync + m_pointsPerBP);
|
2017-03-06 19:38:19 -05:00
|
|
|
int iLine = m_lineCount % m_nbLines2;
|
2017-03-08 17:26:58 -05:00
|
|
|
int oddity = m_lineCount < m_nbLines2 ? 0 : 1;
|
2017-03-09 13:07:45 -05:00
|
|
|
int iLineImage = iLine - m_nbSyncLinesHead - m_nbBlankLines;
|
2017-03-05 21:39:34 -05:00
|
|
|
|
|
|
|
switch(m_running.m_atvModInput)
|
|
|
|
{
|
2017-03-06 19:38:19 -05:00
|
|
|
case ATVModInputHBars:
|
|
|
|
sample = (pointIndex / m_pointsPerHBar) * m_hBarIncrement + m_blackLevel;
|
2017-03-05 21:39:34 -05:00
|
|
|
break;
|
2017-03-06 19:38:19 -05:00
|
|
|
case ATVModInputVBars:
|
|
|
|
sample = (iLine / m_linesPerVBar) * m_vBarIncrement + m_blackLevel;
|
|
|
|
break;
|
2017-03-08 13:04:10 -05:00
|
|
|
case ATVModInputChessboard:
|
2017-03-07 16:55:11 -05:00
|
|
|
sample = (((iLine / m_linesPerVBar)*5 + (pointIndex / m_pointsPerHBar)) % 2) * m_spanLevel * m_running.m_uniformLevel + m_blackLevel;
|
|
|
|
break;
|
2017-03-06 19:38:19 -05:00
|
|
|
case ATVModInputHGradient:
|
2017-03-06 12:40:14 -05:00
|
|
|
sample = (pointIndex / (float) m_pointsPerImgLine) * m_spanLevel + m_blackLevel;
|
2017-03-05 21:39:34 -05:00
|
|
|
break;
|
2017-03-06 19:38:19 -05:00
|
|
|
case ATVModInputVGradient:
|
|
|
|
sample = ((iLine -5) / (float) m_nbImageLines2) * m_spanLevel + m_blackLevel;
|
|
|
|
break;
|
2017-03-08 13:04:10 -05:00
|
|
|
case ATVModInputImage:
|
2017-03-09 13:07:45 -05:00
|
|
|
if (!m_imageOK || (iLineImage < 0) || m_image.empty())
|
2017-03-08 17:26:58 -05:00
|
|
|
{
|
|
|
|
sample = m_spanLevel * m_running.m_uniformLevel + m_blackLevel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-09 13:07:45 -05:00
|
|
|
unsigned char pixv;
|
|
|
|
|
|
|
|
if (m_interlaced) {
|
|
|
|
pixv = m_image.at<unsigned char>(2*iLineImage + oddity, pointIndex); // row (y), col (x)
|
|
|
|
} else {
|
|
|
|
pixv = m_image.at<unsigned char>(iLineImage, pointIndex); // row (y), col (x)
|
|
|
|
}
|
|
|
|
|
2017-03-08 17:26:58 -05:00
|
|
|
sample = (pixv / 256.0f) * m_spanLevel + m_blackLevel;
|
|
|
|
}
|
|
|
|
break;
|
2017-03-09 13:07:45 -05:00
|
|
|
case ATVModInputVideo:
|
|
|
|
if (!m_videoOK || (iLineImage < 0) || m_frame.empty())
|
|
|
|
{
|
|
|
|
sample = m_spanLevel * m_running.m_uniformLevel + m_blackLevel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned char pixv;
|
|
|
|
|
|
|
|
if (m_interlaced) {
|
|
|
|
pixv = m_frame.at<unsigned char>(2*iLineImage + oddity, pointIndex); // row (y), col (x)
|
|
|
|
} else {
|
|
|
|
pixv = m_frame.at<unsigned char>(iLineImage, pointIndex); // row (y), col (x)
|
|
|
|
}
|
|
|
|
|
|
|
|
sample = (pixv / 256.0f) * m_spanLevel + m_blackLevel;
|
|
|
|
}
|
|
|
|
break;
|
2017-03-05 21:39:34 -05:00
|
|
|
case ATVModInputUniform:
|
|
|
|
default:
|
|
|
|
sample = m_spanLevel * m_running.m_uniformLevel + m_blackLevel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // front porch
|
|
|
|
{
|
|
|
|
sample = m_blackLevel; // black
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-06 12:40:14 -05:00
|
|
|
inline void pullVSyncLine(Real& sample)
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
int fieldLine = m_lineCount % m_nbLines2;
|
2017-03-05 21:39:34 -05:00
|
|
|
|
2017-03-08 17:26:58 -05:00
|
|
|
if (m_lineCount < m_nbLines2) // even
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
if (fieldLine < 2) // 0,1: Whole line "long" pulses
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
int halfIndex = m_horizontalCount % (m_nbHorizPoints/2);
|
|
|
|
|
|
|
|
if (halfIndex < (m_nbHorizPoints/2) - m_pointsPerSync) // ultra-black
|
|
|
|
{
|
|
|
|
sample = 0.0f;
|
|
|
|
}
|
|
|
|
else // black
|
|
|
|
{
|
|
|
|
sample = m_blackLevel;
|
|
|
|
}
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
else if (fieldLine == 2) // long pulse then equalizing pulse
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
if (m_horizontalCount < (m_nbHorizPoints/2) - m_pointsPerSync)
|
|
|
|
{
|
|
|
|
sample = 0.0f; // ultra-black
|
|
|
|
}
|
|
|
|
else if (m_horizontalCount < (m_nbHorizPoints/2))
|
|
|
|
{
|
|
|
|
sample = m_blackLevel; // black
|
|
|
|
}
|
|
|
|
else if (m_horizontalCount < (m_nbHorizPoints/2) + m_pointsPerFSync)
|
|
|
|
{
|
|
|
|
sample = 0.0f; // ultra-black
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sample = m_blackLevel; // black
|
|
|
|
}
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
else if ((fieldLine < 5) || (fieldLine > m_nbLines2 - 3)) // Whole line equalizing pulses
|
2017-03-06 12:40:14 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
int halfIndex = m_horizontalCount % (m_nbHorizPoints/2);
|
|
|
|
|
|
|
|
if (halfIndex < m_pointsPerFSync) // ultra-black
|
|
|
|
{
|
|
|
|
sample = 0.0f;
|
|
|
|
}
|
|
|
|
else // black
|
|
|
|
{
|
|
|
|
sample = m_blackLevel;
|
|
|
|
}
|
2017-03-06 12:40:14 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
else // black images
|
2017-03-06 12:40:14 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
if (m_horizontalCount < m_pointsPerSync)
|
|
|
|
{
|
|
|
|
sample = 0.0f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sample = m_blackLevel;
|
|
|
|
}
|
2017-03-06 12:40:14 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
}
|
|
|
|
else // odd
|
|
|
|
{
|
|
|
|
if (fieldLine < 1) // equalizing pulse then long pulse
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
if (m_horizontalCount < m_pointsPerFSync)
|
|
|
|
{
|
|
|
|
sample = 0.0f; // ultra-black
|
|
|
|
}
|
|
|
|
else if (m_horizontalCount < (m_nbHorizPoints/2))
|
|
|
|
{
|
|
|
|
sample = m_blackLevel; // black
|
|
|
|
}
|
|
|
|
else if (m_horizontalCount < m_nbHorizPoints - m_pointsPerSync)
|
|
|
|
{
|
|
|
|
sample = 0.0f; // ultra-black
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sample = m_blackLevel; // black
|
|
|
|
}
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
else if (fieldLine < 3) // Whole line "long" pulses
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
int halfIndex = m_horizontalCount % (m_nbHorizPoints/2);
|
|
|
|
|
|
|
|
if (halfIndex < (m_nbHorizPoints/2) - m_pointsPerSync) // ultra-black
|
|
|
|
{
|
|
|
|
sample = 0.0f;
|
|
|
|
}
|
|
|
|
else // black
|
|
|
|
{
|
|
|
|
sample = m_blackLevel;
|
|
|
|
}
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
else if ((fieldLine < 5) || (fieldLine > m_nbLines2 - 5)) // Whole line equalizing pulses
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
int halfIndex = m_horizontalCount % (m_nbHorizPoints/2);
|
|
|
|
|
|
|
|
if (halfIndex < m_pointsPerFSync) // ultra-black
|
|
|
|
{
|
|
|
|
sample = 0.0f;
|
|
|
|
}
|
|
|
|
else // black
|
|
|
|
{
|
|
|
|
sample = m_blackLevel;
|
|
|
|
}
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
2017-03-08 17:26:58 -05:00
|
|
|
else // black images
|
2017-03-05 21:39:34 -05:00
|
|
|
{
|
2017-03-08 17:26:58 -05:00
|
|
|
if (m_horizontalCount < m_pointsPerSync)
|
|
|
|
{
|
|
|
|
sample = 0.0f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sample = m_blackLevel;
|
|
|
|
}
|
2017-03-05 21:39:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLUGINS_CHANNELTX_MODATV_ATVMOD_H_ */
|