Searched refs:AVTreeNode (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | tree.c | 26 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 …]
|
D | tree.h | 45 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/ |
D | tree.c | 27 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/ |
D | cache.c | 58 struct AVTreeNode *root; 106 struct AVTreeNode *node = NULL; in add_entry()
|
D | nut.h | 108 struct AVTreeNode *syncpoints;
|
D | nut.c | 288 struct AVTreeNode *node = av_tree_node_alloc(); in ff_nut_add_sp()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_drawtext.c | 186 struct AVTreeNode *glyphs; ///< rendered glyphs, stored using the UTF-32 char code 321 struct AVTreeNode *node = NULL; in load_glyph()
|