Lines Matching defs:node
197 "Unable to allocate new node in OpaqueList.\n");
218 * Returned node must be freed by caller.
222 OpaqueList *node = priv->head;
235 priv->head = node->next;
240 node->next = NULL;
241 return node;
248 while (node->next) {
249 OpaqueList *current = node->next;
251 node->next = current->next;
253 if (!node->next)
254 priv->tail = node;
259 node = current;
296 OpaqueList *node = priv->head;
297 while (node) {
298 OpaqueList *next = node->next;
299 av_free(node);
300 node = next;
452 OpaqueList *node = opaque_list_pop(priv, output->PicInfo.timeStamp);
453 if (node) {
454 pkt_pts = node->reordered_opaque;
455 av_free(node);