8 lines
195 B
Cython
8 lines
195 B
Cython
|
|
from av.codec.context cimport CodecContext
|
||
|
|
from av.packet cimport Packet
|
||
|
|
|
||
|
|
|
||
|
|
cdef class SubtitleCodecContext(CodecContext):
|
||
|
|
cdef bint subtitle_header_set
|
||
|
|
cpdef decode2(self, Packet packet)
|