[dvblast-devel] consider HEVC like video

Christophe Massiot git at videolan.org
Thu Sep 1 15:54:48 CEST 2016


dvblast | branch: master | Christophe Massiot <cmassiot at openheadend.tv> | Thu Sep  1 15:54:32 2016 +0200| [4e74d31c2cac0ece7a1be0d6a22ecb89552b3287] | committer: Christophe Massiot

consider HEVC like video

> http://git.videolan.org/gitweb.cgi/dvblast.git/?a=commit;h=4e74d31c2cac0ece7a1be0d6a22ecb89552b3287
---

 demux.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/demux.c b/demux.c
index 7aeeafc..4c63539 100644
--- a/demux.c
+++ b/demux.c
@@ -165,7 +165,7 @@ static uint16_t map_es_pid(output_t * p_output, uint8_t *p_es, uint16_t i_pid)
     switch ( i_stream_type )
     {
         case 0x03: /* audio MPEG-1 */
-        case 0x04: /* audio */
+        case 0x04: /* audio MPEG-2 */
         case 0x0f: /* audio AAC ADTS */
         case 0x11: /* audio AAC LATM */
         case 0x81: /* ATSC AC-3 */
@@ -176,9 +176,11 @@ static uint16_t map_es_pid(output_t * p_output, uint8_t *p_es, uint16_t i_pid)
                 i_newpid = p_output->config.pi_confpids[I_APID];
             break;
         case 0x01: /* video MPEG-1 */
-        case 0x02: /* video */
+        case 0x02: /* video MPEG-2 */
         case 0x10: /* video MPEG-4 */
         case 0x1b: /* video H264 */
+        case 0x24: /* video H265 */
+        case 0x42: /* video AVS */
             if ( b_do_remap )
                 i_newpid = pi_newpids[I_VPID];
             else



More information about the dvblast-devel mailing list