diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2022-07-23 17:08:44 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2023-03-01 00:26:08 +0000 |
commit | 25397ffa875a8f3c3744fe9750b6198c6c51e1d2 (patch) | |
tree | 8e039ecb5eb6bc939723f899f0850575f002eeb9 /recipes | |
parent | 5dde88a9f2d3fe509475f10926fbd990fe899279 (diff) |
ffmpeg: update to 6.0
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1128>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/ffmpeg.recipe | 4 | ||||
-rw-r--r-- | recipes/gst-libav-1.0.recipe | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/recipes/ffmpeg.recipe b/recipes/ffmpeg.recipe index c613cd4a..b5f7a0a3 100644 --- a/recipes/ffmpeg.recipe +++ b/recipes/ffmpeg.recipe @@ -3,11 +3,11 @@ from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): name = 'ffmpeg' - version = '5.0.1' + version = '6.0' licenses = [License.LGPLv2_1Plus] stype = SourceType.TARBALL url = 'https://ffmpeg.org/releases/%(name)s-%(version)s.tar.xz' - tarball_checksum = 'ef2efae259ce80a240de48ec85ecb062cecca26e4352ffb3fda562c21a93007b' + tarball_checksum = '57be87c22d9b49c112b6d24bc67d42508660e6b718b3db89c44e47e289137082' patches = [ name + '/0001-pkgconfig-fix-generation-to-use-prefix.patch', ] diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe index 0cbb57cb..730cf22b 100644 --- a/recipes/gst-libav-1.0.recipe +++ b/recipes/gst-libav-1.0.recipe @@ -13,5 +13,7 @@ class Recipe(custom.GStreamer): ] def prepare(self): + if not self.using_msvc(): + self.append_env('CFLAGS', '-Wno-deprecated-declarations') if self.config.variants.nodebug: self.append_env('CFLAGS', '-DGST_LEVEL_MAX=GST_LEVEL_FIXME') |