Commit 07877678 authored by Benoit Steiner's avatar Benoit Steiner

Correction d'une erreur dans le parsage de la PMT (mauvais masque de
lecture des PID des ES)
parent 7e114cb4
......@@ -566,7 +566,7 @@ static void DecodePgrmMapSection( u8* p_pms, input_thread_t* p_input )
intf_DbgMsg("ES Type: %d\n", p_pms[i_offset]);
/* Read PID of that ES */
i_es_pid = U16_AT(&p_pms[i_offset+1]) & 0x1FF;
i_es_pid = U16_AT(&p_pms[i_offset+1]) & 0x1FFF;
intf_DbgMsg("ES PID: %d\n", i_es_pid);
/* Add the ES to the program description and reserve a slot in the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment