Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libffmpegthumbnailer: update to 2.2.3 #1782

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions ci_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -512,24 +512,22 @@
},
"libffmpegthumbnailer": {
"alpine_packages": [
"ffmpeg4-dev"
"ffmpeg-dev"
],
"brew_packages": [
"ffmpeg@4"
"ffmpeg"
],
"debian_packages": [
"libavcodec-dev",
"libavfilter-dev",
"libavformat-dev",
"libavutil-dev"
],
"_comment": "ffmpeg4 is keg-only. Need to add pkgconfig path.",
"build_options": [
"pkg_config_path=/usr/local/opt/ffmpeg@4/lib/pkgconfig"
"msys_packages": [
"ffmpeg"
],
"_comment": "Broken with Windows because of a header issue",
"_comment": "MSVC needs ffmpeg to build",
"build_on": {
"msys2": false,
"windows": false
}
},
Expand Down
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -1657,6 +1657,7 @@
"libffmpegthumbnailer"
],
"versions": [
"2.2.3-1",
"2.2.2-4",
"2.2.2-3",
"2.2.2-2",
Expand Down
8 changes: 4 additions & 4 deletions subprojects/libffmpegthumbnailer.wrap
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[wrap-file]
directory = ffmpegthumbnailer-2.2.2
source_url = https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/2.2.2/ffmpegthumbnailer-2.2.2.tar.bz2
source_filename = ffmpegthumbnailer-2.2.2.tar.bz2
source_hash = 1cb24059c38223f657b300c84dd80491b7040d4b69471c4fea69be862bc99b5b
directory = ffmpegthumbnailer-2.2.3
source_url = https://github.com/dirkvdb/ffmpegthumbnailer/archive/refs/tags/2.2.3.tar.gz
source_filename = ffmpegthumbnailer-2.2.3.tar.gz
source_hash = 8c9b9057c6cc8bce9d11701af224c8139c940f734c439a595525e073b09d19b8
patch_directory = libffmpegthumbnailer

[provide]
Expand Down
6 changes: 1 addition & 5 deletions subprojects/packagefiles/libffmpegthumbnailer/meson.build
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
project(
'ffmpegthumbnailer',
'cpp',
version: '2.2.2',
version: '2.2.3',
default_options: ['warning_level=0', 'cpp_std=c++11'],
meson_version: '>=0.54.1',
)

if host_machine.system() == 'windows'
error('Windows is not supported currently. See https://github.com/dirkvdb/ffmpegthumbnailer/commit/c2fba253f3751f9bb825defec66109e5d33c74d6')
endif

libavcodec_dep = dependency('libavcodec')
libavfilter_dep = dependency('libavfilter')
libavformat_dep = dependency('libavformat')
Expand Down
Loading