- OMX_Init/OMX_Deinit managed per encoder instance lifecycle - Proper error handling in constructor, encoder_open, encoder_close - Null guards on done_out.pop() and handle in destructor - Codec config written directly to codecpar (no codec_ctx) - ffmpeg faststart remux on segment close - Crash handler in dashcamd for diagnostics - DashcamFrames param for live frame count in status window Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
70 lines
2.0 KiB
C++
Executable File
70 lines
2.0 KiB
C++
Executable File
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <OMX_Component.h>
|
|
extern "C" {
|
|
#include <libavformat/avformat.h>
|
|
}
|
|
|
|
#include "common/queue.h"
|
|
|
|
// OmxEncoder, lossey codec using hardware H.264
|
|
class OmxEncoder {
|
|
public:
|
|
OmxEncoder(const char* path, int width, int height, int fps, int bitrate);
|
|
~OmxEncoder();
|
|
|
|
int encode_frame_rgba(const uint8_t *ptr, int in_width, int in_height, uint64_t ts);
|
|
int encode_frame_nv12(const uint8_t *y_ptr, int y_stride, const uint8_t *uv_ptr, int uv_stride,
|
|
int in_width, int in_height, uint64_t ts);
|
|
void encoder_open(const char* filename);
|
|
void encoder_close();
|
|
|
|
// OMX callbacks
|
|
static OMX_ERRORTYPE event_handler(OMX_HANDLETYPE component, OMX_PTR app_data, OMX_EVENTTYPE event,
|
|
OMX_U32 data1, OMX_U32 data2, OMX_PTR event_data);
|
|
static OMX_ERRORTYPE empty_buffer_done(OMX_HANDLETYPE component, OMX_PTR app_data,
|
|
OMX_BUFFERHEADERTYPE *buffer);
|
|
static OMX_ERRORTYPE fill_buffer_done(OMX_HANDLETYPE component, OMX_PTR app_data,
|
|
OMX_BUFFERHEADERTYPE *buffer);
|
|
|
|
private:
|
|
void wait_for_state(OMX_STATETYPE state);
|
|
static void handle_out_buf(OmxEncoder *e, OMX_BUFFERHEADERTYPE *out_buf);
|
|
|
|
int width, height, fps;
|
|
char vid_path[1024];
|
|
char lock_path[1024];
|
|
bool is_open = false;
|
|
bool dirty = false;
|
|
int counter = 0;
|
|
|
|
std::string path;
|
|
FILE *of = nullptr;
|
|
|
|
size_t codec_config_len = 0;
|
|
uint8_t *codec_config = nullptr;
|
|
bool wrote_codec_config = false;
|
|
|
|
std::mutex state_lock;
|
|
std::condition_variable state_cv;
|
|
OMX_STATETYPE state = OMX_StateLoaded;
|
|
|
|
OMX_HANDLETYPE handle = nullptr;
|
|
|
|
std::vector<OMX_BUFFERHEADERTYPE *> in_buf_headers;
|
|
std::vector<OMX_BUFFERHEADERTYPE *> out_buf_headers;
|
|
|
|
uint64_t last_t = 0;
|
|
|
|
SafeQueue<OMX_BUFFERHEADERTYPE *> free_in;
|
|
SafeQueue<OMX_BUFFERHEADERTYPE *> done_out;
|
|
|
|
AVFormatContext *ofmt_ctx = nullptr;
|
|
AVStream *out_stream = nullptr;
|
|
};
|