Lines Matching refs:line
101 uint8_t line[256];
106 get_line(s->pb, line, sizeof(line));
108 if (sscanf(line, "TIMEBASE=%d/%d", &tb.num, &tb.den))
109 get_line(s->pb, line, sizeof(line));
110 ret = sscanf(line, "START=%"SCNd64, &start);
112 av_log(s, AV_LOG_ERROR, "Expected chapter start timestamp, found %s.\n", line);
116 get_line(s->pb, line, sizeof(line));
118 ret = sscanf(line, "END=%"SCNd64, &end);
120 av_log(s, AV_LOG_ERROR, "Expected chapter end timestamp, found %s.\n", line);
145 static int read_tag(const uint8_t *line, AVDictionary **m)
148 const uint8_t *p = line;
163 if (!(key = unescape(line, p - line)))