2 Copyright 2005-2008 Mark Calderbank
3 Copyright 2007 Marten Richter (AC3 support)
5 This file is part of VOMP.
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.
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.
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.
25 #include "dvbsubtitles.h"
32 #define DEMUXER_SEQ_HEAD 0x000001B3
33 #define DEMUXER_PIC_HEAD 0x00000101
34 #define DEMUXER_SEQ_EXT_HEAD 0x000001B5
36 #define DEMUXER_H264_ACCESS_UNIT 0x00000109
37 #define DEMUXER_H264_SEQ_PARAMETER_SET 0x00000107
38 #define DEMUXER_H264_SUB_ENHANCEMENT_INF 0x00000106
39 #define DEMUXER_H264_CODED_SLICE_IDR 0x00000105
40 #define DEMUXER_H264_CODED_SLICE_NON_IDR 0x00000101
42 #define SEEK_THRESHOLD 150000 // About 1.5 seconds
45 const int Demuxer::FrameRates[9] = { 0, 23, 24, 25, 29, 30, 50, 59, 60 };
46 Demuxer* Demuxer::instance = NULL;
50 NALUUnit(const UCHAR* buf,UINT length_buf);
53 inline UINT getBits(UINT num_bits);
56 bool isEonalu() {return eonalu;};
57 int getPos(){return pos;};
69 NALUUnit::NALUUnit(const UCHAR *buf, UINT length_buf)
81 UINT pattern =(((UINT)buf[ 0] << 16) |
85 while (pattern != 0x000001)
87 if (++nalu_start >= length_buf) return;
88 pattern = ((pattern << 8) | buf[nalu_start])&0x00FFFFFF;
90 nalu_end=nalu_start+1;
91 if (nalu_end >= length_buf) return; // input buffer too small. corrupt data? ignore.
92 pattern = ((pattern << 8) | buf[nalu_end])&0x00FFFFFF;
94 while (pattern != 0x000001 && pattern != 0x000000)
96 if (++nalu_end >= length_buf) { nalu_end+=3;break;};
97 pattern = ((pattern << 8) | buf[nalu_end])&0x00FFFFFF;
100 nalu_end=min(length_buf-1,nalu_end);
101 if (nalu_end <= nalu_start) return; // input buffer too small. corrupt data? ignore.
102 nalu_length=nalu_end-nalu_start;
103 nalu_buf=(UCHAR*)malloc(nalu_length);
104 memcpy(nalu_buf,buf+nalu_start,nalu_length);
108 NALUUnit::~NALUUnit()
110 if (nalu_buf) free(nalu_buf);
113 inline UINT NALUUnit::getBits(UINT num_bits)
115 if (num_bits==0) return 0; //???
116 UINT remain_bits=num_bits;
118 //May be slow, but should work!
119 while (remain_bits>0) {
123 last_bytes=(last_bytes<<8) & nalu_buf[pos];
124 if ((last_bytes & 0x00FFFFFF) == 0x000003) pos++; //emulation prevention byte
127 working_byte=nalu_buf[pos];
143 UINT fetch_bits=min(remain_bits,8-bit_pos);
144 work=work <<fetch_bits;
145 //work|=((working_byte>>bit_pos) & (0xFF>>(8-fetch_bits)));
146 work|=(working_byte &(0xFF>>(bit_pos)))>>(8-fetch_bits-bit_pos);
147 remain_bits-=fetch_bits;
148 bit_pos=(bit_pos+fetch_bits)%8;
153 UINT NALUUnit::getUe()
157 for( bit = 0; !bit && !eonalu; leadbits++ )
159 if (eonalu) return 0;
160 return ((1 << leadbits)-1)+getBits(leadbits);
163 int NALUUnit::getSe()
166 if (input==0) return 0;
167 int output=((input+1)>>1);
168 if (input & 0x1) output*=-1;
174 static const int PESPacket_initial_size = 2000;
177 PESPacket::PESPacket()
179 data_size = PESPacket_initial_size;
180 data = (UCHAR*)malloc(data_size);
187 PESPacket::PESPacket(const PESPacket& packet)
192 PESPacket& PESPacket::operator=(const PESPacket& packet)
196 if (data) free(data);
202 PESPacket::~PESPacket()
204 if (data) free(data);
207 void PESPacket::copyFrom(const PESPacket& packet)
209 length = packet.length;
211 packetType = packet.packetType;
212 substream = packet.substream;
213 seq_header = packet.seq_header;
215 data = (UCHAR*)malloc(data_size);
216 memcpy(data, packet.data, data_size);
219 void PESPacket::init(UCHAR type, UCHAR sub)
223 data[4] = data[5] = 0;
227 seq_header = 1; // Unknown seq_header status
231 void PESPacket::truncate()
233 init(packetType,substream);
238 int PESPacket::write(const UCHAR *buf, int len)
242 if (size + len > 0x10000) return 0;
243 if (size + len > data_size)
245 UINT new_data_size = max(data_size + data_size / 2, data_size + len);
246 if (new_data_size > 0x10000) new_data_size = 0x10000;
247 data_size = new_data_size;
248 data = (UCHAR*)realloc(data, data_size);
250 memcpy(data + size, buf, len);
253 data[4] = (length >> 8);
254 data[5] = (length & 0xFF);
255 // We have added data - reset seq_header indicator if necessary
256 if (seq_header == 0) seq_header = 1; // Reset to 'unknown'
260 ULLONG PESPacket::getPTS() const
262 if ( ( (packetType >= Demuxer::PESTYPE_AUD0 &&
263 packetType <= Demuxer::PESTYPE_AUDMAX)
265 (packetType >= Demuxer::PESTYPE_VID0 &&
266 packetType <= Demuxer::PESTYPE_VIDMAX)
268 packetType == Demuxer::PESTYPE_PRIVATE_1
270 && size >= 14 && data[7] & 0x80)
272 return ( (ULLONG)(data[ 9] & 0x0E) << 29) |
273 ( (ULLONG)(data[10]) << 22 ) |
274 ( (ULLONG)(data[11] & 0xFE) << 14 ) |
275 ( (ULLONG)(data[12]) << 7 ) |
276 ( (ULLONG)(data[13] & 0xFE) >> 1 );
278 else return PTS_INVALID;
281 UCHAR PESPacket::operator[] (UINT index) const
289 UINT PESPacket::findPictureHeader(bool h264) const
291 if (size < 12) return 0;
292 UINT pattern = ( ((UINT)data[ 8] << 24) |
293 ((UINT)data[ 9] << 16) |
294 ((UINT)data[10] << 8) |
299 while (pattern != DEMUXER_H264_ACCESS_UNIT)
301 if (++pos >= size) return 0;
302 pattern = (pattern << 8) | data[pos];
306 while (pattern != DEMUXER_PIC_HEAD)
308 if (++pos >= size) return 0;
309 pattern = (pattern << 8) | data[pos];
315 UINT PESPacket::countPictureHeaders(bool h264, struct PictCountInfo& pinfo) const
317 if (size < 12) return 0;
318 UINT pattern = ( ((UINT)data[ 8] << 24) |
319 ((UINT)data[ 9] << 16) |
320 ((UINT)data[10] << 8) |
325 //inspired by vdr algorithm for frame couting by Klaus Schmidinger
329 pattern = (pattern << 8) | data[pos];
330 if ((pattern &0xFFFFFF00)==0x00000100) {
331 UINT testpattern=(pattern& 0xFFFFFF1f);
332 if (testpattern==DEMUXER_H264_ACCESS_UNIT) pinfo.hasaccessunit=true;
333 else if (testpattern==DEMUXER_H264_SEQ_PARAMETER_SET ) {
335 NALUUnit nalu(data+pos-3,getSize()-pos+3);
336 int profile=nalu.getBits(8);
337 nalu.getBits(8); //constraints
338 nalu.getBits(8); //level_idc
339 nalu.getUe(); //seq_parameter_set_id
341 pinfo.separate_color_plane_flag=0;
342 if (profile==100 || profile==110 || profile==122 || profile==144)
347 pinfo.separate_color_plane_flag=nalu.getBits(1);
349 nalu.getUe(); //bit depth lume
350 nalu.getUe(); //bit depth chrome
354 for (int i=0;i<8;i++){
361 for (int j=0;j<16;j++) {
363 UINT delta=nalu.getSe();
364 nextscale=(lastscale+delta+256)%256;
366 lastscale=(nextscale==0)?lastscale:nextscale;
373 for (int j=0;j<64;j++) {
375 UINT delta=nalu.getSe();
376 nextscale=(lastscale+delta+256)%256;
378 lastscale=(nextscale==0)?lastscale:nextscale;
386 UINT checkMaxFrameNum = nalu.getUe() + 4; //log2framenum
388 if (checkMaxFrameNum < 13) {
389 pinfo.log2_max_frame_num = checkMaxFrameNum;
397 UINT temp=nalu.getUe();
398 if (temp==0) //pict order
404 UINT temp2=nalu.getUe();
405 for (UINT i=0;i<temp2;i++)
408 nalu.getUe(); //Num refframes
412 pinfo.frame_mbs_only_flag=nalu.getBits(1);
416 } if (testpattern==DEMUXER_H264_CODED_SLICE_IDR || testpattern==DEMUXER_H264_CODED_SLICE_NON_IDR ) {
417 /* Log::getInstance()->log("Demuxer", Log::ERR,
418 "Has slice %d %d %d %d %d",pinfo.hasaccessunit, pinfo.hassps,pinfo.frame_mbs_only_flag,pinfo.separate_color_plane_flag,
419 pinfo.log2_max_frame_num);*/
420 if (pinfo.hasaccessunit && pinfo.hassps) {
422 NALUUnit nalu(data+pos-3,getSize()-pos+3);
423 nalu.getUe();// first_mb_in_slice
424 nalu.getUe();//sliectype
425 if (!pinfo.frame_mbs_only_flag) {
426 nalu.getUe(); //pic_paramter_set_id
427 if (pinfo.separate_color_plane_flag) nalu.getBits(2);
428 nalu.getBits(pinfo.log2_max_frame_num);
429 //if (!frame_mbs_only_flag)
430 if (nalu.getBits(1)) { //field_picture
431 if (!nalu.getBits(1)) { //bottom_field
439 pinfo.hasaccessunit=false;
449 pattern = (pattern << 8) | data[pos];
450 if (pattern==DEMUXER_PIC_HEAD) count++;
456 UINT PESPacket::findSeqHeader(bool h264) const
458 if (seq_header != 1) return seq_header;
459 if (size < 12) return 0;
460 UINT pattern = ( ((UINT)data[ 8] << 24) |
461 ((UINT)data[ 9] << 16) |
462 ((UINT)data[10] << 8) |
466 while ((pattern & 0xFFFFFF1F) != DEMUXER_H264_SEQ_PARAMETER_SET)
473 pattern = (pattern << 8) | data[pos];
475 seq_header = pos - 3;
479 while (pattern != DEMUXER_SEQ_HEAD)
486 pattern = (pattern << 8) | data[pos];
488 seq_header = pos - 3;
493 UINT PESPacket::findSeqExtHeader(bool h264) const
495 if (seq_header != 1) return seq_header;
496 if (size < 12) return 0;
497 UINT pattern = ( ((UINT)data[ 8] << 24) |
498 ((UINT)data[ 9] << 16) |
499 ((UINT)data[10] << 8) |
503 while ((pattern & 0xFFFFFF1F) != DEMUXER_H264_SUB_ENHANCEMENT_INF)
510 pattern = (pattern << 8) | data[pos];
512 seq_header = pos - 3;
516 while (pattern != DEMUXER_SEQ_EXT_HEAD && (data[pos+1]&0xf0)!=0x10)
518 if (++pos >= (size-1))
523 pattern = (pattern << 8) | data[pos];
525 seq_header = pos - 3;
533 if (instance) return;
538 vid_seeking = aud_seeking = false;
539 video_pts = audio_pts = 0;
540 ispre_1_3_19 = false;
554 Demuxer* Demuxer::getInstance()
559 int Demuxer::init(Callback* tcallback, DrainTarget* audio, DrainTarget* video, DrainTarget* teletext,
560 ULONG demuxMemoryV, ULONG demuxMemoryA, ULONG demuxMemoryT,double infps, DVBSubtitles* tsubtitles)
564 if ( !videostream.init(video, demuxMemoryV) ||
565 !audiostream.init(audio, demuxMemoryA) ||
566 !teletextstream.init(teletext, demuxMemoryT))
568 Log::getInstance()->log("Demuxer", Log::CRIT,
569 "Failed to initialize demuxer");
575 isteletextdecoded = true;
577 isteletextdecoded = false;
582 subtitles = tsubtitles;
583 callback = tcallback;
587 void Demuxer::reset()
589 Log::getInstance()->log("Demuxer", Log::DEBUG, "Reset called");
591 video_current = audio_current = teletext_current = subtitle_current = -1;
592 horizontal_size = vertical_size = 0;
593 interlaced=true; // default is true
594 aspect_ratio = (enum AspectRatio) 0;
597 frame_rate = bit_rate = 0;
598 ispre_1_3_19 = false;
604 for (int i = 0; i <= (PESTYPE_AUDMAX - PESTYPE_AUD0); i++)
606 avail_mpaudchan[i] = false;
608 for (int i = 0; i <= (PESTYPE_SUBSTREAM_AC3MAX - PESTYPE_SUBSTREAM_AC30); i++)
610 avail_ac3audchan[i] = false;
612 for (int i = 0; i <= (PESTYPE_SUBSTREAM_DVBSUBTITLEMAX - PESTYPE_SUBSTREAM_DVBSUBTITLE0); i++)
614 avail_dvbsubtitlechan[i] = false;
618 int Demuxer::shutdown()
620 videostream.shutdown();
621 audiostream.shutdown();
622 teletextstream.shutdown();
627 void Demuxer::flush()
629 Log::getInstance()->log("Demuxer", Log::DEBUG, "Flush called");
633 teletextstream.flush();
636 void Demuxer::flushAudio()
643 vid_seeking = aud_seeking = true;
644 video_pts = audio_pts = teletext_pts = 0;
647 void Demuxer::setAudioStream(int id)
652 void Demuxer::setVideoStream(int id)
657 void Demuxer::setTeletextStream(int id)
659 teletext_current = id;
662 void Demuxer::setDVBSubtitleStream(int id)
664 subtitle_current = id;
667 void Demuxer::setAspectRatio(enum AspectRatio ar, int taspectx, int taspecty)
669 if ((aspect_ratio != ar) || (parx != taspectx) || (pary != taspecty) )
671 Log::getInstance()->log("Demux", Log::DEBUG,
672 "Aspect ratio difference signalled");
673 if (++arcnt > 3) // avoid changing aspect ratio if glitch in signal
679 if (callback) callback->call(this);
686 bool Demuxer::writeAudio(bool * dataavail)
688 return audiostream.drain(dataavail);
691 bool Demuxer::writeVideo(bool * dataavail)
693 return videostream.drain(dataavail);
696 bool Demuxer::writeTeletext(bool * dataavail)
698 return teletextstream.drain(dataavail);
701 bool Demuxer::submitPacket(PESPacket& packet)
704 UCHAR packet_type = packet.getPacketType();
705 const UCHAR* packetdata = packet.getData();
706 if (packet_type >= PESTYPE_VID0 && packet_type <= PESTYPE_VIDMAX)
708 if (video_current == -1) video_current = packet_type;
709 if (video_current == packet_type && !vid_seeking)
711 sent = videostream.put(&packetdata[0], packet.getSize(), h264?MPTYPE_VIDEO_H264:MPTYPE_VIDEO_MPEG2,packetnum);
712 if (sent) packetnum++;
715 sent = packet.getSize();
717 else if (packet_type >= PESTYPE_AUD0 && packet_type <= PESTYPE_AUDMAX)
720 if (audio_current == -1) audio_current = packet_type;
721 avail_mpaudchan[packet_type - PESTYPE_AUD0] = true;
722 if (audio_current == packet_type && !aud_seeking)
724 UCHAR type=MPTYPE_MPEG_AUDIO;
729 type=MPTYPE_MPEG_AUDIO; break;
731 type=MPTYPE_AAC_LATM; break;
733 sent = audiostream.put(&packetdata[0], packet.getSize(), type,packetnum);
734 if (sent) packetnum++;
737 sent = packet.getSize();
739 else if (packet_type == PESTYPE_PRIVATE_1 &&
740 packet.getSubstream() >= PESTYPE_SUBSTREAM_AC30 &&
741 packet.getSubstream() <= PESTYPE_SUBSTREAM_AC3MAX)
743 avail_ac3audchan[packet.getSubstream() - PESTYPE_SUBSTREAM_AC30] = true;
744 if (packet.getSubstream() == audio_current)
746 sent = audiostream.put(&packetdata[0], packet.getSize(), (ispre_1_3_19 || livetv)? MPTYPE_AC3_PRE13 : MPTYPE_AC3,packetnum);
747 if (sent) packetnum++;
751 sent = packet.getSize();
754 else if (packet_type == PESTYPE_PRIVATE_1 &&
755 packet.getSubstream() >= PESTYPE_SUBSTREAM_DVBSUBTITLE0 &&
756 packet.getSubstream() <= PESTYPE_SUBSTREAM_DVBSUBTITLEMAX)
758 avail_dvbsubtitlechan[packet.getSubstream()-PESTYPE_SUBSTREAM_DVBSUBTITLE0]=true;
759 if (subtitle_current == -1) subtitle_current = packet.getSubstream();
760 if (subtitles && packet.getSubstream()==subtitle_current)
762 subtitles->put(packet);
764 sent = packet.getSize();
766 else if (isteletextdecoded && packet_type == PESTYPE_PRIVATE_1 &&
767 packet.getSubstream() >= PESTYPE_SUBSTREAM_TELETEXT0 &&
768 packet.getSubstream() <= PESTYPE_SUBSTREAM_TELETEXTMAX)
771 if (teletext_current == -1) teletext_current = packet.getSubstream();
772 if (teletext_current == packet.getSubstream())
774 sent = teletextstream.put(&packetdata[0], packet.getSize(), MPTYPE_TELETEXT,packetnum);
778 sent = packet.getSize();
783 sent = packet.getSize();
786 if (sent < packet.getSize()) // Stream is full.
792 void Demuxer::parsePacketDetails(PESPacket& packet)
794 if (packet.getPacketType() >= PESTYPE_AUD0 &&
795 packet.getPacketType() <= PESTYPE_AUDMAX)
797 // Extract audio PTS if it exists
800 audio_pts = packet.getPTS();
801 // We continue to seek on the audio if the video PTS that we
802 // are trying to match is ahead of the audio PTS by at most
803 // SEEK_THRESHOLD. We consider the possibility of PTS wrap.
804 if (aud_seeking && !vid_seeking &&
805 !( (video_pts_seek > audio_pts &&
806 video_pts_seek - audio_pts < SEEK_THRESHOLD)
808 (video_pts_seek < audio_pts &&
809 video_pts_seek + (1LL<<33) - audio_pts < SEEK_THRESHOLD) ))
812 Log::getInstance()->log("Demuxer", Log::DEBUG,
813 "Leaving audio sync: Audio PTS = %llu", audio_pts);
817 else if (packet.getPacketType() == PESTYPE_PRIVATE_1) // Private stream
820 //Inspired by vdr's device.c
821 int payload_begin = packet[8]+9;
822 unsigned char substream_id = packet[payload_begin];
823 unsigned char substream_type = substream_id & 0xF0;
824 unsigned char substream_index = substream_id & 0x1F;
825 pre_1_3_19_Recording: //This is for old recordings stuff and live TV
828 int old_substream=packet.getSubstream();
829 if (old_substream){ //someone else already set it, this is live tv
830 substream_id = old_substream;
831 substream_type = substream_id & 0xF0;
832 substream_index = substream_id & 0x1F;
834 substream_id = PESTYPE_PRIVATE_1;
835 substream_type = 0x80;
840 switch (substream_type)
844 packet.setSubstream(substream_id);
846 case 0xA0: //LPCM //not supported yet, is there any LPCM transmissio out there?
848 case 0x80: //ac3, currently only one ac3 track per recording supported
849 packet.setSubstream(substream_type+substream_index);
851 // Extract audio PTS if it exists
854 audio_pts = packet.getPTS();
855 // We continue to seek on the audio if the video PTS that we
856 // are trying to match is ahead of the audio PTS by at most
857 // SEEK_THRESHOLD. We consider the possibility of PTS wrap.
858 if (aud_seeking && !vid_seeking &&
859 !( (video_pts_seek > audio_pts &&
860 video_pts_seek - audio_pts < SEEK_THRESHOLD)
862 (video_pts_seek < audio_pts &&
863 video_pts_seek + (1LL<<33) - audio_pts < SEEK_THRESHOLD) ))
866 Log::getInstance()->log("Demuxer", Log::DEBUG, "Leaving audio sync: Audio PTS = %llu", audio_pts);
870 case 0x10: //Teletext Is this correct?
871 packet.setSubstream(substream_id);
872 // Extract teletxt PTS if it exists
875 teletext_pts = packet.getPTS();
881 ispre_1_3_19=true; //switching to compat mode and live tv mode
882 goto pre_1_3_19_Recording;
886 packet.setSubstream(0);
892 else if (packet.getPacketType() >= PESTYPE_VID0 &&
893 packet.getPacketType() <= PESTYPE_VIDMAX)
895 // Extract video PTS if it exists
896 if (packet.hasPTS()) video_pts = packet.getPTS();
898 // If there is a sequence header, extract information
899 UINT pos = packet.findSeqHeader(h264);
904 if (pos+6 >= packet.getSize()) return;
905 horizontal_size = ((int)packet[pos] << 4) | ((int)packet[pos+1] >> 4);
907 vertical_size = (((int)packet[pos+1] & 0xf) << 8) | (int)packet[pos+2];
909 enum AspectRatio aspect=(enum AspectRatio)(packet[pos+3] >> 4);
912 const int aspectDAR[]={0,1,1,1,4,3,16,9,221,100};
913 int aspectDARx=aspectDAR[aspect*2];
914 int aspectDARy=aspectDAR[aspect*2+1];
916 aspectx=aspectDARx*vertical_size;
917 aspecty=aspectDARy*horizontal_size;
921 // Log::getInstance()->log("Demuxer", Log::DEBUG, "PAR test1 %d %d %d %d ", aspectx,aspecty,commona,commonb);
927 commonb=commona%commonb;
930 aspectx=aspectx/commona;
931 aspecty=aspecty/commona;
932 //Log::getInstance()->log("Demuxer", Log::DEBUG, "PAR test2 %d %d %d %d %d %d %d", aspectx,aspecty,aspectDARx,aspectDARy,horizontal_size,vertical_size,commona);
934 setAspectRatio(aspect,aspectx,aspecty);
935 frame_rate = packet[pos+3] & 0x0f;
936 if (frame_rate >= 1 && frame_rate <= 8)
937 frame_rate = FrameRates[frame_rate];
940 bit_rate = ((int)packet[pos+4] << 10) |
941 ((int)packet[pos+5] << 2) |
942 ((int)packet[pos+6] >> 6);
946 /* Chris and Mark I know this is ugly, should we move this to a method of PESPacket or to NALUUnit what would be better?
947 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*/
948 NALUUnit nalu(packet.getData()+pos,packet.getSize()-pos);
949 profile=nalu.getBits(8);
950 nalu.getBits(8); //constraints
951 nalu.getBits(8); //level_idc
952 nalu.getUe(); //seq_parameter_set_id
954 if (profile==100 || profile==110 || profile==122 || profile==144)
961 nalu.getUe(); //bit depth lume
962 nalu.getUe(); //bit depth chrome
966 for (int i=0;i<8;i++){
973 for (int j=0;j<16;j++) {
975 UINT delta=nalu.getSe();
976 nextscale=(lastscale+delta+256)%256;
978 lastscale=(nextscale==0)?lastscale:nextscale;
985 for (int j=0;j<64;j++) {
987 UINT delta=nalu.getSe();
988 nextscale=(lastscale+delta+256)%256;
990 lastscale=(nextscale==0)?lastscale:nextscale;
1001 chromunitx=chromunity=1; break;
1003 chromunitx=chromunity=2; break;
1005 chromunitx=2;chromunity=1; break;
1007 chromunitx=chromunity=1; break;
1010 nalu.getUe(); //log2framenum
1011 UINT temp=nalu.getUe();
1012 if (temp==0) //pict order
1018 UINT temp2=nalu.getUe();
1019 for (UINT i=0;i<temp2;i++)
1022 nalu.getUe(); //Num refframes
1024 horizontal_size=(nalu.getUe()+1)*16;
1026 vertical_size=(nalu.getUe()+1)*16;
1027 int tinterlaced=nalu.getBits(1);
1028 vertical_size*=(2-tinterlaced);
1029 interlaced=!tinterlaced;
1031 if (!tinterlaced) nalu.getBits(1);
1033 if (nalu.getBits(1))
1035 horizontal_size-=nalu.getUe()*chromunitx;
1036 horizontal_size-=nalu.getUe()*chromunitx;
1037 vertical_size-=nalu.getUe()*(2-tinterlaced)*chromunity;
1038 vertical_size-=nalu.getUe()*(2-tinterlaced)*chromunity;
1040 if (nalu.getBits(1))
1042 if (nalu.getBits(1))
1044 UINT aspectratioidc=nalu.getBits(8);
1045 bool hasaspect=false;
1046 int aspectx,aspecty;
1047 const float aspects[]={1., 1./1.,12./11.,10./11.,16./11.,40./33.,
1048 24./11.,20./11.,32./11.,80./33.,18./11.,15./11.,64./33.,160./99.,4./3.,3./2.,2./1.};
1049 const int aspectsx[]={1, 1,12,10,16,40,
1050 24,20,32,80,18,15,64,160,4,3,2};
1051 const int aspectsy[]={1, 1,11,11,11,33,11,11,11,33,11,11,33,99,3,2,1};
1053 float aspectratio=((float) horizontal_size)/((float) vertical_size);
1054 if (aspectratioidc<=16)
1057 aspectratio*=aspects[aspectratioidc];
1058 aspectx=aspectsx[aspectratioidc];
1059 aspecty=aspectsy[aspectratioidc];
1062 else if (aspectratioidc==255)
1064 int t_sar_width=nalu.getBits(16);
1065 int t_sar_height=nalu.getBits(16);
1066 if (t_sar_width!=0 && t_sar_height!=0)
1069 aspectratio*=((float)t_sar_width)/((float)t_sar_height);
1070 aspectx=t_sar_width;
1071 aspecty=t_sar_height;
1076 if (fabs(aspectratio-16./9.)<0.1) setAspectRatio(ASPECT_16_9,aspectx,aspecty);
1077 else if (fabs(aspectratio-4./3.)<0.1) setAspectRatio(ASPECT_4_3,aspectx,aspecty);
1078 else setAspectRatio(ASPECT_1_1,aspectx,aspecty);
1085 UINT posext = packet.findSeqExtHeader(h264);
1088 interlaced=!(packet[pos+1] & 0x08); //really simple
1089 // if more than full hd is coming we need to add additional parsers here
1091 /* NALUUnit nalu(packet.getData()+posext,packet.getSize()-posext);
1092 while (!nalu.isEonalu()) {
1093 unsigned int payloadtype=0;
1094 unsigned int payloadadd=0xFF;
1095 while (payloadadd==0xFF && !nalu.isEonalu()) {
1096 payloadadd=nalu.getBits(8);
1097 payloadtype+=payloadadd;
1099 unsigned int payloadsize=0;
1101 while (payloadadd==0xFF && !nalu.isEonalu()) {
1102 payloadadd=nalu.getBits(8);
1103 payloadsize+=payloadadd;
1105 switch (payloadtype) {
1106 case 1: { // picture timing SEI
1110 while (payloadsize) { // not handled skip
1128 video_pts_seek = video_pts;
1129 Log::getInstance()->log("Demuxer", Log::DEBUG,
1130 "Entering audio sync: Video PTS = %llu", video_pts);
1131 Log::getInstance()->log("Demuxer", Log::DEBUG,
1132 "Entering audio sync: Audio PTS = %llu", audio_pts);
1139 UINT Demuxer::stripAudio(UCHAR* buf, UINT len)
1141 UINT read_pos = 0, write_pos = 0;
1142 UINT pattern, packet_length;
1143 if (len < 4) return 0;
1144 pattern = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
1145 while (read_pos + 7 <= len)
1147 pattern = ((pattern & 0xFFFFFF) << 8) | buf[read_pos+3];
1148 if (pattern < (0x100|PESTYPE_VID0) || pattern > (0x100|PESTYPE_VIDMAX))
1152 packet_length = ((buf[read_pos+4] << 8) | (buf[read_pos+5])) + 6;
1153 if (read_pos + packet_length > len)
1157 if (read_pos != write_pos)
1158 memmove(buf+write_pos, buf+read_pos, packet_length);
1159 read_pos += packet_length;
1160 write_pos += packet_length;
1161 pattern = (buf[read_pos] << 16) | (buf[read_pos+1] << 8)
1162 | (buf[read_pos+2]);
1169 void Demuxer::changeTimes(UCHAR* buf, UINT len,UINT playtime)
1171 UINT pattern, packet_length;
1173 if (len < 4) return;
1174 pattern = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
1175 while (read_pos + 7 <= len)
1177 pattern = ((pattern & 0xFFFFFF) << 8) | buf[read_pos+3];
1178 if (pattern < (0x100|PESTYPE_VID0) || pattern > (0x100|PESTYPE_VIDMAX))
1182 packet_length = ((buf[read_pos+4] << 8) | (buf[read_pos+5])) + 6;
1183 // ok we have a packet figure out if pts and dts are present and replace them
1184 if (read_pos + 19 > len) return;
1185 ULLONG new_ts=playtime*90; //play time is on ms so multiply it by 90
1186 if (buf[read_pos+7] & 0x80) { // pts is here, replace it
1187 buf[read_pos+9]=0x21 | (( new_ts>>29)& 0xde );
1188 buf[read_pos+10]=0x00 |(( new_ts>>22)& 0xff );
1189 buf[read_pos+11]=0x01 | (( new_ts>>14)& 0xfe );
1190 buf[read_pos+12]=0x00 | (( new_ts>>7)& 0xff );
1191 buf[read_pos+13]=0x01 | (( new_ts<<1)& 0xfe );
1194 if (buf[read_pos+7] & 0x40) { // pts is here, replace it
1195 buf[read_pos+14]=0x21 | (( new_ts>>29)& 0xde );
1196 buf[read_pos+15]=0x00 | (( new_ts>>22)& 0xff );
1197 buf[read_pos+16]=0x01 | (( new_ts>>14)& 0xfe );
1198 buf[read_pos+17]=0x00 | (( new_ts>>7)& 0xff );
1199 buf[read_pos+18]=0x01 | (( new_ts<<1)& 0xfe );
1201 read_pos += packet_length;
1202 pattern = (buf[read_pos] << 16) | (buf[read_pos+1] << 8)
1203 | (buf[read_pos+2]);
1209 bool Demuxer::scanForVideo(UCHAR* buf, UINT len, bool &ish264)
1214 if (len < 4) return false;
1215 pattern = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
1218 pattern = ((pattern & 0xFFFFFF) << 8) | buf[pos++];
1219 if (pattern >= (0x100|PESTYPE_VID0) && pattern <= (0x100|PESTYPE_VIDMAX))
1225 bool* Demuxer::getmpAudioChannels()
1227 return avail_mpaudchan;
1230 bool* Demuxer::getac3AudioChannels()
1232 return avail_ac3audchan;
1235 bool* Demuxer::getSubtitleChannels()
1237 return avail_dvbsubtitlechan;
1240 int Demuxer::getselSubtitleChannel()
1242 return subtitle_current;
1245 int Demuxer::getselAudioChannel()
1247 return audio_current;