From 836f847b56090bdbdb2ced708bd7ef43a6984b3b Mon Sep 17 00:00:00 2001 From: JoeUgly <41972063+JoeUgly@users.noreply.github.com> Date: Sun, 7 Jan 2024 13:12:04 -0500 Subject: [PATCH] removed unsupported VideoCodecContext.gop_size.__get__ method --- av/video/codeccontext.pyx | 3 --- 1 file changed, 3 deletions(-) diff --git a/av/video/codeccontext.pyx b/av/video/codeccontext.pyx index 9d4ec13a8..8edc6c28f 100644 --- a/av/video/codeccontext.pyx +++ b/av/video/codeccontext.pyx @@ -126,9 +126,6 @@ cdef class VideoCodecContext(CodecContext): self.framerate = value property gop_size: - def __get__(self): - return self.ptr.gop_size - def __set__(self, int value): self.ptr.gop_size = value