forked from PyAV-Org/PyAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdict.pxd
More file actions
38 lines (30 loc) · 832 Bytes
/
dict.pxd
File metadata and controls
38 lines (30 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
cdef extern from "libavutil/dict.h" nogil:
# See: http://ffmpeg.org/doxygen/trunk/structAVDictionary.html
ctypedef struct AVDictionary:
pass
cdef void av_dict_free(AVDictionary **)
# See: http://ffmpeg.org/doxygen/trunk/structAVDictionaryEntry.html
ctypedef struct AVDictionaryEntry:
char *key
char *value
cdef int AV_DICT_IGNORE_SUFFIX
cdef AVDictionaryEntry* av_dict_get(
AVDictionary *dict,
char *key,
AVDictionaryEntry *prev,
int flags,
)
cdef int av_dict_set(
AVDictionary **pm,
const char *key,
const char *value,
int flags
)
cdef int av_dict_count(
AVDictionary *m
)
cdef int av_dict_copy(
AVDictionary **dst,
AVDictionary *src,
int flags
)