forked from external-repos/ESP32-CAM-ONVIF
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();
|