From: Andreas Ă–man Date: Wed, 9 Dec 2009 19:30:18 +0000 (+0000) Subject: Detect stream type 17 as AAC X-Git-Tag: 2.12~364 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8ffa03e35bcf066b4c80e5915ffb4dd55ca47e6;p=thirdparty%2Ftvheadend.git Detect stream type 17 as AAC --- diff --git a/src/psi.c b/src/psi.c index 10805524c..984ff02df 100644 --- a/src/psi.c +++ b/src/psi.c @@ -360,6 +360,10 @@ psi_parse_pmt(th_transport_t *t, const uint8_t *ptr, int len, int chksvcid, hts_stream_type = SCT_MPEG2AUDIO; break; + case 0x11: + hts_stream_type = SCT_AAC; + break; + case 0x1b: hts_stream_type = SCT_H264; break;