H.264 Codec for ESP32-S3
Loading...
Searching...
No Matches
H264Config.h
Go to the documentation of this file.
1#pragma once
2#include "Arduino.h"
3
4#if defined(CONFIG_IDF_TARGET_ESP32S3)
5# define HAVE_ESP32S3
6#else
7# error "This library is only compatible with ESP32-S3. Please check your board configuration."
8#endif
9
10#ifdef __cplusplus
11#include "PSRAMAllocatorH264.h"
12#include "RAMAllocatorH264.h"
13
14#ifndef H264_DEFAULT_ALLOCATOR
15#define H264_DEFAULT_ALLOCATOR PSRAMAllocatorH264<uint8_t>
16#endif
17#endif