Lines Matching defs:start
147 const uint8_t *start;
151 start = avpriv_find_start_code(frag->data, frag->data + frag->data_size,
154 // No start code found.
164 // really reads a new start code and does not reuse the old
165 // start code in any way (as e.g. happens when there is a
168 end = avpriv_find_start_code(start--, frag->data + frag->data_size,
171 // start points to the byte containing the start_code_identifier
173 // following the byte containing the start code identifier (or to
176 // Unit runs from start to the beginning of the start code
178 unit_size = (end - 4) - start;
180 // We didn't find a start code, so this is the final unit.
181 unit_size = end - start;
184 err = ff_cbs_append_unit_data(frag, unit_type, (uint8_t*)start,
189 start = end;
285 av_log(ctx->log_ctx, AV_LOG_ERROR, "Write unimplemented for start "