Beta/venv/lib/python3.12/site-packages/av/index.pxd

13 lines
290 B
Cython
Raw Normal View History

2026-06-16 17:09:34 +00:00
cimport libav as lib
cdef class IndexEntry:
cdef const lib.AVIndexEntry *ptr
cdef _init(self, const lib.AVIndexEntry *ptr)
cdef class IndexEntries:
cdef lib.AVStream *stream_ptr
cdef _init(self, lib.AVStream *ptr)
cdef IndexEntries wrap_index_entries(lib.AVStream *ptr)