scrcpy/app/src/recorder.h

48 lines
1 KiB
C
Raw Normal View History

2022-02-02 19:37:28 +01:00
#ifndef SC_RECORDER_H
#define SC_RECORDER_H
#include "common.h"
#include <stdbool.h>
#include <libavformat/avformat.h>
#include "coords.h"
#include "options.h"
#include "trait/packet_sink.h"
2019-11-24 11:53:00 +01:00
#include "util/queue.h"
#include "util/thread.h"
2022-02-02 19:37:28 +01:00
struct sc_record_packet {
AVPacket *packet;
2022-02-02 19:37:28 +01:00
struct sc_record_packet *next;
};
2022-02-02 19:37:28 +01:00
struct sc_recorder_queue SC_QUEUE(struct sc_record_packet);
2022-02-02 19:37:28 +01:00
struct sc_recorder {
struct sc_packet_sink packet_sink; // packet sink trait
char *filename;
enum sc_record_format format;
AVFormatContext *ctx;
struct sc_size declared_frame_size;
bool header_written;
sc_thread thread;
sc_mutex mutex;
sc_cond queue_cond;
bool stopped; // set on recorder_close()
bool failed; // set on packet write failure
2022-02-02 19:37:28 +01:00
struct sc_recorder_queue queue;
};
bool
2022-02-02 19:37:28 +01:00
sc_recorder_init(struct sc_recorder *recorder, const char *filename,
enum sc_record_format format,
struct sc_size declared_frame_size);
void
2022-02-02 19:37:28 +01:00
sc_recorder_destroy(struct sc_recorder *recorder);
#endif