Skip to content

Commit

Permalink
Replace spaces with tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
touatily committed Mar 14, 2024
1 parent 3217e27 commit e277971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/media_tools/route_dmx.c
Expand Up @@ -861,7 +861,7 @@ static GF_Err gf_route_service_gather_object(GF_ROUTEDmx *routedmx, GF_ROUTEServ
gf_list_add(s->objects, obj);
} else if (!obj->total_length && total_len) {
GF_LOG(GF_LOG_INFO, GF_LOG_ROUTE, ("[ROUTE] Service %d object TSI %u TOI %u was started without total-length assigned, assigning to %u\n", s->service_id, tsi, toi, total_len));
// Check if there are no fragments in the object that extend beyond the total length
// Check if there are no fragments in the object that extend beyond the total length
for (i=0; i < obj->nb_frags; i++) {
if((u64) obj->frags[i].offset + obj->frags[i].size > total_len) {
GF_LOG(GF_LOG_ERROR, GF_LOG_ROUTE, ("[ROUTE] Service %d object TSI %u TOI %u: TOL (%u) doesn't cover previously received fragment [%u, %u[, purging object \n", s->service_id, tsi, toi, total_len, obj->frags[i].offset, obj->frags[i].offset+obj->frags[i].size));
Expand Down

0 comments on commit e277971

Please sign in to comment.