5e8fa56e7a
PR #2948 <https://github.com/Genymobile/scrcpy/pull/2948> Signed-off-by: Bernhard Rosenkränzer <bero@lindev.ch> Signed-off-by: Romain Vimont <rom@rom1v.com>
43 lines
870 B
C
43 lines
870 B
C
#ifndef SC_V4L2_SINK_H
|
|
#define SC_V4L2_SINK_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include "coords.h"
|
|
#include "trait/frame_sink.h"
|
|
#include "video_buffer.h"
|
|
#include "util/tick.h"
|
|
|
|
struct sc_v4l2_sink {
|
|
struct sc_frame_sink frame_sink; // frame sink trait
|
|
|
|
struct sc_video_buffer vb;
|
|
AVFormatContext *format_ctx;
|
|
AVCodecContext *encoder_ctx;
|
|
|
|
char *device_name;
|
|
struct sc_size frame_size;
|
|
sc_tick buffering_time;
|
|
|
|
sc_thread thread;
|
|
sc_mutex mutex;
|
|
sc_cond cond;
|
|
bool has_frame;
|
|
bool stopped;
|
|
bool header_written;
|
|
|
|
AVFrame *frame;
|
|
AVPacket *packet;
|
|
};
|
|
|
|
bool
|
|
sc_v4l2_sink_init(struct sc_v4l2_sink *vs, const char *device_name,
|
|
struct sc_size frame_size, sc_tick buffering_time);
|
|
|
|
void
|
|
sc_v4l2_sink_destroy(struct sc_v4l2_sink *vs);
|
|
|
|
#endif
|