Skip to content

Commit fcd98e9

Browse files
committed
* Upgrade presets for FFmpeg 9.0
1 parent 2d7cfbd commit fcd98e9

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Add new `SampleOnnxMNIST` in samples for TensorRT ([pull #1742](https://github.com/bytedeco/javacpp-presets/pull/1742))
1111
* Fix loading issues with `libomp.dylib` and `libiomp5.dylib` for DNNL and PyTorch on Mac
1212
* Include `model_package_loader.h` header file in presets for PyTorch ([issue #1729](https://github.com/bytedeco/javacpp-presets/issues/1729))
13-
* Upgrade presets for OpenCV 4.14.0, FFmpeg 8.1.2, MKL 2026.1.0, DNNL 3.13, OpenBLAS 0.3.34, CMINPACK 1.3.14, CUDA 13.3.1, cuDNN 9.25.0.15, NCCL 2.30.7, nvCOMP 5.3.0.16, NVIDIA Video Codec SDK 13.1.15, OpenCL 3.1.1, FFTW 3.3.11, CPython 3.14.6, NumPy 2.5.1, SciPy 1.18.0, LLVM 22.1.8, libffi 3.7.1, Tesseract 5.5.3, PyTorch 2.13.0, TensorFlow Lite 2.21.0, TensorRT 11.2.1.2, Triton Inference Server 2.71.0, ONNX 1.22.0, ONNX Runtime 1.28.0 ([pull #1791](https://github.com/bytedeco/javacpp-presets/pull/1791)), and their dependencies
13+
* Upgrade presets for OpenCV 4.14.0, FFmpeg 9.0, MKL 2026.1.0, DNNL 3.13, OpenBLAS 0.3.34, CMINPACK 1.3.14, CUDA 13.3.1, cuDNN 9.25.0.15, NCCL 2.30.7, nvCOMP 5.3.0.16, NVIDIA Video Codec SDK 13.1.15, OpenCL 3.1.1, FFTW 3.3.11, CPython 3.14.6, NumPy 2.5.1, SciPy 1.18.0, LLVM 22.1.8, libffi 3.7.1, Tesseract 5.5.3, PyTorch 2.13.0, TensorFlow Lite 2.21.0, TensorRT 11.2.1.2, Triton Inference Server 2.71.0, ONNX 1.22.0, ONNX Runtime 1.28.0 ([pull #1791](https://github.com/bytedeco/javacpp-presets/pull/1791)), and their dependencies
1414
* Compile classes with `parameters` bumping minimum requirements to Java SE 8 and Android 7.0 ([issue #1739](https://github.com/bytedeco/javacpp-presets/issues/1739))
1515

1616
### February 22, 2026 version 1.5.13

ffmpeg/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Introduction
99
------------
1010
This directory contains the JavaCPP Presets module for:
1111

12-
* FFmpeg 8.1.2 http://ffmpeg.org/
12+
* FFmpeg 9.0 http://ffmpeg.org/
1313

1414
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
1515

@@ -46,14 +46,14 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
4646
<dependency>
4747
<groupId>org.bytedeco</groupId>
4848
<artifactId>ffmpeg-platform</artifactId>
49-
<version>8.1.2-1.5.14-SNAPSHOT</version>
49+
<version>9.0-1.5.14-SNAPSHOT</version>
5050
</dependency>
5151

5252
<!-- Optional GPL builds with (almost) everything enabled -->
5353
<dependency>
5454
<groupId>org.bytedeco</groupId>
5555
<artifactId>ffmpeg-platform-gpl</artifactId>
56-
<version>8.1.2-1.5.14-SNAPSHOT</version>
56+
<version>9.0-1.5.14-SNAPSHOT</version>
5757
</dependency>
5858
</dependencies>
5959
<build>

ffmpeg/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ WEBP_VERSION=1.6.0
5050
AOMAV1_VERSION=3.14.1
5151
SVTAV1_VERSION=4.2.0
5252
ZIMG_VERSION=3.0.6
53-
FFMPEG_VERSION=8.1.2
53+
FFMPEG_VERSION=9.0
5454

5555
# Vendored snapshot of https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20847.patch
5656
# with the unsupported FFmpeg 8.1 Changelog hunk already removed.

ffmpeg/platform/gpl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>ffmpeg-platform-gpl</artifactId>
15-
<version>8.1.2-${project.parent.version}</version>
15+
<version>9.0-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for FFmpeg (GPL enabled)</name>
1717

1818
<properties>

ffmpeg/platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>ffmpeg-platform</artifactId>
15-
<version>8.1.2-${project.parent.version}</version>
15+
<version>9.0-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for FFmpeg</name>
1717

1818
<properties>

ffmpeg/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>ffmpeg</artifactId>
14-
<version>8.1.2-${project.parent.version}</version>
14+
<version>9.0-${project.parent.version}</version>
1515
<name>JavaCPP Presets for FFmpeg</name>
1616

1717
<dependencies>

ffmpeg/samples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>ffmpeg-platform</artifactId>
15-
<version>8.1.2-1.5.14-SNAPSHOT</version>
15+
<version>9.0-1.5.14-SNAPSHOT</version>
1616
</dependency>
1717

1818
<!-- Optional GPL builds with (almost) everything enabled -->
1919
<dependency>
2020
<groupId>org.bytedeco</groupId>
2121
<artifactId>ffmpeg-platform-gpl</artifactId>
22-
<version>8.1.2-1.5.14-SNAPSHOT</version>
22+
<version>9.0-1.5.14-SNAPSHOT</version>
2323
</dependency>
2424
</dependencies>
2525
<build>

ffmpeg/src/gen/java/org/bytedeco/ffmpeg/global/avutil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8361,7 +8361,7 @@ allocated with av_malloc() or another memory allocation function. */
83618361
/* Automatically generated by version.sh, do not manually edit! */
83628362
// #ifndef AVUTIL_FFVERSION_H
83638363
// #define AVUTIL_FFVERSION_H
8364-
public static final String FFMPEG_VERSION = "8.1.2";
8364+
public static final String FFMPEG_VERSION = "9.0";
83658365
// #endif /* AVUTIL_FFVERSION_H */
83668366

83678367

platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>org.bytedeco</groupId>
9595
<artifactId>ffmpeg-platform</artifactId>
96-
<version>8.1.2-${project.version}</version>
96+
<version>9.0-${project.version}</version>
9797
</dependency>
9898
<!-- <dependency>-->
9999
<!-- <groupId>org.bytedeco</groupId>-->

0 commit comments

Comments
 (0)