Skip to content

Commit 1bfe14c

Browse files
Update FFMPEG to use 6.1.1 (#59)
Co-authored-by: Ian Butterworth <[email protected]>
1 parent ca7fa5a commit 1bfe14c

File tree

7 files changed

+5
-144
lines changed

7 files changed

+5
-144
lines changed

.appveyor.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.drone.jsonnet

Lines changed: 0 additions & 27 deletions
This file was deleted.

.drone.yml

Lines changed: 0 additions & 73 deletions
This file was deleted.

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.drone.jsonnet linguist-detectable=false
1+

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ arch:
1212
- x86
1313
- arm64
1414
julia:
15-
- 1.5
15+
- 1.6
1616
- 1
1717
- nightly
1818
matrix:

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name = "FFMPEG"
22
uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a"
33
authors = ["SimonDanisch <[email protected]>"]
4-
version = "0.4.2"
4+
version = "0.4.3"
55

66
[deps]
77
FFMPEG_jll = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5"
88

99
[compat]
10-
FFMPEG_jll = "4.3.1"
11-
julia = "^1.3"
10+
FFMPEG_jll = "4.3.1, 6.1.1"
11+
julia = "1.6"
1212

1313
[extras]
1414
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/FFMPEG.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ _avutil_version() = av_version(ccall((:avutil_version, libavutil), U
1010
_swscale_version() = av_version(ccall((:swscale_version, libswscale), UInt32, ()))
1111
_avdevice_version() = av_version(ccall((:avdevice_version, libavdevice), UInt32, ()))
1212
_avfilter_version() = av_version(ccall((:avfilter_version, libavfilter), UInt32, ()))
13-
_avresample_version() = av_version(ccall((:avresample_version, libavresample), UInt32, ()))
1413
_swresample_version() = av_version(ccall((:swresample_version, libswresample), UInt32, ()))
1514

1615
function versioninfo()
@@ -21,7 +20,6 @@ function versioninfo()
2120
println("SWScale version $(_swscale_version())")
2221
println("AVDevice version $(_avdevice_version())")
2322
println("AVFilters version $(_avfilter_version())")
24-
println("AVResample version $(_avresample_version())")
2523
println("SWResample version $(_swresample_version())")
2624
end
2725

0 commit comments

Comments
 (0)