mirror of
https://github.com/mpromonet/v4l2rtspserver
synced 2024-11-08 01:10:33 +00:00
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
/* ---------------------------------------------------------------------------
|
|
** 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.
|
|
**
|
|
** ServerMediaSubsession.h
|
|
**
|
|
** -------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <string>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
// live555
|
|
#include <liveMedia.hh>
|
|
|
|
// forward declaration
|
|
class V4L2DeviceSource;
|
|
|
|
// ---------------------------------
|
|
// BaseServerMediaSubsession
|
|
// ---------------------------------
|
|
class BaseServerMediaSubsession
|
|
{
|
|
public:
|
|
BaseServerMediaSubsession(StreamReplicator* replicator): m_replicator(replicator) {};
|
|
|
|
public:
|
|
static FramedSource* createSource(UsageEnvironment& env, FramedSource * videoES, const std::string& format);
|
|
static RTPSink* createSink(UsageEnvironment& env, Groupsock * rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, const std::string& format);
|
|
char const* getAuxLine(V4L2DeviceSource* source,unsigned char rtpPayloadType);
|
|
|
|
protected:
|
|
StreamReplicator* m_replicator;
|
|
};
|
|
|