File: frame.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 (14 lines) | stat: -rw-r--r-- 718 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cdef extern from "libavutil/frame.h" nogil:

    cdef AVFrame* av_frame_alloc()
    cdef void av_frame_free(AVFrame**)
    cdef int av_frame_ref(AVFrame *dst, const AVFrame *src)
    cdef AVFrame* av_frame_clone(const AVFrame *src)
    cdef void av_frame_unref(AVFrame *frame)
    cdef void av_frame_move_ref(AVFrame *dst, AVFrame *src)
    cdef int av_frame_get_buffer(AVFrame *frame, int align)
    cdef int av_frame_is_writable(AVFrame *frame)
    cdef int av_frame_make_writable(AVFrame *frame)
    cdef int av_frame_copy(AVFrame *dst, const AVFrame *src)
    cdef int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
    cdef AVFrameSideData* av_frame_get_side_data(AVFrame *frame, AVFrameSideDataType type)