-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 更新了`action.yml`文件中的Qt版本至6.7.2。 - 调整了`qt.cmake`文件中的Qt路径,以适应Windows和Linux上的新版本。 - 在`mainwindow.cpp`和`mainwindow.cc`文件中,增加了音视频轨道选择功能,允许用户选择无轨道选项。 - 修正了`createtoneMappingMenu`函数的命名,以符合C++的命名规范。 - 在`mediainfo.hpp`中,将`TraskInfo`结构体的`id`成员类型从`int`更改为`QVariant`,以支持更灵活的类型。 - 更新了`vcpkg.json`文件,增加了对ffmpeg的特定功能支持,并更新了内置基线的哈希值。
- Loading branch information
Showing
6 changed files
with
57 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
if(CMAKE_HOST_WIN32) | ||
list(APPEND CMAKE_PREFIX_PATH "C:\\Qt\\6.7.1\\msvc2019_64") | ||
list(APPEND CMAKE_PREFIX_PATH "C:\\Qt\\6.7.2\\msvc2019_64") | ||
elseif(CMAKE_HOST_APPLE) | ||
|
||
elseif(CMAKE_HOST_LINUX) | ||
list(APPEND CMAKE_PREFIX_PATH "/opt/Qt/6.7.1/gcc_64") | ||
list(APPEND CMAKE_PREFIX_PATH "/opt/Qt/6.7.2/gcc_64") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", | ||
"name": "qt-media", | ||
"version": "0.0.1", | ||
"description": "manifest", | ||
"dependencies": [ | ||
"breakpad", | ||
"crashpad", | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", | ||
"name": "qt-media", | ||
"version": "0.0.1", | ||
"description": "manifest", | ||
"dependencies": [ | ||
"breakpad", | ||
"crashpad", | ||
{ | ||
"name": "ffmpeg", | ||
"features": [ | ||
"opengl", | ||
"ass", | ||
"bzip2", | ||
"freetype", | ||
"fribidi", | ||
"zlib", | ||
"gpl", | ||
"ffmpeg", | ||
"ffplay", | ||
"ffprobe", | ||
{ | ||
"name": "ffmpeg", | ||
"features": [ | ||
"opengl", | ||
"ass", | ||
"bzip2", | ||
"freetype", | ||
"fribidi", | ||
"zlib", | ||
"gpl", | ||
"ffmpeg", | ||
"ffplay", | ||
"ffprobe", | ||
{ | ||
"name": "qsv", | ||
"platform": "windows" | ||
}, | ||
{ | ||
"name": "amf", | ||
"platform": "windows | linux" | ||
}, | ||
{ | ||
"name": "nvcodec", | ||
"platform": "windows | linux" | ||
} | ||
] | ||
"name": "qsv", | ||
"platform": "windows" | ||
}, | ||
{ | ||
"name": "amf", | ||
"platform": "windows | linux" | ||
}, | ||
{ | ||
"name": "nvcodec", | ||
"platform": "windows | linux" | ||
} | ||
], | ||
"builtin-baseline": "dee924de74e81388140a53c32a919ecec57d20ab" | ||
} | ||
] | ||
} | ||
], | ||
"builtin-baseline": "c4467cb686f92671f0172aa8299a77d908175b4e" | ||
} |