Initial commit
This commit is contained in:
@@ -0,0 +1,183 @@
|
||||
# This file is a part of media_kit (https://github.com/media-kit/media-kit).
|
||||
#
|
||||
# Copyright © 2021 & onwards, Hitesh Kumar Saini <saini123hitesh@gmail.com>.
|
||||
# All rights reserved.
|
||||
# Use of this source code is governed by MIT license that can be found in the LICENSE file.
|
||||
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
|
||||
# This option is read by the other packages which are part of package:media_kit.
|
||||
option(MEDIA_KIT_LIBS_AVAILABLE "package:media_kit libraries are available." ON)
|
||||
|
||||
set(PROJECT_NAME "media_kit_libs_windows_video")
|
||||
project(${PROJECT_NAME} LANGUAGES CXX)
|
||||
|
||||
# Deal with MSVC incompatiblity
|
||||
add_compile_definitions(_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR)
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
function(download_and_verify url md5 locationForArchive)
|
||||
# Check if the archive exists.
|
||||
if(EXISTS "${locationForArchive}")
|
||||
file(MD5 "${locationForArchive}" ARCHIVE_MD5)
|
||||
|
||||
# If MD5 doesn't match, delete the archive to download again.
|
||||
if(NOT md5 STREQUAL ARCHIVE_MD5)
|
||||
file(REMOVE "${locationForArchive}")
|
||||
message(STATUS "MD5 mismatch. File deleted.")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Download the archive if it doesn't exist.
|
||||
if(NOT EXISTS "${locationForArchive}")
|
||||
message(STATUS "Downloading archive from ${url}...")
|
||||
file(DOWNLOAD "${url}" "${locationForArchive}")
|
||||
message(STATUS "Downloaded archive to ${locationForArchive}.")
|
||||
|
||||
# Verify MD5 of the newly downloaded file.
|
||||
file(MD5 "${locationForArchive}" ARCHIVE_MD5)
|
||||
|
||||
if(md5 STREQUAL ARCHIVE_MD5)
|
||||
message(STATUS "${locationForArchive} Verification successful.")
|
||||
else()
|
||||
message(FATAL_ERROR "${locationForArchive} Integrity check failed, please try to re-build project again.")
|
||||
endif()
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(check_directory_exists_and_not_empty dir result_var)
|
||||
# Check if the directory exists
|
||||
if(EXISTS "${dir}")
|
||||
# Check if the directory is not empty
|
||||
file(GLOB dir_contents "${dir}/*")
|
||||
|
||||
if(dir_contents)
|
||||
set(${result_var} TRUE PARENT_SCOPE)
|
||||
else()
|
||||
set(${result_var} FALSE PARENT_SCOPE)
|
||||
message(STATUS "Directory ${dir} exists but is empty!")
|
||||
endif()
|
||||
else()
|
||||
set(${result_var} FALSE PARENT_SCOPE)
|
||||
message(STATUS "Directory ${dir} does not exist!")
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# libmpv archive containing the pre-built shared libraries & headers.
|
||||
#
|
||||
# Vendored fork: pinned to a zhongfly/mpv-winbuild full build so that libmpv's
|
||||
# bundled FFmpeg ships the truehd audio decoder and the hdmv_pgs_subtitle
|
||||
# bitmap decoder — both are missing from upstream media-kit's stripped
|
||||
# allow-listed build (media-kit/media-kit#1269 / #1371). See the vendored
|
||||
# plugin README for the rationale and follow-ups.
|
||||
set(LIBMPV "mpv-dev-x86_64-20260711-git-e5486b96d7.7z")
|
||||
|
||||
# Download URL & MD5 hash of the libmpv archive.
|
||||
set(LIBMPV_URL "https://github.com/zhongfly/mpv-winbuild/releases/download/2026-07-11-e5486b96d7/${LIBMPV}")
|
||||
set(LIBMPV_MD5 "32c8d72df54259bcce914aeb620db261")
|
||||
|
||||
# Download location of the libmpv archive.
|
||||
set(LIBMPV_ARCHIVE "${CMAKE_BINARY_DIR}/${LIBMPV}")
|
||||
set(LIBMPV_SRC "${CMAKE_BINARY_DIR}/libmpv")
|
||||
|
||||
download_and_verify(
|
||||
${LIBMPV_URL}
|
||||
${LIBMPV_MD5}
|
||||
${LIBMPV_ARCHIVE}
|
||||
)
|
||||
|
||||
check_directory_exists_and_not_empty(${LIBMPV_SRC} LIBMPV_SRC_VALID)
|
||||
|
||||
# Extract the libmpv archive.
|
||||
if(NOT LIBMPV_SRC_VALID)
|
||||
message(STATUS "Extracting ${LIBMPV}...")
|
||||
make_directory("${LIBMPV_SRC}")
|
||||
add_custom_target("${PROJECT_NAME}_LIBMPV_EXTRACT" ALL)
|
||||
add_custom_command(
|
||||
TARGET "${PROJECT_NAME}_LIBMPV_EXTRACT"
|
||||
COMMAND "${CMAKE_COMMAND}" -E tar xzf "\"${LIBMPV_ARCHIVE}\""
|
||||
COMMAND xcopy "\"${LIBMPV_SRC}/include/mpv\"" "\"${LIBMPV_SRC}/mpv\"" /E /H /C /I
|
||||
COMMAND rmdir "\"${LIBMPV_SRC}/include\"" /S /Q
|
||||
COMMAND ren "\"${LIBMPV_SRC}/mpv\"" "\"include\""
|
||||
WORKING_DIRECTORY "${LIBMPV_SRC}"
|
||||
)
|
||||
endif()
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
# ANGLE archive containing the pre-built shared libraries & headers.
|
||||
set(ANGLE "ANGLE.7z")
|
||||
|
||||
# Download URL & MD5 hash of the ANGLE archive.
|
||||
set(ANGLE_URL "https://github.com/alexmercerind/flutter-windows-ANGLE-OpenGL-ES/releases/download/v1.0.1/ANGLE.7z")
|
||||
set(ANGLE_MD5 "e866f13e8d552348058afaafe869b1ed")
|
||||
|
||||
# Download location of the ANGLE archive.
|
||||
set(ANGLE_ARCHIVE "${CMAKE_BINARY_DIR}/${ANGLE}")
|
||||
set(ANGLE_SRC "${CMAKE_BINARY_DIR}/ANGLE")
|
||||
|
||||
download_and_verify(
|
||||
${ANGLE_URL}
|
||||
${ANGLE_MD5}
|
||||
${ANGLE_ARCHIVE}
|
||||
)
|
||||
|
||||
check_directory_exists_and_not_empty(${ANGLE_SRC} ANGLE_SRC_VALID)
|
||||
|
||||
# Extract the ANGLE archive.
|
||||
if(NOT ANGLE_SRC_VALID)
|
||||
message(STATUS "Extracting ${ANGLE}...")
|
||||
make_directory("${ANGLE_SRC}")
|
||||
add_custom_target("${PROJECT_NAME}_ANGLE_EXTRACT" ALL)
|
||||
add_custom_command(
|
||||
TARGET "${PROJECT_NAME}_ANGLE_EXTRACT"
|
||||
COMMAND "${CMAKE_COMMAND}" -E tar xzf "\"${ANGLE_ARCHIVE}\""
|
||||
WORKING_DIRECTORY "${ANGLE_SRC}"
|
||||
)
|
||||
endif()
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
set(PLUGIN_NAME "media_kit_libs_windows_video_plugin")
|
||||
|
||||
add_library(
|
||||
${PLUGIN_NAME} SHARED
|
||||
"include/media_kit_libs_windows_video/media_kit_libs_windows_video_plugin_c_api.h"
|
||||
"media_kit_libs_windows_video_plugin_c_api.cpp"
|
||||
)
|
||||
|
||||
apply_standard_settings(${PLUGIN_NAME})
|
||||
|
||||
set_target_properties(
|
||||
${PLUGIN_NAME}
|
||||
PROPERTIES
|
||||
CXX_VISIBILITY_PRESET
|
||||
hidden
|
||||
)
|
||||
target_compile_definitions(
|
||||
${PLUGIN_NAME}
|
||||
PRIVATE
|
||||
FLUTTER_PLUGIN_IMPL
|
||||
)
|
||||
|
||||
target_include_directories(
|
||||
${PLUGIN_NAME} INTERFACE
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/include"
|
||||
)
|
||||
target_link_libraries(
|
||||
${PLUGIN_NAME}
|
||||
PRIVATE
|
||||
flutter
|
||||
flutter_wrapper_plugin
|
||||
)
|
||||
|
||||
set(
|
||||
media_kit_libs_windows_video_bundled_libraries
|
||||
"${LIBMPV_SRC}/libmpv-2.dll"
|
||||
"${ANGLE_SRC}/d3dcompiler_47.dll"
|
||||
"${ANGLE_SRC}/libEGL.dll"
|
||||
"${ANGLE_SRC}/libGLESv2.dll"
|
||||
"${ANGLE_SRC}/vk_swiftshader.dll"
|
||||
"${ANGLE_SRC}/vulkan-1.dll"
|
||||
"${ANGLE_SRC}/zlib.dll"
|
||||
PARENT_SCOPE
|
||||
)
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
#ifndef FLUTTER_PLUGIN_MEDIA_KIT_LIBS_WINDOWS_VIDEO_PLUGIN_C_API_H_
|
||||
#define FLUTTER_PLUGIN_MEDIA_KIT_LIBS_WINDOWS_VIDEO_PLUGIN_C_API_H_
|
||||
|
||||
#include <flutter_plugin_registrar.h>
|
||||
|
||||
#ifdef FLUTTER_PLUGIN_IMPL
|
||||
#define FLUTTER_PLUGIN_EXPORT __declspec(dllexport)
|
||||
#else
|
||||
#define FLUTTER_PLUGIN_EXPORT __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT void
|
||||
MediaKitLibsWindowsVideoPluginCApiRegisterWithRegistrar(
|
||||
FlutterDesktopPluginRegistrarRef registrar);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // FLUTTER_PLUGIN_MEDIA_KIT_LIBS_WINDOWS_VIDEO_PLUGIN_C_API_H_
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
#include "include/media_kit_libs_windows_video/media_kit_libs_windows_video_plugin_c_api.h"
|
||||
|
||||
#include <flutter/plugin_registrar_windows.h>
|
||||
|
||||
void MediaKitLibsWindowsVideoPluginCApiRegisterWithRegistrar(
|
||||
FlutterDesktopPluginRegistrarRef) {}
|
||||
Reference in New Issue
Block a user