From def6b62eecb427601f78cc7fe8088a8ef59f32fa Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Sun, 22 Feb 2026 20:04:21 -0600 Subject: h264: Print NAL units, parse SPS,PPS --- h264/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 h264/CMakeLists.txt (limited to 'h264/CMakeLists.txt') diff --git a/h264/CMakeLists.txt b/h264/CMakeLists.txt new file mode 100644 index 0000000..9ba7a72 --- /dev/null +++ b/h264/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) +project(h264 C) + +include("${CMAKE_CURRENT_LIST_DIR}/../common/c_cpp/CMakeLists.txt") + +add_executable(h264 h264.c) +target_link_libraries(h264 PRIVATE common) -- cgit v1.2.3