mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-30 22:05:21 +00:00
feat(esp_h264): Added esp_h264 encoder and decoder
This commit is contained in:
17
examples/peripherals/h264/pytest_esp_h264.py
Normal file
17
examples/peripherals/h264/pytest_esp_h264.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
import pytest
|
||||
from pytest_embedded import Dut
|
||||
from pytest_embedded_idf.utils import idf_parametrize
|
||||
|
||||
|
||||
@pytest.mark.octal_psram
|
||||
@idf_parametrize('target', ['esp32s3'], indirect=['target'])
|
||||
def test_esp_h264_esp32s3(dut: Dut) -> None:
|
||||
dut.expect_exact('H264 process Completed successfully')
|
||||
|
||||
|
||||
@pytest.mark.generic
|
||||
@idf_parametrize('target', ['esp32p4'], indirect=['target'])
|
||||
def test_esp_h264_esp32p4(dut: Dut) -> None:
|
||||
dut.expect_exact('H264 process Completed successfully')
|
Reference in New Issue
Block a user