feat(esp_h264): Added esp_h264 encoder and decoder

This commit is contained in:
houhaiyan
2025-06-04 21:59:27 +08:00
parent d835854c8f
commit fa54de736e
13 changed files with 971 additions and 0 deletions

View 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')