[vlc-commits] demux: ts: flag DSM-CC Type B sections transport

Francois Cartegnie git at videolan.org
Sat Feb 27 13:46:50 CET 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sat Feb 27 13:27:19 2016 +0100| [f154cefb0f7f3f363dfd2616cbcc82914c1edd36] | committer: Francois Cartegnie

demux: ts: flag DSM-CC Type B sections transport

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f154cefb0f7f3f363dfd2616cbcc82914c1edd36
---

 modules/demux/mpeg/ts_psi.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/demux/mpeg/ts_psi.c b/modules/demux/mpeg/ts_psi.c
index a6268c6..701e4d7 100644
--- a/modules/demux/mpeg/ts_psi.c
+++ b/modules/demux/mpeg/ts_psi.c
@@ -1329,6 +1329,9 @@ static void FillPESFromDvbpsiES( demux_t *p_demux,
             /* Handle PES private data */
             PMTSetupEs0x06( p_demux, p_pes, p_dvbpsies );
             break;
+        case 0x0b: /* DSM-CC */
+            p_pes->data_type = TS_ES_DATA_TABLE_SECTION;
+            break;
         /* All other private or reserved types */
         case 0x13: /* SL in sections */
             p_pes->data_type = TS_ES_DATA_TABLE_SECTION;



More information about the vlc-commits mailing list