Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ v15.1.0

Features:

- Support FFmpeg 8
- Make the `Frame.key_frame` flag writable.

v15.0.0
Expand Down
2 changes: 1 addition & 1 deletion av/about.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "15.0.0"
__version__ = "15.1.0"
1 change: 0 additions & 1 deletion av/codec/context.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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, ...)
Expand Down
1 change: 0 additions & 1 deletion av/codec/context.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading