Skip to content

Commit 7247411

Browse files
committed
Release 15.1.0
1 parent 0b85c60 commit 7247411

4 files changed

Lines changed: 2 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ v15.1.0
2121

2222
Features:
2323

24+
- Support FFmpeg 8
2425
- Make the `Frame.key_frame` flag writable.
2526

2627
v15.0.0

av/about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "15.0.0"
1+
__version__ = "15.1.0"

av/codec/context.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class Flags(IntEnum):
2525
four_mv = cast(int, ...)
2626
output_corrupt = cast(int, ...)
2727
qpel = cast(int, ...)
28-
drop_changed = cast(int, ...)
2928
recon_frame = cast(int, ...)
3029
copy_opaque = cast(int, ...)
3130
frame_duration = cast(int, ...)

av/codec/context.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ class Flags(IntEnum):
5252
four_mv = lib.AV_CODEC_FLAG_4MV
5353
output_corrupt = lib.AV_CODEC_FLAG_OUTPUT_CORRUPT
5454
qpel = lib.AV_CODEC_FLAG_QPEL
55-
drop_changed = 1 << 5
5655
recon_frame = lib.AV_CODEC_FLAG_RECON_FRAME
5756
copy_opaque = lib.AV_CODEC_FLAG_COPY_OPAQUE
5857
frame_duration = lib.AV_CODEC_FLAG_FRAME_DURATION

0 commit comments

Comments
 (0)