From 539412052643030536990a1ebd96a6adb40aad34 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Wed, 27 Aug 2025 18:31:44 -0400 Subject: [PATCH] Release 15.1.0 --- CHANGELOG.rst | 1 + av/about.py | 2 +- av/codec/context.pyi | 1 - av/codec/context.pyx | 1 - 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 395910dc4..ce6dc7356 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,6 +21,7 @@ v15.1.0 Features: +- Support FFmpeg 8 - Make the `Frame.key_frame` flag writable. v15.0.0 diff --git a/av/about.py b/av/about.py index d5793afcb..9a75d4360 100644 --- a/av/about.py +++ b/av/about.py @@ -1 +1 @@ -__version__ = "15.0.0" +__version__ = "15.1.0" diff --git a/av/codec/context.pyi b/av/codec/context.pyi index 77810d9ed..e0c447186 100644 --- a/av/codec/context.pyi +++ b/av/codec/context.pyi @@ -25,7 +25,6 @@ class Flags(IntEnum): four_mv = cast(int, ...) output_corrupt = cast(int, ...) qpel = cast(int, ...) - drop_changed = cast(int, ...) recon_frame = cast(int, ...) copy_opaque = cast(int, ...) frame_duration = cast(int, ...) diff --git a/av/codec/context.pyx b/av/codec/context.pyx index 1d9c412b2..ac294ee10 100644 --- a/av/codec/context.pyx +++ b/av/codec/context.pyx @@ -52,7 +52,6 @@ class Flags(IntEnum): four_mv = lib.AV_CODEC_FLAG_4MV output_corrupt = lib.AV_CODEC_FLAG_OUTPUT_CORRUPT qpel = lib.AV_CODEC_FLAG_QPEL - drop_changed = 1 << 5 recon_frame = lib.AV_CODEC_FLAG_RECON_FRAME copy_opaque = lib.AV_CODEC_FLAG_COPY_OPAQUE frame_duration = lib.AV_CODEC_FLAG_FRAME_DURATION