File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1+ from cython.cimports.libc.stdint import uint8_t
2+
13cimport libav as lib
24
35from av.buffer cimport Buffer
46from av.bytesource cimport ByteSource
57from av.stream cimport Stream
68
7- from cython.cimports.libc.stdint import uint8_t
89
910cdef class PacketSideData:
1011 cdef uint8_t * data
Original file line number Diff line number Diff line change 1+ from typing import Iterator , Literal , get_args
2+
13import cython
24from cython .cimports import libav as lib
35from cython .cimports .av .bytesource import bytesource
46from cython .cimports .av .error import err_check
57from cython .cimports .av .opaque import opaque_container
68from cython .cimports .av .utils import avrational_to_fraction , to_avrational
7- from cython .cimports .av .error import err_check
89from cython .cimports .libc .string import memcpy
910
10- from typing import Literal , get_args , Iterator
11-
1211# check https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/packet.h#L41 for
1312# new additions in the future FFmpeg releases
1413# note: the order must follow that of the AVPacketSideDataType enum def
Original file line number Diff line number Diff line change 1+ from typing import get_args
2+
13import av
24
35from .common import fate_suite
46
5- from typing import get_args
6-
77
88class TestProperties :
99 def test_is_keyframe (self ) -> None :
You can’t perform that action at this time.
0 commit comments