]> git.vomp.tv Git - vompclient-marten.git/blob - demuxer.cc
Let vomp handle aspect ratio change, better aspect ratio control for HD and SD
[vompclient-marten.git] / demuxer.cc
1 /*
2     Copyright 2005-2008 Mark Calderbank
3     Copyright 2007 Marten Richter (AC3 support)
4
5     This file is part of VOMP.
6
7     VOMP is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11
12     VOMP is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with VOMP; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 */
21
22 #include "demuxer.h"
23
24 #include "callback.h"
25 #include "dvbsubtitles.h"
26 #include "log.h"
27
28 #include <cstdlib>
29
30 #include <math.h>
31
32 #define DEMUXER_SEQ_HEAD 0x000001B3
33 #define DEMUXER_PIC_HEAD 0x00000101
34 #define DEMUXER_SEQ_EXT_HEAD 0x000001B5
35
36 #define DEMUXER_H264_ACCESS_UNIT 0x00000109
37 #define DEMUXER_H264_SEQ_PARAMETER_SET 0x00000107
38 #define DEMUXER_H264_SUB_ENHANCEMENT_INF 0x00000106
39
40
41 #define SEEK_THRESHOLD 150000 // About 1.5 seconds
42
43 // Statics
44 const int Demuxer::FrameRates[9] = { 0, 23, 24, 25, 29, 30, 50, 59, 60 };
45 Demuxer* Demuxer::instance = NULL;
46
47 class NALUUnit {
48 public:
49     NALUUnit(const UCHAR* buf,UINT length_buf);
50     ~NALUUnit();
51
52 inline    UINT getBits(UINT num_bits);
53     UINT getUe();
54     int getSe();
55     bool isEonalu() {return eonalu;};
56
57 protected:
58     UCHAR* nalu_buf;
59     UINT nalu_length;
60     UINT pos;
61     UCHAR bit_pos;
62     UCHAR working_byte;
63     UINT last_bytes;
64     bool eonalu;
65 };
66
67 NALUUnit::NALUUnit(const UCHAR *buf, UINT length_buf)
68 {
69     nalu_length=0;
70     nalu_buf=NULL;
71     pos=0;
72     bit_pos=0;
73     working_byte=0;
74     last_bytes=0;
75     eonalu=false;
76
77     UINT nalu_start=0;
78     UINT nalu_end=0;
79     UINT pattern =(((UINT)buf[ 0] << 16) |
80                    ((UINT)buf[1] <<  8) |
81                     (UINT)buf[2]  );
82     nalu_start=3;
83     while (pattern != 0x000001)
84     {
85         if (++nalu_start >= length_buf) return;
86         pattern = ((pattern << 8) | buf[nalu_start])&0x00FFFFFF;
87     }
88     nalu_end=nalu_start+1;
89     pattern = ((pattern << 8) | buf[nalu_end])&0x00FFFFFF;
90
91     while (pattern != 0x000001 && pattern != 0x000000)
92     {
93         if (++nalu_end >= length_buf) { nalu_end+=3;break;};
94         pattern = ((pattern << 8) | buf[nalu_end])&0x00FFFFFF;
95     }
96     nalu_end-=3;
97     nalu_end=min(length_buf-1,nalu_end);
98     nalu_length=nalu_end-nalu_start;
99     nalu_buf=(UCHAR*)malloc(nalu_length);
100     memcpy(nalu_buf,buf+nalu_start,nalu_length);
101     pos=1;
102 }
103
104 NALUUnit::~NALUUnit()
105 {
106     if (nalu_buf) free(nalu_buf);
107 }
108
109 inline UINT NALUUnit::getBits(UINT num_bits)
110 {
111     if (num_bits==0) return 0; //???
112     UINT remain_bits=num_bits;
113     UINT work=0;
114     //May be slow, but should work!
115     while (remain_bits>0) {
116         if (bit_pos==0) {
117             if (pos<nalu_length)
118             {
119                 last_bytes=(last_bytes<<8) & nalu_buf[pos];
120                 if ((last_bytes & 0x00FFFFFF) == 0x000003) pos++; //emulation prevention byte
121                  if (pos<nalu_length)
122                  {
123                      working_byte=nalu_buf[pos];
124                      pos++;
125                  } 
126                  else
127                  {
128                      working_byte=0;
129                      eonalu=true;
130                  }
131             } 
132             else
133             {
134                 working_byte=0;
135                 eonalu=true;
136             }
137
138         }
139         UINT fetch_bits=min(remain_bits,8-bit_pos);
140         work=work <<fetch_bits;
141         //work|=((working_byte>>bit_pos) & (0xFF>>(8-fetch_bits)));
142         work|=(working_byte &(0xFF>>(bit_pos)))>>(8-fetch_bits-bit_pos);
143         remain_bits-=fetch_bits;
144         bit_pos=(bit_pos+fetch_bits)%8;
145     }
146     return work;
147 }
148
149 UINT NALUUnit::getUe()
150 {
151     int leadbits=-1;
152     bool bit;
153     for( bit = 0; !bit && !eonalu; leadbits++ )
154         bit = getBits(1);
155     if (eonalu) return true;
156     return ((1 << leadbits)-1)+getBits(leadbits);
157 }
158
159 int NALUUnit::getSe()
160 {
161     UINT input=getUe();
162     if (input==0) return 0;
163     int output=((input+1)>>1);
164     if (input & 0x1) output*=-1;
165     return output;
166 }
167
168
169
170 static const int PESPacket_initial_size = 2000;
171
172 // PESPacket methods
173 PESPacket::PESPacket()
174 {
175   data_size = PESPacket_initial_size;
176   data = (UCHAR*)malloc(data_size);
177   data[0] = 0x00;
178   data[1] = 0x00;
179   data[2] = 0x01;
180   init(0);
181 }
182
183 PESPacket::PESPacket(const PESPacket& packet)
184 {
185   copyFrom(packet);
186 }
187
188 PESPacket& PESPacket::operator=(const PESPacket& packet)
189 {
190   if (this != &packet)
191   {
192     if (data) free(data);
193     copyFrom(packet);
194   }
195   return *this;
196 }
197
198 PESPacket::~PESPacket()
199 {
200   if (data) free(data);
201 }
202
203 void PESPacket::copyFrom(const PESPacket& packet)
204 {
205   length = packet.length;
206   size = packet.size;
207   packetType = packet.packetType;
208   substream = packet.substream;
209   seq_header = packet.seq_header;
210   data_size = size;
211   data = (UCHAR*)malloc(data_size);
212   memcpy(data, packet.data, data_size);
213 }
214
215 void PESPacket::init(UCHAR type, UCHAR sub)
216 {
217   length = 0; 
218   size = 6;
219   data[4] = data[5] = 0;
220   data[3] = type;
221   packetType = type;
222   substream = sub;
223   seq_header = 1; // Unknown seq_header status
224
225 }
226
227 void PESPacket::truncate()
228 {
229   init(packetType,substream);
230 }
231
232
233
234 int PESPacket::write(const UCHAR *buf, int len)
235 {
236
237
238   if (size + len > 0x10000) return 0;
239   if (size + len > data_size)
240   { // Reallocate
241     UINT new_data_size = max(data_size + data_size / 2, data_size + len);
242     if (new_data_size > 0x10000) new_data_size = 0x10000;
243     data_size = new_data_size;
244     data = (UCHAR*)realloc(data, data_size);
245   }
246   memcpy(data + size, buf, len);
247   length += len;
248   size += len;
249   data[4] = (length >> 8);
250   data[5] = (length & 0xFF);
251   // We have added data - reset seq_header indicator if necessary
252   if (seq_header == 0) seq_header = 1; // Reset to 'unknown'
253   return 1;
254 }
255
256 ULLONG PESPacket::getPTS() const
257 {
258   if ( ( (packetType >= Demuxer::PESTYPE_AUD0 &&
259           packetType <= Demuxer::PESTYPE_AUDMAX)
260          ||
261          (packetType >= Demuxer::PESTYPE_VID0 &&
262           packetType <= Demuxer::PESTYPE_VIDMAX)
263    ||
264           packetType == Demuxer::PESTYPE_PRIVATE_1
265        )
266        && size >= 14 && data[7] & 0x80)
267   {
268     return ( (ULLONG)(data[ 9] & 0x0E) << 29) |
269            ( (ULLONG)(data[10])        << 22 ) |
270            ( (ULLONG)(data[11] & 0xFE) << 14 ) |
271            ( (ULLONG)(data[12])        <<  7 ) |
272            ( (ULLONG)(data[13] & 0xFE) >>  1 );
273   }
274   else return PTS_INVALID;
275 }
276
277 UCHAR PESPacket::operator[] (UINT index) const
278 {
279   if (index >= size)
280     return 0;
281   else
282     return data[index];
283 }
284
285 UINT PESPacket::findPictureHeader(bool h264) const
286 {
287   if (size < 12) return 0;
288   UINT pattern = ( ((UINT)data[ 8] << 24) |
289                    ((UINT)data[ 9] << 16) |
290                    ((UINT)data[10] <<  8) |
291                     (UINT)data[11]  );
292   UINT pos = 11;
293   if (h264) {
294           
295           while (pattern != DEMUXER_H264_ACCESS_UNIT)
296           {
297                   if (++pos >= size) return 0;
298                   pattern = (pattern << 8) | data[pos];
299           }
300           return pos-3;
301   } else {
302           while (pattern != DEMUXER_PIC_HEAD)
303           {
304                   if (++pos >= size) return 0;
305                   pattern = (pattern << 8) | data[pos];
306           }
307           return pos-3;
308   }
309 }
310
311 UINT PESPacket::countPictureHeaders(bool h264) const
312 {
313   if (size < 12) return 0;
314   UINT pattern = ( ((UINT)data[ 8] << 24) |
315                    ((UINT)data[ 9] << 16) |
316                    ((UINT)data[10] <<  8) |
317                     (UINT)data[11]  );
318   UINT pos = 11;
319   UINT count=0;
320   if (h264) {
321           
322           while (pos<size)
323           {
324           pos++;
325                   pattern = (pattern << 8) | data[pos];
326           if (pattern==DEMUXER_H264_ACCESS_UNIT) count++;
327           }
328           return count;
329   } else {
330       while (pos<size)
331           {
332           pos++;
333                   pattern = (pattern << 8) | data[pos];
334           if (pattern==DEMUXER_PIC_HEAD) count++;
335           }
336           return count;
337   }
338 }
339
340 UINT PESPacket::findSeqHeader(bool h264) const
341 {
342   if (seq_header != 1) return seq_header;
343   if (size < 12) return 0;
344   UINT pattern = ( ((UINT)data[ 8] << 24) |
345                    ((UINT)data[ 9] << 16) |
346                    ((UINT)data[10] <<  8) |
347                     (UINT)data[11]  );
348   UINT pos = 11;
349   if (h264) {
350       while ((pattern & 0xFFFFFF1F) != DEMUXER_H264_SEQ_PARAMETER_SET)
351           {
352                   if (++pos >= size)
353                   {
354                           seq_header = 0;
355                           return 0;
356                   }
357                   pattern = (pattern << 8) | data[pos];
358           }
359           seq_header = pos - 3;
360   } 
361   else 
362   {
363           while (pattern != DEMUXER_SEQ_HEAD)
364           {
365                   if (++pos >= size)
366                   {
367                           seq_header = 0;
368                           return 0;
369                   }
370                   pattern = (pattern << 8) | data[pos];
371           }
372           seq_header = pos - 3;
373   }
374   return seq_header;
375 }
376
377 UINT PESPacket::findSeqExtHeader(bool h264) const
378 {
379   if (seq_header != 1) return seq_header;
380   if (size < 12) return 0;
381   UINT pattern = ( ((UINT)data[ 8] << 24) |
382                    ((UINT)data[ 9] << 16) |
383                    ((UINT)data[10] <<  8) |
384                     (UINT)data[11]  );
385   UINT pos = 11;
386   if (h264) {
387       while ((pattern & 0xFFFFFF1F) != DEMUXER_H264_SUB_ENHANCEMENT_INF)
388           {
389                   if (++pos >= size)
390                   {
391                           seq_header = 0;
392                           return 0;
393                   }
394                   pattern = (pattern << 8) | data[pos];
395           }
396           seq_header = pos - 3;
397   }
398   else
399   {
400           while (pattern != DEMUXER_SEQ_EXT_HEAD && (data[pos+1]&0xf0)!=0x10)
401           {
402                   if (++pos >= (size-1))
403                   {
404                           seq_header = 0;
405                           return 0;
406                   }
407                   pattern = (pattern << 8) | data[pos];
408           }
409           seq_header = pos - 3;
410   }
411   return seq_header;
412 }
413
414 // Demuxer methods
415 Demuxer::Demuxer()
416 {
417   if (instance) return;
418   instance = this;
419   initted = false;
420   callback = NULL;
421   arcnt = 0;
422   vid_seeking = aud_seeking = false;
423   video_pts = audio_pts = 0;
424   ispre_1_3_19 = false;
425   packetnum=0;
426   h264 = false;
427   fps = 25.0;
428   astreamtype=4;
429 }
430
431 Demuxer::~Demuxer()
432 {
433   shutdown();
434   instance = NULL;
435 }
436
437 Demuxer* Demuxer::getInstance()
438 {
439   return instance;
440 }
441
442 int Demuxer::init(Callback* tcallback, DrainTarget* audio, DrainTarget* video, DrainTarget* teletext,
443                   ULONG demuxMemoryV, ULONG demuxMemoryA, ULONG demuxMemoryT,double infps, DVBSubtitles* tsubtitles)
444 {
445   if (!initted)
446   {
447     if ( !videostream.init(video, demuxMemoryV) ||
448          !audiostream.init(audio, demuxMemoryA) ||
449          !teletextstream.init(teletext, demuxMemoryT))
450     {
451       Log::getInstance()->log("Demuxer", Log::CRIT,
452                               "Failed to initialize demuxer");
453       shutdown();
454       return 0;
455     }
456   }
457   if (teletext) {
458       isteletextdecoded = true;
459   } else {
460       isteletextdecoded = false;
461   }
462   fps=infps;
463   reset();
464   initted = true;
465   subtitles = tsubtitles;
466   callback = tcallback;
467   return 1;
468 }
469
470 void Demuxer::reset()
471 {
472   Log::getInstance()->log("Demuxer", Log::DEBUG, "Reset called");
473   flush();
474   video_current = audio_current = teletext_current = subtitle_current = -1;
475   horizontal_size = vertical_size = 0;
476   interlaced=true; // default is true
477   aspect_ratio = (enum AspectRatio) 0;
478   parx=1;
479   pary=1;
480   frame_rate = bit_rate = 0;
481   ispre_1_3_19 = false;
482   h264 = false;
483   packetnum=0;
484   astreamtype=4;
485
486   for (int i = 0; i <= (PESTYPE_AUDMAX - PESTYPE_AUD0); i++)
487   {
488     avail_mpaudchan[i] = false;
489   }
490   for (int i = 0; i <= (PESTYPE_SUBSTREAM_AC3MAX - PESTYPE_SUBSTREAM_AC30); i++)
491   {
492     avail_ac3audchan[i] = false;
493   }
494   for (int i = 0; i <= (PESTYPE_SUBSTREAM_DVBSUBTITLEMAX - PESTYPE_SUBSTREAM_DVBSUBTITLE0); i++)
495   {
496     avail_dvbsubtitlechan[i] = false;
497   }
498 }
499
500 int Demuxer::shutdown()
501 {
502   videostream.shutdown();
503   audiostream.shutdown();
504   teletextstream.shutdown();
505   initted = false;
506   return 1;
507 }
508
509 void Demuxer::flush()
510 {
511   Log::getInstance()->log("Demuxer", Log::DEBUG, "Flush called");
512
513   videostream.flush();
514   audiostream.flush();
515   teletextstream.flush();
516 }
517
518 void Demuxer::flushAudio()
519 {
520   audiostream.flush();
521 }
522
523 void Demuxer::seek()
524 {
525   vid_seeking = aud_seeking = true;
526   video_pts = audio_pts = teletext_pts = 0;
527 }
528
529 void Demuxer::setAudioStream(int id)
530 {
531   audio_current = id;
532 }
533
534 void Demuxer::setVideoStream(int id)
535 {
536   video_current = id;
537 }
538
539 void Demuxer::setTeletextStream(int id)
540 {
541   teletext_current = id;
542 }
543
544 void Demuxer::setDVBSubtitleStream(int id)
545 {
546   subtitle_current = id;
547 }
548
549 void Demuxer::setAspectRatio(enum AspectRatio ar, int taspectx, int taspecty)
550 {
551   if (aspect_ratio != ar)
552   {
553     Log::getInstance()->log("Demux", Log::DEBUG,
554                             "Aspect ratio difference signalled");
555     if (++arcnt > 3) // avoid changing aspect ratio if glitch in signal
556     {
557       arcnt = 0;
558       aspect_ratio = ar;
559       parx=taspectx;
560       pary=taspecty;
561       if (callback) callback->call(this);
562     }
563   }
564   else
565     arcnt = 0;
566 }
567
568 bool Demuxer::writeAudio(bool * dataavail)
569 {
570   return audiostream.drain(dataavail);
571 }
572
573 bool Demuxer::writeVideo(bool * dataavail)
574 {
575   return videostream.drain(dataavail);
576 }
577
578 bool Demuxer::writeTeletext(bool * dataavail)
579 {
580    return teletextstream.drain(dataavail);
581 }
582
583 bool Demuxer::submitPacket(PESPacket& packet)
584 {
585   UINT sent = 0;
586   UCHAR packet_type = packet.getPacketType();
587   const UCHAR* packetdata = packet.getData();
588   if (packet_type >= PESTYPE_VID0 && packet_type <= PESTYPE_VIDMAX)
589   {
590     if (video_current == -1) video_current = packet_type;
591     if (video_current == packet_type && !vid_seeking)
592         {
593         sent = videostream.put(&packetdata[0], packet.getSize(), h264?MPTYPE_VIDEO_H264:MPTYPE_VIDEO_MPEG2,packetnum);
594         if (sent) packetnum++;
595         }
596         else
597       sent = packet.getSize();
598   }
599   else if (packet_type >= PESTYPE_AUD0 && packet_type <= PESTYPE_AUDMAX)
600   {
601
602     if (audio_current == -1) audio_current = packet_type;
603     avail_mpaudchan[packet_type - PESTYPE_AUD0] = true;
604     if (audio_current == packet_type && !aud_seeking)
605         {
606       UCHAR type=MPTYPE_MPEG_AUDIO;
607       switch (astreamtype)
608       {
609       case 3:
610       case 4:
611           type=MPTYPE_MPEG_AUDIO; break;
612       case 0x11:
613           type=MPTYPE_AAC_LATM; break;
614       };
615       sent = audiostream.put(&packetdata[0], packet.getSize(), type,packetnum);
616           if (sent)  packetnum++;
617         }
618         else
619       sent = packet.getSize();
620   }
621   else if (packet_type == PESTYPE_PRIVATE_1 &&
622            packet.getSubstream() >= PESTYPE_SUBSTREAM_AC30 &&
623            packet.getSubstream() <= PESTYPE_SUBSTREAM_AC3MAX)
624   {
625     avail_ac3audchan[packet.getSubstream() - PESTYPE_SUBSTREAM_AC30] = true;
626     if (packet.getSubstream() == audio_current)
627     {
628       sent = audiostream.put(&packetdata[0], packet.getSize(), (ispre_1_3_19)? MPTYPE_AC3_PRE13 : MPTYPE_AC3,packetnum);
629           if (sent) packetnum++;
630     }
631     else
632     {
633       sent = packet.getSize();
634     }
635   }
636   else if (packet_type == PESTYPE_PRIVATE_1 &&
637            packet.getSubstream() >= PESTYPE_SUBSTREAM_DVBSUBTITLE0 &&
638            packet.getSubstream() <= PESTYPE_SUBSTREAM_DVBSUBTITLEMAX)
639   {
640     avail_dvbsubtitlechan[packet.getSubstream()-PESTYPE_SUBSTREAM_DVBSUBTITLE0]=true;
641     if (subtitle_current == -1) subtitle_current = packet.getSubstream();
642     if (subtitles && packet.getSubstream()==subtitle_current)
643     {
644          subtitles->put(packet);
645     }
646     sent = packet.getSize();
647   }
648   else if (isteletextdecoded  && packet_type == PESTYPE_PRIVATE_1 &&
649            packet.getSubstream() >= PESTYPE_SUBSTREAM_TELETEXT0 &&
650            packet.getSubstream() <= PESTYPE_SUBSTREAM_TELETEXTMAX)
651   {
652
653     if (teletext_current == -1) teletext_current = packet.getSubstream();
654     if (teletext_current == packet.getSubstream())
655     {
656         sent = teletextstream.put(&packetdata[0], packet.getSize(), MPTYPE_TELETEXT,packetnum);
657     }
658     else 
659     {
660         sent = packet.getSize();
661     }
662   }
663   else
664   {
665     sent = packet.getSize();
666   }
667
668   if (sent < packet.getSize()) // Stream is full.
669     return false;
670   else
671     return true;
672 }
673
674 void Demuxer::parsePacketDetails(PESPacket& packet)
675 {
676     if (packet.getPacketType() >= PESTYPE_AUD0 &&
677         packet.getPacketType() <= PESTYPE_AUDMAX)
678     {
679         // Extract audio PTS if it exists
680         if (packet.hasPTS())
681         {
682             audio_pts = packet.getPTS();
683             // We continue to seek on the audio if the video PTS that we
684             // are trying to match is ahead of the audio PTS by at most
685             // SEEK_THRESHOLD. We consider the possibility of PTS wrap.
686             if (aud_seeking && !vid_seeking &&
687                 !( (video_pts_seek > audio_pts &&
688                 video_pts_seek - audio_pts < SEEK_THRESHOLD)
689                 ||
690                 (video_pts_seek < audio_pts &&
691                 video_pts_seek + (1LL<<33) - audio_pts < SEEK_THRESHOLD) ))
692             {
693                 aud_seeking = 0;
694                 Log::getInstance()->log("Demuxer", Log::DEBUG,
695                     "Leaving  audio sync: Audio PTS = %llu", audio_pts);
696             }
697         }
698     }
699     else if (packet.getPacketType() == PESTYPE_PRIVATE_1) // Private stream
700     {
701         //Inspired by vdr's device.c
702         int payload_begin = packet[8]+9;
703         unsigned char substream_id = packet[payload_begin];
704         unsigned char substream_type = substream_id & 0xF0;
705         unsigned char substream_index = substream_id & 0x1F;
706 pre_1_3_19_Recording: //This is for old recordings stuff and live TV
707         if (ispre_1_3_19)
708         {
709                 int old_substream=packet.getSubstream();
710                 if (old_substream){ //someone else already set it, this is live tv
711                         substream_id = old_substream;
712                         substream_type = substream_id & 0xF0;
713                         substream_index = substream_id & 0x1F;
714                 } else {
715                 substream_id = PESTYPE_PRIVATE_1;
716                 substream_type = 0x80;
717                 substream_index = 0;
718                 }
719
720         }
721         switch (substream_type)
722         {
723         case 0x20://SPU
724         case 0x30://SPU
725             packet.setSubstream(substream_id);
726             break;
727         case 0xA0: //LPCM //not supported yet, is there any LPCM transmissio out there?
728             break;
729         case 0x80: //ac3, currently only one ac3 track per recording supported
730             packet.setSubstream(substream_type+substream_index);
731
732             // Extract audio PTS if it exists
733             if (packet.hasPTS())
734             {
735                 audio_pts = packet.getPTS();
736                 // We continue to seek on the audio if the video PTS that we
737                 // are trying to match is ahead of the audio PTS by at most
738                 // SEEK_THRESHOLD. We consider the possibility of PTS wrap.
739                 if (aud_seeking && !vid_seeking &&
740                     !( (video_pts_seek > audio_pts &&
741                     video_pts_seek - audio_pts < SEEK_THRESHOLD)
742                     ||
743                     (video_pts_seek < audio_pts &&
744                     video_pts_seek + (1LL<<33) - audio_pts < SEEK_THRESHOLD) ))
745                 {
746                     aud_seeking = 0;
747                     Log::getInstance()->log("Demuxer", Log::DEBUG, "Leaving  audio sync: Audio PTS = %llu", audio_pts);
748                 }
749             }
750             break;
751         case 0x10: //Teletext Is this correct?
752             packet.setSubstream(substream_id);
753             // Extract teletxt PTS if it exists
754             if (packet.hasPTS())
755             {
756                 teletext_pts = packet.getPTS();
757             }
758             break;
759         default:
760             if (!ispre_1_3_19)
761             {
762                 ispre_1_3_19=true; //switching to compat mode and live tv mode
763                 goto pre_1_3_19_Recording;
764             }
765             else
766             {
767                 packet.setSubstream(0);
768             }
769             break;
770         }
771     }
772     else if (packet.getPacketType() >= PESTYPE_VID0 &&
773         packet.getPacketType() <= PESTYPE_VIDMAX)
774     {
775         // Extract video PTS if it exists
776         if (packet.hasPTS()) video_pts = packet.getPTS();
777
778         // If there is a sequence header, extract information
779         UINT pos = packet.findSeqHeader(h264);
780         if (pos > 1)
781         {
782             if (!h264) {
783                 pos += 4;
784                 if (pos+6 >= packet.getSize()) return;
785                 horizontal_size = ((int)packet[pos] << 4) | ((int)packet[pos+1] >> 4);
786                 
787                 vertical_size = (((int)packet[pos+1] & 0xf) << 8) | (int)packet[pos+2];
788
789                 enum AspectRatio aspect=(enum AspectRatio)(packet[pos+3] >> 4);
790                 int aspectx=1;
791                 int aspecty=1;
792                 const int aspectDAR[]={0,1,1,1,4,3,16,9,221,100};
793                 int aspectDARx=aspectDAR[aspect*2];
794                 int aspectDARy=aspectDAR[aspect*2+1];
795
796                 aspectx=aspectDARx*vertical_size;
797                 aspecty=aspectDARy*horizontal_size;
798
799                 int commona;
800                 int commonb;
801                // Log::getInstance()->log("Demuxer", Log::DEBUG, "PAR test1 %d %d %d %d ", aspectx,aspecty,commona,commonb);
802                 commona=aspectx;
803                 commonb=aspecty;
804
805                 while (commonb) {
806                         int temp=commonb;
807                         commonb=commona%commonb;
808                         commona=temp;
809                 }
810                 aspectx=aspectx/commona;
811                 aspecty=aspecty/commona;
812                 //Log::getInstance()->log("Demuxer", Log::DEBUG, "PAR test2 %d %d %d %d %d %d %d", aspectx,aspecty,aspectDARx,aspectDARy,horizontal_size,vertical_size,commona);
813
814                 setAspectRatio(aspect,aspectx,aspecty);
815                 frame_rate = packet[pos+3] & 0x0f;
816                 if (frame_rate >= 1 && frame_rate <= 8)
817                     frame_rate = FrameRates[frame_rate];
818                 else
819                     frame_rate = 0;
820                 bit_rate = ((int)packet[pos+4] << 10) |
821                     ((int)packet[pos+5] << 2) |
822                     ((int)packet[pos+6] >> 6);
823             } 
824             else
825             {
826                 /* Chris and Mark I know this is ugly, should we move this to a method  of PESPacket or to NALUUnit what would be better?
827                 This looks so ugly since the header includes variable length parts and I have to parse through the whole header to get the wanted information*/
828                 NALUUnit nalu(packet.getData()+pos,packet.getSize()-pos);
829                 profile=nalu.getBits(8);
830                 nalu.getBits(8); //constraints
831                 nalu.getBits(8); //level_idc
832                 nalu.getUe(); //seq_parameter_set_id
833                 int chroma=1;
834                 if (profile==100 || profile==110 || profile==122 || profile==144)
835                 {
836                     chroma=nalu.getUe();
837                     if (chroma==3)
838                     {
839                         nalu.getBits(1);
840                     }
841                     nalu.getUe(); //bit depth lume
842                     nalu.getUe(); //bit depth chrome
843                     nalu.getBits(1);
844                     if (nalu.getBits(1))
845                     {
846                         for (int i=0;i<8;i++){
847                             if (nalu.getBits(1))
848                             {
849                                 if (i<6)
850                                 {
851                                     UINT lastscale=8;
852                                     UINT nextscale=8;
853                                     for (int j=0;j<16;j++) {
854                                         if (nextscale!=0) {
855                                             UINT delta=nalu.getSe();
856                                             nextscale=(lastscale+delta+256)%256;
857                                         }
858                                         lastscale=(nextscale==0)?lastscale:nextscale;
859                                     }
860                                 }
861                                 else
862                                 {
863                                     UINT lastscale=8;
864                                     UINT nextscale=8;
865                                     for (int j=0;j<64;j++) {
866                                         if (nextscale!=0) {
867                                             UINT delta=nalu.getSe();
868                                             nextscale=(lastscale+delta+256)%256;
869                                         }
870                                         lastscale=(nextscale==0)?lastscale:nextscale;
871                                     }
872                                 }
873                             }
874                         }
875                     }
876                 }
877                 int chromunitx=1;
878                 int chromunity=1;
879                 switch (chroma) {
880                 case 0:
881                     chromunitx=chromunity=1; break;
882                 case 1:
883                     chromunitx=chromunity=2; break;
884                 case 2:
885                     chromunitx=2;chromunity=1; break;
886                 case 3:
887                     chromunitx=chromunity=1; break;
888                 };
889
890                 nalu.getUe(); //log2framenum
891                 UINT temp=nalu.getUe();
892                 if (temp==0) //pict order
893                     nalu.getUe();
894                 else if (temp==1) {
895                     nalu.getBits(1);
896                     nalu.getSe();
897                     nalu.getSe();
898                     UINT temp2=nalu.getUe();
899                     for (int i=0;i<temp2;i++)
900                         nalu.getSe();
901                 }
902                 nalu.getUe(); //Num refframes
903                 nalu.getBits(1);
904                 horizontal_size=(nalu.getUe()+1)*16;
905                 
906                 vertical_size=(nalu.getUe()+1)*16;
907                 int tinterlaced=nalu.getBits(1);
908                 vertical_size*=(2-tinterlaced);
909                 interlaced=!tinterlaced;
910                 
911                 if (!tinterlaced) nalu.getBits(1);
912                 nalu.getBits(1);
913                 if (nalu.getBits(1))
914                 {
915                     horizontal_size-=nalu.getUe()*chromunitx;
916                     horizontal_size-=nalu.getUe()*chromunitx;
917                     vertical_size-=nalu.getUe()*(2-tinterlaced)*chromunity;
918                     vertical_size-=nalu.getUe()*(2-tinterlaced)*chromunity;
919                 }
920                 if (nalu.getBits(1))
921                 {
922                     if (nalu.getBits(1))
923                     {
924                         UINT aspectratioidc=nalu.getBits(8);
925                         bool hasaspect=false;
926                         int aspectx,aspecty;
927                         const float aspects[]={1., 1./1.,12./11.,10./11.,16./11.,40./33.,
928                             24./11.,20./11.,32./11.,80./33.,18./11.,15./11.,64./33.,160./99.,4./3.,3./2.,2./1.};
929                         const int aspectsx[]={1, 1,12,10,16,40,
930                                                     24,20,32,80,18,15,64,160,4,3,2};
931                         const int aspectsy[]={1, 1,11,11,11,33,11,11,11,33,11,11,33,99,3,2,1};
932                       
933                         float aspectratio=((float) horizontal_size)/((float) vertical_size);
934                         if (aspectratioidc<=16) 
935                         {
936                             hasaspect=true;
937                             aspectratio*=aspects[aspectratioidc];
938                             aspectx=aspectsx[aspectratioidc];
939                             aspecty=aspectsy[aspectratioidc];
940                            
941                         }
942                         else if (aspectratioidc==255)
943                         {
944                             int t_sar_width=nalu.getBits(16);
945                             int t_sar_height=nalu.getBits(16);
946                             if (t_sar_width!=0 && t_sar_height!=0)
947                             {
948                                 hasaspect=true;
949                                 aspectratio*=((float)t_sar_width)/((float)t_sar_height);
950                                 aspectx=t_sar_width;
951                                 aspecty=t_sar_height;
952                             }
953                         }
954                         if (hasaspect)
955                         {
956                             if (fabs(aspectratio-16./9.)<0.1) setAspectRatio(ASPECT_16_9,aspectx,aspecty);
957                             else if (fabs(aspectratio-4./3.)<0.1) setAspectRatio(ASPECT_4_3,aspectx,aspecty);
958                             else  setAspectRatio(ASPECT_1_1,aspectx,aspecty);
959                         }
960                     }
961
962                 }
963
964             }
965             UINT posext = packet.findSeqExtHeader(h264);
966             if (posext>1) {
967                 if (!h264) {
968                         interlaced=!(packet[pos+1] & 0x08); //really simple
969                         // if more than full hd is coming we need to add additional parsers here
970                 } else {
971                 /*      NALUUnit nalu(packet.getData()+posext,packet.getSize()-posext);
972                         while (!nalu.isEonalu()) {
973                                 unsigned int payloadtype=0;
974                                 unsigned int payloadadd=0xFF;
975                                 while (payloadadd==0xFF && !nalu.isEonalu()) {
976                                         payloadadd=nalu.getBits(8);
977                                         payloadtype+=payloadadd;
978                                 }
979                                 unsigned int payloadsize=0;
980                                 payloadadd=0xff;
981                                 while (payloadadd==0xFF && !nalu.isEonalu()) {
982                                        payloadadd=nalu.getBits(8);
983                                        payloadsize+=payloadadd;
984                             }
985                                 switch (payloadtype) {
986                                 case 1: { // picture timing SEI
987
988                                 } break;
989                                 default: {
990                                         while (payloadsize) { // not handled skip
991                                                 nalu.getBits(8);
992                                                 payloadsize--;
993                                         }
994                                 } break;
995                                 }
996
997
998
999                         }*/
1000
1001
1002                 }
1003             }
1004            
1005             if (vid_seeking)
1006             {
1007                 vid_seeking = 0;
1008                 video_pts_seek = video_pts;
1009                 Log::getInstance()->log("Demuxer", Log::DEBUG,
1010                     "Entering audio sync: Video PTS = %llu", video_pts);
1011                 Log::getInstance()->log("Demuxer", Log::DEBUG,
1012                     "Entering audio sync: Audio PTS = %llu", audio_pts);
1013             }
1014             return;
1015         } 
1016     }
1017 }
1018
1019 UINT Demuxer::stripAudio(UCHAR* buf, UINT len)
1020 {
1021   UINT read_pos = 0, write_pos = 0;
1022   UINT pattern, packet_length;
1023   if (len < 4) return 0;
1024   pattern = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
1025   while (read_pos + 7 <= len)
1026   {
1027     pattern = ((pattern & 0xFFFFFF) << 8) | buf[read_pos+3];
1028     if (pattern < (0x100|PESTYPE_VID0) || pattern > (0x100|PESTYPE_VIDMAX))
1029       read_pos++;
1030     else
1031     {
1032       packet_length = ((buf[read_pos+4] << 8) | (buf[read_pos+5])) + 6;
1033       if (read_pos + packet_length > len)
1034         read_pos = len;
1035       else
1036       {
1037         if (read_pos != write_pos)
1038           memmove(buf+write_pos, buf+read_pos, packet_length);
1039         read_pos += packet_length;
1040         write_pos += packet_length;
1041         pattern = (buf[read_pos] << 16) | (buf[read_pos+1] << 8)
1042                                         | (buf[read_pos+2]);
1043       }
1044     }
1045   }
1046   return write_pos;
1047 }
1048
1049 void Demuxer::changeTimes(UCHAR* buf, UINT len,UINT playtime)
1050 {
1051         UINT pattern, packet_length;
1052         UINT read_pos = 0;
1053         if (len < 4) return;
1054         pattern = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
1055         while (read_pos + 7 <= len)
1056         {
1057            pattern = ((pattern & 0xFFFFFF) << 8) | buf[read_pos+3];
1058            if (pattern < (0x100|PESTYPE_VID0) || pattern > (0x100|PESTYPE_VIDMAX))
1059               read_pos++;
1060            else
1061            {
1062               packet_length = ((buf[read_pos+4] << 8) | (buf[read_pos+5])) + 6;
1063               // ok we have a packet figure out if pts and dts are present and replace them
1064               if (read_pos + 19 > len) return;
1065               ULLONG new_ts=playtime*90; //play time is on ms so multiply it by 90
1066               if (buf[read_pos+7] & 0x80) { // pts is here, replace it
1067                   buf[read_pos+9]=0x21 | (( new_ts>>29)& 0xde );
1068                   buf[read_pos+10]=0x00 |(( new_ts>>22)& 0xff );
1069                   buf[read_pos+11]=0x01 | (( new_ts>>14)& 0xfe );
1070                   buf[read_pos+12]=0x00 | (( new_ts>>7)& 0xff );
1071                   buf[read_pos+13]=0x01 | (( new_ts<<1)& 0xfe );
1072               }
1073
1074               if (buf[read_pos+7] & 0x40) { // pts is here, replace it
1075                    buf[read_pos+14]=0x21 | (( new_ts>>29)& 0xde );
1076                    buf[read_pos+15]=0x00 | (( new_ts>>22)& 0xff );
1077                    buf[read_pos+16]=0x01 | (( new_ts>>14)& 0xfe );
1078                    buf[read_pos+17]=0x00 | (( new_ts>>7)& 0xff );
1079                    buf[read_pos+18]=0x01 | (( new_ts<<1)& 0xfe );
1080               }
1081               read_pos += packet_length;
1082               pattern = (buf[read_pos] << 16) | (buf[read_pos+1] << 8)
1083                                                 | (buf[read_pos+2]);
1084               }
1085           }
1086
1087 }
1088
1089 bool Demuxer::scanForVideo(UCHAR* buf, UINT len, bool &ish264)
1090 {
1091   UINT pos = 3;
1092   UINT pattern;
1093   ish264=false;
1094   if (len < 4) return false;
1095   pattern = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
1096   while (pos < len)
1097   {
1098     pattern = ((pattern & 0xFFFFFF) << 8) | buf[pos++];
1099     if (pattern >= (0x100|PESTYPE_VID0) && pattern <= (0x100|PESTYPE_VIDMAX))
1100       return true;
1101   }
1102   return false;
1103 }
1104
1105 bool* Demuxer::getmpAudioChannels()
1106 {
1107   return avail_mpaudchan;
1108 }
1109
1110 bool* Demuxer::getac3AudioChannels()
1111 {
1112   return avail_ac3audchan;
1113 }
1114
1115 bool* Demuxer::getSubtitleChannels()
1116 {
1117   return avail_dvbsubtitlechan;
1118 }
1119
1120 int Demuxer::getselSubtitleChannel()
1121 {
1122   return subtitle_current;
1123 }
1124
1125 int Demuxer::getselAudioChannel()
1126 {
1127   return audio_current;
1128 }
1129
1130