File: avdevice.pxd

package info (click to toggle)
python-av 16.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,684 kB
  • sloc: python: 7,607; sh: 182; ansic: 174; makefile: 135
file content (12 lines) | stat: -rw-r--r-- 465 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12

cdef extern from "libavdevice/avdevice.h" nogil:

    cdef int   avdevice_version()
    cdef char* avdevice_configuration()
    cdef char* avdevice_license()
    void       avdevice_register_all()

    AVInputFormat * av_input_audio_device_next(AVInputFormat *d)
    AVInputFormat * av_input_video_device_next(AVInputFormat *d)
    AVOutputFormat * av_output_audio_device_next(AVOutputFormat *d)
    AVOutputFormat * av_output_video_device_next(AVOutputFormat *d)