H.264 Codec for ESP32-S3
Loading...
Searching...
No Matches
esp_h264_intr_alloc.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#pragma once
8
9#include "esp_intr_alloc_stub.h"
10
12
13/* In Arduino shim use a dummy source 0 and no-op free */
14#define esp_h264_intr_alloc(flags, handler, arg, ret_handle) esp_intr_alloc(0, flags, handler, arg, ret_handle)
15#define esp_h264_intr_free(handler) (void)handler
intr_handle_t esp_h264_intr_hd_t
Definition: esp_h264_intr_alloc.h:11