Lines Matching defs:priv
113 static void webvtt_text_cb(void *priv, const char *text, int len)
115 WebVTTContext *s = priv;
119 static void webvtt_new_line_cb(void *priv, int forced)
121 webvtt_print(priv, "\n");
124 static void webvtt_style_cb(void *priv, char style, int close)
129 webvtt_stack_push_pop(priv, style, close);
131 webvtt_print(priv, "<%c>", style);
134 static void webvtt_cancel_overrides_cb(void *priv, const char *style)
136 webvtt_stack_push_pop(priv, 0, 1);
137 webvtt_style_apply(priv, style);
140 static void webvtt_end_cb(void *priv)
142 webvtt_stack_push_pop(priv, 0, 1);