From: Jaroslav Kysela Date: Wed, 27 Jan 2016 18:54:33 +0000 (+0100) Subject: eit: add HEVC support to _eit_desc_component X-Git-Tag: v4.2.1~1104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef7e2ada28e1706475893bb7a1a266a82b6cc8cb;p=thirdparty%2Ftvheadend.git eit: add HEVC support to _eit_desc_component --- diff --git a/src/epggrab/module/eit.c b/src/epggrab/module/eit.c index d12ca5361..3c30dd824 100644 --- a/src/epggrab/module/eit.c +++ b/src/epggrab/module/eit.c @@ -282,6 +282,14 @@ static int _eit_desc_component /* Described */ if (t == 0x40 || t == 0x44) ev->ad = 1; + + /* HEVC */ + } else if ( c == 0x9 ) { + + ev->ws = 1; + if (t > 3) + ev->hd = 2; + } return 0;