File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ v15.1.0
2121
2222Features:
2323
24+ - Support FFmpeg 8
2425- Make the `Frame.key_frame ` flag writable.
2526
2627v15.0.0
Original file line number Diff line number Diff line change 1- __version__ = "15.0 .0"
1+ __version__ = "15.1 .0"
Original file line number Diff line number Diff 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 , ...)
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments