File: bitstream.pxd

package info (click to toggle)
python-av 14.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,664 kB
  • sloc: python: 4,712; sh: 175; ansic: 174; makefile: 123
file content (11 lines) | stat: -rw-r--r-- 184 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
cimport libav as lib

from av.packet cimport Packet


cdef class BitStreamFilterContext:

    cdef lib.AVBSFContext *ptr

    cpdef filter(self, Packet packet=?)
    cpdef flush(self)