Commit a75781bd authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

According to ISO 13818-1 page 34, ECM and EMM stream_id values are...

According to ISO 13818-1 page 34, ECM and EMM stream_id values are respectively 0xF0 and 0xF1 and not 0xB0/0xB1.

Fix ECM/EMM values

Patch by Aurelien Nephtali. Close #1845

I also think that we should add "Private Stream 1"for 0xBD; but I am not sure.
parent def14b82
......@@ -1670,8 +1670,8 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
case 0xBC: /* Program stream map */
case 0xBE: /* Padding */
case 0xBF: /* Private stream 2 */
case 0xB0: /* ECM */
case 0xB1: /* EMM */
case 0xF0: /* ECM */
case 0xF1: /* EMM */
case 0xFF: /* Program stream directory */
case 0xF2: /* DSMCC stream */
case 0xF8: /* ITU-T H.222.1 type E stream */
......
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