fix for canAllocateChannel
[enigma2.git] / lib / dvb / metaparser.cpp
index 90b02c0670c69d37431e7fad76b02b16cbfaee2a..67eb3d421242f3314ad8ca732de5f66cfe2783b0 100644 (file)
@@ -12,6 +12,8 @@ int eDVBMetaParser::parseFile(const std::string &tsname)
 
        int linecnt = 0;
        
+       m_time_create = 0;
+       
        while (1)
        {
                char line[1024];
@@ -34,6 +36,9 @@ int eDVBMetaParser::parseFile(const std::string &tsname)
                case 2:
                        m_description = line;
                        break;
+               case 3:
+                       m_time_create = atoi(line);
+                       break;
                default:
                        break;
                }