Skip to content

Commit 8034be2

Browse files
committed
Release version 1.5.7
1 parent ead9d72 commit 8034be2

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
### February 11, 2022 version 1.5.7
23
* Fix accuracy and latency issues with `FFmpegFrameGrabber.setVideoFrameNumber()` ([pull #1734](https://github.com/bytedeco/javacv/pull/1734))
34
* Add new `Frame.pictType` field set to `I`, `P`, `B`, etc by `FFmpegFrameGrabber` ([pull #1730](https://github.com/bytedeco/javacv/pull/1730))
45
* Set metadata for `AVFrame.opaque` in `FFmpegFrameGrabber` with call to `av_frame_copy_props()` ([issue #1729](https://github.com/bytedeco/javacv/issues/1729))

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ We can also have everything downloaded and installed automatically with:
2828
<dependency>
2929
<groupId>org.bytedeco</groupId>
3030
<artifactId>javacv-platform</artifactId>
31-
<version>1.5.6</version>
31+
<version>1.5.7</version>
3232
</dependency>
3333
```
3434

3535
* Gradle (inside the `build.gradle` file)
3636
```groovy
3737
dependencies {
38-
implementation group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.6'
38+
implementation group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.7'
3939
}
4040
```
4141

4242
* Leiningen (inside the `project.clj` file)
4343
```clojure
4444
:dependencies [
45-
[org.bytedeco/javacv-platform "1.5.6"]
45+
[org.bytedeco/javacv-platform "1.5.7"]
4646
]
4747
```
4848

4949
* sbt (inside the `build.sbt` file)
5050
```scala
51-
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.6"
51+
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.7"
5252
```
5353

5454
This downloads binaries for all platforms, but to get binaries for only one platform we can set the `javacpp.platform` system property (via the `-D` command line option) to something like `android-arm`, `linux-x86_64`, `macosx-x86_64`, `windows-x86_64`, etc. Please refer to the [README.md file of the JavaCPP Presets](https://github.com/bytedeco/javacpp-presets#downloads) for details. Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCV](https://github.com/bytedeco/sbt-javacv).
@@ -264,7 +264,7 @@ Furthermore, after creating a `pom.xml` file with the following content:
264264
<modelVersion>4.0.0</modelVersion>
265265
<groupId>org.bytedeco.javacv</groupId>
266266
<artifactId>demo</artifactId>
267-
<version>1.5.6</version>
267+
<version>1.5.7</version>
268268
<properties>
269269
<maven.compiler.source>1.7</maven.compiler.source>
270270
<maven.compiler.target>1.7</maven.compiler.target>
@@ -273,21 +273,21 @@ Furthermore, after creating a `pom.xml` file with the following content:
273273
<dependency>
274274
<groupId>org.bytedeco</groupId>
275275
<artifactId>javacv-platform</artifactId>
276-
<version>1.5.6</version>
276+
<version>1.5.7</version>
277277
</dependency>
278278

279279
<!-- Additional dependencies required to use CUDA and cuDNN -->
280280
<dependency>
281281
<groupId>org.bytedeco</groupId>
282282
<artifactId>opencv-platform-gpu</artifactId>
283-
<version>4.5.3-1.5.6</version>
283+
<version>4.5.5-1.5.7</version>
284284
</dependency>
285285

286286
<!-- Optional GPL builds with (almost) everything enabled -->
287287
<dependency>
288288
<groupId>org.bytedeco</groupId>
289289
<artifactId>ffmpeg-platform-gpl</artifactId>
290-
<version>4.4-1.5.6</version>
290+
<version>5.0-1.5.7</version>
291291
</dependency>
292292
</dependencies>
293293
<build>
@@ -309,8 +309,8 @@ Build Instructions
309309
If the binary files available above are not enough for your needs, you might need to rebuild them from the source code. To this end, the project files were created for:
310310

311311
* Maven 3.x http://maven.apache.org/download.html
312-
* JavaCPP 1.5.6 https://github.com/bytedeco/javacpp
313-
* JavaCPP Presets 1.5.6 https://github.com/bytedeco/javacpp-presets
312+
* JavaCPP 1.5.7 https://github.com/bytedeco/javacpp
313+
* JavaCPP Presets 1.5.7 https://github.com/bytedeco/javacpp-presets
314314

315315
Once installed, simply call the usual `mvn install` command for JavaCPP, its Presets, and JavaCV. By default, no other dependencies than a C++ compiler for JavaCPP are required. Please refer to the comments inside the `pom.xml` files for further details.
316316

platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.7-SNAPSHOT</version>
9+
<version>1.5.7</version>
1010
<relativePath></relativePath>
1111
</parent>
1212

platform/src/main/assembly/bin.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<exclude>*-javadoc.jar</exclude>
3434
<exclude>*-sources.jar</exclude>
3535
</excludes>
36+
<fileMode>0644</fileMode>
3637
</fileSet>
3738
<fileSet>
3839
<directory>${project.build.directory}/site</directory>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.bytedeco</groupId>
66
<artifactId>javacv</artifactId>
7-
<version>1.5.7-SNAPSHOT</version>
7+
<version>1.5.7</version>
88

99
<name>JavaCV</name>
1010
<description>Java interface to OpenCV, FFmpeg, and more</description>

samples/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.bytedeco.javacv</groupId>
44
<artifactId>demo</artifactId>
5-
<version>1.5.6</version>
5+
<version>1.5.7</version>
66
<properties>
77
<maven.compiler.source>1.7</maven.compiler.source>
88
<maven.compiler.target>1.7</maven.compiler.target>
@@ -11,21 +11,21 @@
1111
<dependency>
1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>javacv-platform</artifactId>
14-
<version>1.5.6</version>
14+
<version>1.5.7</version>
1515
</dependency>
1616

1717
<!-- Additional dependencies required to use CUDA and cuDNN -->
1818
<dependency>
1919
<groupId>org.bytedeco</groupId>
2020
<artifactId>opencv-platform-gpu</artifactId>
21-
<version>4.5.3-1.5.6</version>
21+
<version>4.5.5-1.5.7</version>
2222
</dependency>
2323

2424
<!-- Optional GPL builds with (almost) everything enabled -->
2525
<dependency>
2626
<groupId>org.bytedeco</groupId>
2727
<artifactId>ffmpeg-platform-gpl</artifactId>
28-
<version>4.4-1.5.6</version>
28+
<version>5.0-1.5.7</version>
2929
</dependency>
3030
</dependencies>
3131
<build>

0 commit comments

Comments
 (0)