mirror of
https://github.com/rzeldent/esp32cam-rtsp.git
synced 2025-11-14 04:04:02 +00:00
15 lines
226 B
C++
15 lines
226 B
C++
#pragma once
|
|
|
|
#include <jpg.h>
|
|
|
|
|
|
class micro_rtsp_streamer
|
|
{
|
|
public:
|
|
micro_rtsp_streamer();
|
|
void create_jpg_packet(const jpg jpg, uint32_t timestamp);
|
|
private :
|
|
|
|
uint32_t ssrc_;
|
|
uint16_t sequenceNumber_;
|
|
}; |