Lines Matching refs:OpaqueList
87 typedef struct OpaqueList {
88 struct OpaqueList *next;
91 } OpaqueList;
105 OpaqueList *head;
106 OpaqueList *tail;
189 * OpaqueList functions
194 OpaqueList *newNode = av_mallocz(sizeof (OpaqueList));
197 "Unable to allocate new node in OpaqueList.\n");
214 * The OpaqueList is built in decode order, while elements will be removed
220 static OpaqueList *opaque_list_pop(CHDContext *priv, uint64_t fake_timestamp)
222 OpaqueList *node = priv->head;
249 OpaqueList *current = node->next;
296 OpaqueList *node = priv->head;
298 OpaqueList *next = node->next;
452 OpaqueList *node = opaque_list_pop(priv, output->PicInfo.timeStamp);