Skip to content

Commit

Permalink
Merge pull request #914 from DeinAlptraum/ci-ffmpeg7.1
Browse files Browse the repository at this point in the history
Update to ffmpeg 7.1
  • Loading branch information
barbeque-squared authored Oct 14, 2024
2 parents b95a107 + 1fbb847 commit 4f905cb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/ffmpeg-7.0/avcodec.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface
const
(* Supported version by this header *)
LIBAVCODEC_MAX_VERSION_MAJOR = 61;
LIBAVCODEC_MAX_VERSION_MINOR = 3;
LIBAVCODEC_MAX_VERSION_MINOR = 19;
LIBAVCODEC_MAX_VERSION_RELEASE = 100;
LIBAVCODEC_MAX_VERSION = (LIBAVCODEC_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBAVCODEC_MAX_VERSION_MINOR * VERSION_MINOR) +
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ffmpeg-7.0/avformat.pas
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface
const
(* Max. supported version by this header *)
LIBAVFORMAT_MAX_VERSION_MAJOR = 61;
LIBAVFORMAT_MAX_VERSION_MINOR = 1;
LIBAVFORMAT_MAX_VERSION_MINOR = 7;
LIBAVFORMAT_MAX_VERSION_RELEASE = 100;
LIBAVFORMAT_MAX_VERSION = (LIBAVFORMAT_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBAVFORMAT_MAX_VERSION_MINOR * VERSION_MINOR) +
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ffmpeg-7.0/avutil.pas
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface
const
(* Max. supported version by this header *)
LIBAVUTIL_MAX_VERSION_MAJOR = 59;
LIBAVUTIL_MAX_VERSION_MINOR = 8;
LIBAVUTIL_MAX_VERSION_MINOR = 39;
LIBAVUTIL_MAX_VERSION_RELEASE = 100;
LIBAVUTIL_MAX_VERSION = (LIBAVUTIL_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBAVUTIL_MAX_VERSION_MINOR * VERSION_MINOR) +
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ffmpeg-7.0/swresample.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface
const
(* Supported version by this header *)
LIBSWRESAMPLE_MAX_VERSION_MAJOR = 5;
LIBSWRESAMPLE_MAX_VERSION_MINOR = 1;
LIBSWRESAMPLE_MAX_VERSION_MINOR = 3;
LIBSWRESAMPLE_MAX_VERSION_RELEASE = 100;
LIBSWRESAMPLE_MAX_VERSION = (LIBSWRESAMPLE_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBSWRESAMPLE_MAX_VERSION_MINOR * VERSION_MINOR) +
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ffmpeg-7.0/swscale.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface
const
(* Max. supported version by this header *)
LIBSWSCALE_MAX_VERSION_MAJOR = 8;
LIBSWSCALE_MAX_VERSION_MINOR = 1;
LIBSWSCALE_MAX_VERSION_MINOR = 3;
LIBSWSCALE_MAX_VERSION_RELEASE = 100;
LIBSWSCALE_MAX_VERSION = (LIBSWSCALE_MAX_VERSION_MAJOR * VERSION_MAJOR) +
(LIBSWSCALE_MAX_VERSION_MINOR * VERSION_MINOR) +
Expand Down

0 comments on commit 4f905cb

Please sign in to comment.