Skip to content

Commit

Permalink
FLUTE out: PSI shall be zero
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouqueau committed Jul 9, 2024
1 parent 76e77ee commit 15244c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/filters/out_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,8 @@ u32 routeout_lct_send(GF_ROUTEOutCtx *ctx, GF_Socket *sock, u32 tsi, u32 toi, u3
} else {
send_payl_size = len - offset;
}
ctx->lct_buffer[0] = 0x12; //V=b0001, C=b00, PSI=b10
ctx->lct_buffer[0] = 0x10; //V=b0001, C=b00, PSI=b00 or b10 with ROUTE
if (!is_flute) ctx->lct_buffer[0] |= 0x02;
//S=b1|b0, O=b01|b00, h=b0|b1, res=b00, A=b0, B=X
ctx->lct_buffer[1] = short_h ? 0x10 : 0xA0;
//set close flag only if total_len is known
Expand Down

0 comments on commit 15244c8

Please sign in to comment.