Fix Webcam compilation with `define USE_WEBCAM` but without `define ENABLE_RTSPSERVER` (#22686)

This commit is contained in:
Theo Arends 2024-12-20 11:07:52 +01:00
parent fde529fac4
commit 8311bff7ee
3 changed files with 8 additions and 5 deletions

View File

@ -11,12 +11,13 @@ All notable changes to this project will be documented in this file.
### Breaking Changed
### Changed
- ESP32 disable PSRAM check (and on restart some relay toggles) with `#define DISABLE_PSRAMCHECK` (#21266)
- ESP32 disable PSRAM check (and on restart some relay toggles) with `#define DISABLE_PSRAMCHECK true` (#21266)
- TLS disable ECDSA for MQTT to ensure we don't break fingerprints after #22649
### Fixed
- Berry Zigbee fix wrong attributes (#22684)
- Berry fix walrus operator
- Berry walrus operator (#22685)
- Webcam compilation with `define USE_WEBCAM` but without `define ENABLE_RTSPSERVER` (#22686)
### Removed

View File

@ -122,9 +122,11 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
### Breaking Changed
### Changed
- ESP32 disable PSRAM check (and on restart some relay toggles) with `#define DISABLE_PSRAMCHECK` [#21266](https://github.com/arendst/Tasmota/issues/21266)
- ESP32 disable PSRAM check (and on restart some relay toggles) with `#define DISABLE_PSRAMCHECK true` [#21266](https://github.com/arendst/Tasmota/issues/21266)
### Fixed
- Webcam compilation with `define USE_WEBCAM` but without `define ENABLE_RTSPSERVER` [#22686](https://github.com/arendst/Tasmota/issues/22686)
- Berry Zigbee fix wrong attributes [#22684](https://github.com/arendst/Tasmota/issues/22684)
- Berry walrus operator [#22685](https://github.com/arendst/Tasmota/issues/22685)
### Removed

View File

@ -159,7 +159,7 @@ struct {
uint16_t width;
uint16_t height;
uint8_t stream_active;
#ifndef USE_WEBCAM_SETUP_ONLY
#ifndef USE_WEBCAM_SETUP_ONLY
WiFiClient client;
ESP8266WebServer *CamServer;
struct PICSTORE picstore[MAX_PICSTORE];
@ -169,9 +169,9 @@ struct {
CRtspSession *rtsp_session;
WiFiClient rtsp_client;
uint8_t rtsp_start;
#endif // ENABLE_RTSPSERVER
OV2640 cam;
uint32_t rtsp_lastframe_time;
#endif // ENABLE_RTSPSERVER
#endif // USE_WEBCAM_SETUP_ONLY
} Wc;