mirror of
https://github.com/John-Varghese-EH/ESP32-CAM-ONVIF.git
synced 2025-11-11 16:26:22 +00:00
15 lines
274 B
C
15 lines
274 B
C
#pragma once
|
|
#include <Arduino.h>
|
|
#include <WiFi.h>
|
|
#include "OV2640.h"
|
|
#include "CRtspSession.h"
|
|
#include "MyStreamer.h"
|
|
|
|
extern WiFiServer rtspServer;
|
|
extern OV2640 cam;
|
|
extern MyStreamer *streamer;
|
|
|
|
String getRTSPUrl();
|
|
void rtsp_server_start();
|
|
void rtsp_server_loop();
|