Home
last modified time | relevance | path

Searched refs:AVTreeNode (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavutil/
Dtree.c26 typedef struct AVTreeNode { struct
27 struct AVTreeNode *child[2]; argument
30 } AVTreeNode; argument
32 const int av_tree_node_size = sizeof(AVTreeNode);
34 struct AVTreeNode *av_tree_node_alloc(void) in av_tree_node_alloc()
36 return av_mallocz(sizeof(struct AVTreeNode)); in av_tree_node_alloc()
39 void *av_tree_find(const AVTreeNode *t, void *key, in av_tree_find()
59 void *av_tree_insert(AVTreeNode **tp, void *key, in av_tree_insert()
60 int (*cmp)(const void *key, const void *b), AVTreeNode **next) in av_tree_insert()
62 AVTreeNode *t = *tp; in av_tree_insert()
[all …]
Dtree.h45 struct AVTreeNode;
51 struct AVTreeNode *av_tree_node_alloc(void);
67 void *av_tree_find(const struct AVTreeNode *root, void *key,
114 void *av_tree_insert(struct AVTreeNode **rootp, void *key,
116 struct AVTreeNode **next);
118 void av_tree_destroy(struct AVTreeNode *t);
130 void av_tree_enumerate(struct AVTreeNode *t, void *opaque,
/third_party/ffmpeg/libavutil/tests/
Dtree.c27 static int check(AVTreeNode *t) in check()
44 static void print(AVTreeNode *t, int depth) in print()
66 AVTreeNode *root = NULL, *node = NULL; in main()
94 AVTreeNode *node2 = NULL; in main()
/third_party/ffmpeg/libavformat/
Dcache.c58 struct AVTreeNode *root;
106 struct AVTreeNode *node = NULL; in add_entry()
Dnut.h108 struct AVTreeNode *syncpoints;
Dnut.c288 struct AVTreeNode *node = av_tree_node_alloc(); in ff_nut_add_sp()
/third_party/ffmpeg/libavfilter/
Dvf_drawtext.c186 struct AVTreeNode *glyphs; ///< rendered glyphs, stored using the UTF-32 char code
321 struct AVTreeNode *node = NULL; in load_glyph()