mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-17 02:02:05 +08:00
0240a62fd9
* add param that requests keyframe * set keyframe request to false on cleanup * clean * timing and errors * remove other changes * clean diff * clean diff * clean up live adaptation params and functions * better function names * fix syntax * remove unused var * clean diff
35 lines
764 B
C++
35 lines
764 B
C++
#pragma once
|
|
|
|
#include "common/queue.h"
|
|
#include "system/loggerd/encoder/encoder.h"
|
|
|
|
#define BUF_IN_COUNT 7
|
|
#define BUF_OUT_COUNT 6
|
|
|
|
class V4LEncoder : public VideoEncoder {
|
|
public:
|
|
V4LEncoder(const EncoderInfo &encoder_info, int in_width, int in_height);
|
|
~V4LEncoder();
|
|
int encode_frame(VisionBuf* buf, VisionIpcBufExtra *extra);
|
|
void encoder_open();
|
|
void encoder_close();
|
|
void set_bitrate(int bitrate);
|
|
void request_keyframe();
|
|
|
|
private:
|
|
int fd;
|
|
|
|
bool is_open = false;
|
|
int segment_num = -1;
|
|
int counter = 0;
|
|
int current_bitrate = -1;
|
|
|
|
SafeQueue<VisionIpcBufExtra> extras;
|
|
|
|
static void dequeue_handler(V4LEncoder *e);
|
|
std::thread dequeue_handler_thread;
|
|
|
|
VisionBuf buf_out[BUF_OUT_COUNT];
|
|
SafeQueue<unsigned int> free_buf_in;
|
|
};
|