We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3659fd commit 0abe743Copy full SHA for 0abe743
2 files changed
doc/ffms2-changelog.md
@@ -1,6 +1,7 @@
1
# FFmpegSource2 Changelog
2
-- 2.xxx
3
- - Fixed all issues with FFmpeg 6.0 which is now the minimum requirement
+- 5.0
+ - Fixed all issues with FFmpeg 6.1 which is now the minimum requirement
4
+ - Fixed av1 decoding
5
- Added HDR10+ and DolbyVision metadata
6
- Fixed audio decoding that could otherwise get stuck in an infinite loop on certain files
7
- Fixed framerate in Avisynth when using VFR=>CFR mode
include/ffms.h
@@ -22,7 +22,7 @@
22
#define FFMS_H
23
24
// Version format: major - minor - micro - bump
25
-#define FFMS_VERSION ((3 << 24) | (1 << 16) | (1 << 8) | 0)
+#define FFMS_VERSION ((5 << 24) | (0 << 16) | (0 << 8) | 0)
26
27
#include <stdint.h>
28
#include <stddef.h>
0 commit comments