v4l2rtspserver/inc/V4l2DeviceSource.h

102 lines
2.8 KiB
C
Raw Normal View History

2014-07-20 14:02:14 +00:00
/* ---------------------------------------------------------------------------
** This software is in the public domain, furnished "as is", without technical
** support, and with no warranty, express or implied, as to its usefulness for
** any purpose.
**
2014-11-02 15:42:30 +00:00
** V4l2DeviceSource.h
2014-07-20 14:02:14 +00:00
**
2014-11-02 15:42:30 +00:00
** V4L2 live555 source
2014-07-20 14:02:14 +00:00
**
** -------------------------------------------------------------------------*/
#ifndef V4L2_DEVICE_SOURCE
#define V4L2_DEVICE_SOURCE
#include <string>
#include <list>
#include <iostream>
// live555
#include <liveMedia.hh>
// project
2014-11-02 15:42:30 +00:00
#include "V4l2Capture.h"
2014-07-20 14:02:14 +00:00
// ---------------------------------
// V4L2 FramedSource
// ---------------------------------
const char marker[] = {0,0,0,1};
class V4L2DeviceSource: public FramedSource
{
public:
// ---------------------------------
// Captured frame
// ---------------------------------
struct Frame
{
Frame(char* buffer, int size, timeval timestamp) : m_buffer(buffer), m_size(size), m_timestamp(timestamp) {};
2014-10-18 17:50:21 +00:00
Frame(const Frame&);
Frame& operator=(const Frame&);
2014-07-20 14:02:14 +00:00
~Frame() { delete m_buffer; };
char* m_buffer;
int m_size;
timeval m_timestamp;
};
// ---------------------------------
2014-08-17 15:29:08 +00:00
// Compute simple stats
2014-07-20 14:02:14 +00:00
// ---------------------------------
2014-08-17 14:42:26 +00:00
class Stats
2014-07-20 14:02:14 +00:00
{
public:
2014-08-17 14:42:26 +00:00
Stats(const std::string & msg) : m_fps(0), m_fps_sec(0), m_size(0), m_msg(msg) {};
2014-07-20 14:02:14 +00:00
public:
2014-08-17 15:39:52 +00:00
int notify(int tv_sec, int framesize, int verbose);
2014-07-20 14:02:14 +00:00
protected:
int m_fps;
int m_fps_sec;
2014-08-17 14:42:26 +00:00
int m_size;
2014-07-20 14:02:14 +00:00
const std::string m_msg;
};
public:
2014-11-02 15:42:30 +00:00
static V4L2DeviceSource* createNew(UsageEnvironment& env, V4L2DeviceParameters params, V4l2Capture * device, const std::string &outputFIle, unsigned int queueSize, int verbose) ;
2014-07-20 14:02:14 +00:00
std::string getAuxLine() { return m_auxLine; };
protected:
2014-11-02 15:42:30 +00:00
V4L2DeviceSource(UsageEnvironment& env, V4L2DeviceParameters params, V4l2Capture * device, const std::string &outputFIle, unsigned int queueSize, int verbose);
2014-07-20 14:02:14 +00:00
virtual ~V4L2DeviceSource();
protected:
2014-07-20 14:02:14 +00:00
static void deliverFrameStub(void* clientData) {((V4L2DeviceSource*) clientData)->deliverFrame();};
void deliverFrame();
static void incomingPacketHandlerStub(void* clientData, int mask) { ((V4L2DeviceSource*) clientData)->getNextFrame(); };
void getNextFrame();
bool processConfigrationFrame(char * frame, int frameSize);
void processFrame(char * frame, int &frameSize, const timeval &ref);
void queueFrame(char * frame, int frameSize, const timeval &tv);
2014-08-16 21:37:40 +00:00
// overide FramedSource
virtual void doGetNextFrame();
virtual void doStopGettingFrames();
2014-08-16 21:37:40 +00:00
protected:
2014-07-20 14:02:14 +00:00
V4L2DeviceParameters m_params;
std::list<Frame*> m_captureQueue;
2014-08-17 14:42:26 +00:00
Stats m_in;
Stats m_out;
2014-07-20 14:02:14 +00:00
EventTriggerId m_eventTriggerId;
FILE* m_outfile;
std::string m_auxLine;
2014-11-02 15:42:30 +00:00
V4l2Capture * m_device;
std::string m_outputFIle;
2014-10-11 19:07:53 +00:00
unsigned int m_queueSize;
2014-09-07 17:02:18 +00:00
int m_verbose;
2014-07-20 14:02:14 +00:00
};
2014-10-11 19:07:53 +00:00
#endif