7 lines
137 B
Cython
7 lines
137 B
Cython
|
|
from av.packet cimport Packet
|
||
|
|
from av.stream cimport Stream
|
||
|
|
|
||
|
|
|
||
|
|
cdef class SubtitleStream(Stream):
|
||
|
|
cpdef decode(self, Packet packet=?)
|