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.
253 lines
8.6 KiB
253 lines
8.6 KiB
/*****************************************************************************
|
|
* SDIStream.hpp: SDI sout module for vlc
|
|
*****************************************************************************
|
|
* Copyright © 2018 VideoLabs, VideoLAN and VideoLAN Authors
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
#ifndef SDISTREAM_HPP
|
|
#define SDISTREAM_HPP
|
|
|
|
#include <vlc_common.h>
|
|
#include <vlc_threads.h>
|
|
#include <vlc_filter.h>
|
|
#include <vlc_aout.h>
|
|
#include <vlc_codec.h>
|
|
#include <queue>
|
|
#include <string>
|
|
#include <list>
|
|
|
|
namespace sdi_sout
|
|
{
|
|
class AbstractStreamOutputBuffer
|
|
{
|
|
public:
|
|
AbstractStreamOutputBuffer();
|
|
virtual ~AbstractStreamOutputBuffer();
|
|
virtual void FlushQueued() = 0;
|
|
virtual void Enqueue(void *) = 0;
|
|
virtual void * Dequeue() = 0;
|
|
virtual void Drain() = 0;
|
|
};
|
|
|
|
class AbstractQueueStreamOutputBuffer : public AbstractStreamOutputBuffer
|
|
{
|
|
public:
|
|
AbstractQueueStreamOutputBuffer();
|
|
~AbstractQueueStreamOutputBuffer();
|
|
virtual void Enqueue(void *);
|
|
virtual void * Dequeue();
|
|
virtual void Drain();
|
|
virtual bool isEOS();
|
|
|
|
protected:
|
|
bool b_draining;
|
|
vlc_mutex_t buffer_mutex;
|
|
std::queue<void *> queued;
|
|
};
|
|
|
|
class BlockStreamOutputBuffer : public AbstractQueueStreamOutputBuffer
|
|
{
|
|
public:
|
|
BlockStreamOutputBuffer();
|
|
virtual ~BlockStreamOutputBuffer();
|
|
virtual void FlushQueued();
|
|
};
|
|
|
|
class PictureStreamOutputBuffer : public AbstractQueueStreamOutputBuffer
|
|
{
|
|
public:
|
|
PictureStreamOutputBuffer();
|
|
virtual ~PictureStreamOutputBuffer();
|
|
virtual void FlushQueued();
|
|
vlc_tick_t NextPictureTime();
|
|
virtual void Enqueue(void *); /* reimpl */
|
|
virtual void * Dequeue(); /* reimpl */
|
|
|
|
private:
|
|
vlc_sem_t pool_semaphore;
|
|
};
|
|
|
|
class StreamID
|
|
{
|
|
public:
|
|
StreamID(int);
|
|
StreamID(int, int);
|
|
StreamID(const StreamID &) = default;
|
|
StreamID& operator=(const StreamID &);
|
|
bool operator==(const StreamID &) const;
|
|
std::string toString() const;
|
|
|
|
private:
|
|
int stream_id;
|
|
unsigned sequence_id;
|
|
static unsigned i_next_sequence_id;
|
|
};
|
|
|
|
class AbstractStream
|
|
{
|
|
public:
|
|
AbstractStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~AbstractStream();
|
|
virtual bool init(const es_format_t *) = 0;
|
|
virtual int Send(block_t*) = 0;
|
|
virtual void Drain() = 0;
|
|
virtual void Flush() = 0;
|
|
virtual bool ReachedPlaybackTime(vlc_tick_t) = 0;
|
|
virtual bool isEOS() = 0;
|
|
const StreamID & getID() const;
|
|
|
|
protected:
|
|
vlc_object_t *p_stream;
|
|
AbstractStreamOutputBuffer *outputbuffer;
|
|
|
|
private:
|
|
StreamID id;
|
|
};
|
|
|
|
class AbstractDecodedStream : public AbstractStream
|
|
{
|
|
public:
|
|
AbstractDecodedStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~AbstractDecodedStream();
|
|
virtual bool init(const es_format_t *); /* impl */
|
|
virtual int Send(block_t*);
|
|
virtual void Flush();
|
|
virtual void Drain();
|
|
virtual bool ReachedPlaybackTime(vlc_tick_t); /* impl */
|
|
virtual bool isEOS(); /* impl */
|
|
void setOutputFormat(const es_format_t *);
|
|
|
|
protected:
|
|
decoder_t *p_decoder;
|
|
virtual void setCallbacks() = 0;
|
|
static void *decoderThreadCallback(void *);
|
|
void decoderThread();
|
|
void deinit();
|
|
virtual void ReleaseDecoder();
|
|
es_format_t requestedoutput;
|
|
std::queue<block_t *> inputQueue;
|
|
vlc_mutex_t inputLock;
|
|
vlc_cond_t inputWait;
|
|
vlc_thread_t thread;
|
|
bool threadEnd;
|
|
enum
|
|
{
|
|
DECODING,
|
|
DRAINING,
|
|
DRAINED,
|
|
FAILED,
|
|
} status;
|
|
vlc_tick_t pcr;
|
|
};
|
|
|
|
class VideoDecodedStream : public AbstractDecodedStream
|
|
{
|
|
public:
|
|
VideoDecodedStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~VideoDecodedStream();
|
|
virtual void setCallbacks();
|
|
void setCaptionsOutputBuffer(AbstractStreamOutputBuffer *);
|
|
|
|
private:
|
|
static void VideoDecCallback_queue(decoder_t *, picture_t *);
|
|
static void VideoDecCallback_queue_cc( decoder_t *, block_t *,
|
|
const decoder_cc_desc_t * );
|
|
static vlc_decoder_device * VideoDecCallback_get_device(decoder_t *);
|
|
static int VideoDecCallback_update_format(decoder_t *, vlc_video_context *);
|
|
filter_chain_t * VideoFilterCreate(const es_format_t *, vlc_video_context *);
|
|
virtual void ReleaseDecoder();
|
|
void Output(picture_t *);
|
|
void QueueCC(block_t *);
|
|
filter_chain_t *p_filters_chain;
|
|
AbstractStreamOutputBuffer *captionsOutputBuffer;
|
|
};
|
|
|
|
class AudioDecodedStream : public AbstractDecodedStream
|
|
{
|
|
public:
|
|
AudioDecodedStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~AudioDecodedStream();
|
|
virtual void setCallbacks();
|
|
|
|
private:
|
|
static void AudioDecCallback_queue(decoder_t *, block_t *);
|
|
static int AudioDecCallback_update_format(decoder_t *);
|
|
aout_filters_t *AudioFiltersCreate(const es_format_t *);
|
|
void Output(block_t *);
|
|
aout_filters_t *p_filters;
|
|
};
|
|
|
|
class AbstractRawStream : public AbstractStream
|
|
{
|
|
public:
|
|
AbstractRawStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~AbstractRawStream();
|
|
virtual int Send(block_t*); /* impl */
|
|
virtual void Flush(); /* impl */
|
|
virtual void Drain(); /* impl */
|
|
virtual bool ReachedPlaybackTime(vlc_tick_t); /* impl */
|
|
virtual bool isEOS(); /* impl */
|
|
|
|
protected:
|
|
vlc_mutex_t buffer_mutex;
|
|
vlc_tick_t pcr;
|
|
bool b_draining;
|
|
void FlushQueued();
|
|
};
|
|
|
|
class AbstractReorderedStream : public AbstractRawStream
|
|
{
|
|
public:
|
|
AbstractReorderedStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~AbstractReorderedStream();
|
|
virtual int Send(block_t*); /* impl */
|
|
virtual void Flush(); /* impl */
|
|
virtual void Drain(); /* impl */
|
|
void setReorder(size_t);
|
|
|
|
protected:
|
|
std::list<block_t *> reorder;
|
|
size_t reorder_depth;
|
|
bool do_reorder;
|
|
};
|
|
|
|
class AudioCompressedStream : public AbstractRawStream
|
|
{
|
|
public:
|
|
AudioCompressedStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~AudioCompressedStream();
|
|
virtual int Send(block_t*); /* reimpl */
|
|
virtual bool init(const es_format_t *); /* impl */
|
|
};
|
|
|
|
class CaptionsStream : public AbstractReorderedStream
|
|
{
|
|
public:
|
|
CaptionsStream(vlc_object_t *, const StreamID &,
|
|
AbstractStreamOutputBuffer *);
|
|
virtual ~CaptionsStream();
|
|
virtual bool init(const es_format_t *); /* impl */
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|