2001-02-24 20:28:24 +00:00
|
|
|
// MPG/VOB file parser for DEMUXER v2.5 by A'rpi/ESP-team
|
|
|
|
|
2001-04-23 03:42:17 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2001-08-01 09:14:02 +00:00
|
|
|
#include <unistd.h>
|
2001-04-23 03:42:17 +00:00
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "mp_msg.h"
|
2001-09-26 21:35:14 +00:00
|
|
|
#include "help_mp.h"
|
2001-04-23 03:42:17 +00:00
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
#include "demuxer.h"
|
2001-08-08 19:37:45 +00:00
|
|
|
#include "parse_es.h"
|
2001-10-21 15:47:31 +00:00
|
|
|
#include "stheader.h"
|
2002-02-14 23:41:34 +00:00
|
|
|
#include "mp3_hdr.h"
|
2001-04-23 03:42:17 +00:00
|
|
|
|
2001-10-30 17:03:11 +00:00
|
|
|
#include "dvdauth.h"
|
|
|
|
|
2001-04-19 19:43:18 +00:00
|
|
|
//#define MAX_PS_PACKETSIZE 2048
|
2001-04-18 01:56:10 +00:00
|
|
|
#define MAX_PS_PACKETSIZE (224*1024)
|
|
|
|
|
2001-04-20 16:43:17 +00:00
|
|
|
static int mpeg_pts_error=0;
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
static unsigned int read_mpeg_timestamp(stream_t *s,int c){
|
|
|
|
int d,e;
|
|
|
|
unsigned int pts;
|
|
|
|
d=stream_read_word(s);
|
|
|
|
e=stream_read_word(s);
|
2001-04-20 16:43:17 +00:00
|
|
|
if( ((c&1)!=1) || ((d&1)!=1) || ((e&1)!=1) ){
|
|
|
|
++mpeg_pts_error;
|
|
|
|
return 0; // invalid pts
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
pts=(((c>>1)&7)<<30)|((d>>1)<<15)|(e>>1);
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG3,"{%d}",pts);
|
2001-02-24 20:28:24 +00:00
|
|
|
return pts;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int demux_mpg_read_packet(demuxer_t *demux,int id){
|
|
|
|
int d;
|
|
|
|
int len;
|
2001-04-17 22:04:44 +00:00
|
|
|
#ifdef HAVE_LIBCSS
|
|
|
|
int css=0;
|
|
|
|
#endif
|
2001-02-24 20:28:24 +00:00
|
|
|
unsigned char c=0;
|
|
|
|
unsigned int pts=0;
|
|
|
|
unsigned int dts=0;
|
|
|
|
demux_stream_t *ds=NULL;
|
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG3,"demux_read_packet: %X\n",id);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-19 23:50:08 +00:00
|
|
|
// if(id==0x1F0){
|
|
|
|
// demux->synced=0; // force resync after 0x1F0
|
|
|
|
// return -1;
|
|
|
|
//}
|
2001-04-18 01:56:10 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
// if(id==0x1BA) packet_start_pos=stream_tell(demux->stream);
|
2001-04-18 01:56:10 +00:00
|
|
|
if(id<0x1BC || id>=0x1F0) return -1;
|
2001-02-24 20:28:24 +00:00
|
|
|
if(id==0x1BE) return -1; // padding stream
|
|
|
|
if(id==0x1BF) return -1; // private2
|
|
|
|
|
|
|
|
len=stream_read_word(demux->stream);
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG3,"PACKET len=%d",len);
|
2001-04-19 23:50:08 +00:00
|
|
|
// if(len==62480){ demux->synced=0;return -1;} /* :) */
|
2001-04-18 01:56:10 +00:00
|
|
|
if(len==0 || len>MAX_PS_PACKETSIZE){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG2,"Invalid PS packet len: %d\n",len);
|
2001-04-18 01:56:10 +00:00
|
|
|
return -2; // invalid packet !!!!!!
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-20 16:43:17 +00:00
|
|
|
mpeg_pts_error=0;
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
while(len>0){ // Skip stuFFing bytes
|
|
|
|
c=stream_read_char(demux->stream);--len;
|
|
|
|
if(c!=0xFF)break;
|
|
|
|
}
|
|
|
|
if((c>>6)==1){ // Read (skip) STD scale & size value
|
|
|
|
// printf(" STD_scale=%d",(c>>5)&1);
|
|
|
|
d=((c&0x1F)<<8)|stream_read_char(demux->stream);
|
|
|
|
len-=2;
|
|
|
|
// printf(" STD_size=%d",d);
|
|
|
|
c=stream_read_char(demux->stream);
|
|
|
|
}
|
|
|
|
// Read System-1 stream timestamps:
|
|
|
|
if((c>>4)==2){
|
|
|
|
pts=read_mpeg_timestamp(demux->stream,c);
|
|
|
|
len-=4;
|
|
|
|
} else
|
|
|
|
if((c>>4)==3){
|
|
|
|
pts=read_mpeg_timestamp(demux->stream,c);
|
|
|
|
c=stream_read_char(demux->stream);
|
|
|
|
if((c>>4)!=1) pts=0; //printf("{ERROR4}");
|
|
|
|
dts=read_mpeg_timestamp(demux->stream,c);
|
|
|
|
len-=4+1+4;
|
|
|
|
} else
|
|
|
|
if((c>>6)==2){
|
|
|
|
int pts_flags;
|
|
|
|
int hdrlen;
|
|
|
|
// System-2 (.VOB) stream:
|
2001-04-17 22:04:44 +00:00
|
|
|
if((c>>4)&3) {
|
|
|
|
#ifdef HAVE_LIBCSS
|
|
|
|
css=1;
|
|
|
|
#else
|
2001-09-26 21:35:14 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_EncryptedVOB);
|
2001-04-17 22:04:44 +00:00
|
|
|
#endif
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
c=stream_read_char(demux->stream); pts_flags=c>>6;
|
|
|
|
c=stream_read_char(demux->stream); hdrlen=c;
|
|
|
|
len-=2;
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG3," hdrlen=%d (len=%d)",hdrlen,len);
|
|
|
|
if(hdrlen>len){ mp_msg(MSGT_DEMUX,MSGL_V,"demux_mpg: invalid header length \n"); return -1;}
|
2002-10-08 22:57:39 +00:00
|
|
|
if(pts_flags==2 && hdrlen>=5){
|
2001-02-24 20:28:24 +00:00
|
|
|
c=stream_read_char(demux->stream);
|
|
|
|
pts=read_mpeg_timestamp(demux->stream,c);
|
|
|
|
len-=5;hdrlen-=5;
|
|
|
|
} else
|
2002-10-08 22:57:39 +00:00
|
|
|
if(pts_flags==3 && hdrlen>=10){
|
2001-02-24 20:28:24 +00:00
|
|
|
c=stream_read_char(demux->stream);
|
|
|
|
pts=read_mpeg_timestamp(demux->stream,c);
|
|
|
|
c=stream_read_char(demux->stream);
|
|
|
|
dts=read_mpeg_timestamp(demux->stream,c);
|
|
|
|
len-=10;hdrlen-=10;
|
|
|
|
}
|
|
|
|
len-=hdrlen;
|
|
|
|
if(hdrlen>0) stream_skip(demux->stream,hdrlen); // skip header bytes
|
|
|
|
|
|
|
|
//============== DVD Audio sub-stream ======================
|
|
|
|
if(id==0x1BD){
|
2001-04-20 22:35:15 +00:00
|
|
|
int aid=stream_read_char(demux->stream);--len;
|
2001-02-24 20:28:24 +00:00
|
|
|
if(len<3) return -1; // invalid audio packet
|
2001-04-20 22:35:15 +00:00
|
|
|
|
|
|
|
// AID:
|
|
|
|
// 0x20..0x3F subtitle
|
|
|
|
// 0x80..0x9F AC3 audio
|
|
|
|
// 0xA0..0xBF PCM audio
|
|
|
|
|
|
|
|
if((aid & 0xE0) == 0x20){
|
|
|
|
// subtitle:
|
|
|
|
aid&=0x1F;
|
|
|
|
|
2001-04-23 03:42:17 +00:00
|
|
|
if(!demux->s_streams[aid]){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_V,"==> Found subtitle: %d\n",aid);
|
2001-04-23 03:42:17 +00:00
|
|
|
demux->s_streams[aid]=1;
|
2001-04-20 22:35:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(demux->sub->id==aid){
|
|
|
|
ds=demux->sub;
|
|
|
|
}
|
|
|
|
|
2002-01-02 19:18:11 +00:00
|
|
|
} else if((aid & 0xC0) == 0x80 || (aid & 0xE0) == 0x00) {
|
2001-04-20 22:35:15 +00:00
|
|
|
|
|
|
|
// aid=128+(aid&0x7F);
|
|
|
|
// aid=0x80..0xBF
|
2001-04-15 03:40:37 +00:00
|
|
|
|
2001-07-07 18:46:15 +00:00
|
|
|
if(!demux->a_streams[aid]) new_sh_audio(demux,aid);
|
2001-04-20 22:35:15 +00:00
|
|
|
if(demux->audio->id==-1) demux->audio->id=aid;
|
2001-04-15 03:40:37 +00:00
|
|
|
|
|
|
|
if(demux->audio->id==aid){
|
2002-10-08 22:57:39 +00:00
|
|
|
int type;
|
2001-04-15 03:40:37 +00:00
|
|
|
ds=demux->audio;
|
2001-04-23 03:42:17 +00:00
|
|
|
if(!ds->sh) ds->sh=demux->a_streams[aid];
|
2001-02-24 20:28:24 +00:00
|
|
|
// READ Packet: Skip additional audio header data:
|
2002-10-08 22:57:39 +00:00
|
|
|
c=stream_read_char(demux->stream);//num of frames
|
|
|
|
type=stream_read_char(demux->stream);//startpos hi
|
|
|
|
type=(type<<8)|stream_read_char(demux->stream);//startpos lo
|
|
|
|
// printf("\r[%02X][%04X]",c,type);
|
2001-02-24 20:28:24 +00:00
|
|
|
len-=3;
|
2002-10-08 22:57:39 +00:00
|
|
|
if((aid&0xE0)==0xA0 && len>=3){
|
|
|
|
unsigned char* hdr;
|
|
|
|
// save audio header as codecdata!
|
|
|
|
if(!((sh_audio_t*)(ds->sh))->codecdata_len){
|
|
|
|
((sh_audio_t*)(ds->sh))->codecdata=malloc(3);
|
|
|
|
((sh_audio_t*)(ds->sh))->codecdata_len=3;
|
|
|
|
}
|
|
|
|
hdr=((sh_audio_t*)(ds->sh))->codecdata;
|
|
|
|
// read LPCM header:
|
|
|
|
// emphasis[1], mute[1], rvd[1], frame number[5]:
|
|
|
|
hdr[0]=stream_read_char(demux->stream);
|
|
|
|
// printf(" [%01X:%02d]",c>>5,c&31);
|
|
|
|
// quantization[2],freq[2],rvd[1],channels[3]
|
|
|
|
hdr[1]=stream_read_char(demux->stream);
|
|
|
|
// printf("[%01X:%01X] ",c>>4,c&15);
|
|
|
|
// dynamic range control (0x80=off):
|
|
|
|
hdr[2]=stream_read_char(demux->stream);
|
|
|
|
// printf("[%02X] ",c);
|
|
|
|
len-=3;
|
|
|
|
if(len<=0) mp_msg(MSGT_DEMUX,MSGL_V,"End of packet while searching for PCM header\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
2002-10-08 22:57:39 +00:00
|
|
|
// printf(" \n");
|
2001-04-20 22:35:15 +00:00
|
|
|
} // if(demux->audio->id==aid)
|
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
} else mp_msg(MSGT_DEMUX,MSGL_V,"Unknown 0x1BD substream: 0x%02X \n",aid);
|
2001-04-20 22:35:15 +00:00
|
|
|
|
|
|
|
} //if(id==0x1BD)
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
} else {
|
2001-04-20 01:43:00 +00:00
|
|
|
if(c!=0x0f){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_V," {ERROR5,c=%d} \n",c);
|
2001-04-20 01:43:00 +00:00
|
|
|
return -1; // invalid packet !!!!!!
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
2001-08-17 00:40:25 +00:00
|
|
|
if(mpeg_pts_error) mp_msg(MSGT_DEMUX,MSGL_V," {PTS_err:%d} \n",mpeg_pts_error);
|
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG3," => len=%d\n",len);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-18 01:56:10 +00:00
|
|
|
// if(len<=0 || len>MAX_PS_PACKETSIZE) return -1; // Invalid packet size
|
|
|
|
if(len<=0 || len>MAX_PS_PACKETSIZE){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG2,"Invalid PS data len: %d\n",len);
|
2001-04-18 01:56:10 +00:00
|
|
|
return -1; // invalid packet !!!!!!
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
if(id>=0x1C0 && id<=0x1DF){
|
|
|
|
// mpeg audio
|
|
|
|
int aid=id-0x1C0;
|
2001-07-07 18:46:15 +00:00
|
|
|
if(!demux->a_streams[aid]) new_sh_audio(demux,aid);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(demux->audio->id==-1) demux->audio->id=aid;
|
|
|
|
if(demux->audio->id==aid){
|
|
|
|
ds=demux->audio;
|
2001-04-23 03:42:17 +00:00
|
|
|
if(!ds->sh) ds->sh=demux->a_streams[aid];
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
if(id>=0x1E0 && id<=0x1EF){
|
|
|
|
// mpeg video
|
|
|
|
int aid=id-0x1E0;
|
2001-07-07 18:46:15 +00:00
|
|
|
if(!demux->v_streams[aid]) new_sh_video(demux,aid);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(demux->video->id==-1) demux->video->id=aid;
|
2001-04-15 03:40:37 +00:00
|
|
|
if(demux->video->id==aid){
|
|
|
|
ds=demux->video;
|
2001-04-23 03:42:17 +00:00
|
|
|
if(!ds->sh) ds->sh=demux->v_streams[aid];
|
2001-04-15 03:40:37 +00:00
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ds){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG2,"DEMUX_MPG: Read %d data bytes from packet %04X\n",len,id);
|
2001-02-24 20:28:24 +00:00
|
|
|
// printf("packet start = 0x%X \n",stream_tell(demux->stream)-packet_start_pos);
|
2001-04-17 22:04:44 +00:00
|
|
|
#ifdef HAVE_LIBCSS
|
2001-04-20 14:32:09 +00:00
|
|
|
if (css) {
|
2002-01-04 13:08:14 +00:00
|
|
|
if (descrambling) dvd_css_descramble(demux->stream->buffer,key_title); else
|
2001-09-26 21:35:14 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_EncryptedVOBauth);
|
2001-04-20 14:32:09 +00:00
|
|
|
}
|
2001-04-17 22:04:44 +00:00
|
|
|
#endif
|
2001-08-28 21:35:04 +00:00
|
|
|
ds_read_packet(ds,demux->stream,len,pts/90000.0f,demux->filepos,0);
|
2001-04-20 23:00:11 +00:00
|
|
|
// if(ds==demux->sub) parse_dvdsub(ds->last->buffer,ds->last->len);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG2,"DEMUX_MPG: Skipping %d data bytes from packet %04X\n",len,id);
|
2001-04-19 23:50:08 +00:00
|
|
|
if(len<=2356) stream_skip(demux->stream,len);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-04-23 03:42:17 +00:00
|
|
|
int num_elementary_packets100=0;
|
|
|
|
int num_elementary_packets101=0;
|
2003-01-23 02:12:15 +00:00
|
|
|
int num_elementary_packets12x=0;
|
2001-06-18 22:11:04 +00:00
|
|
|
int num_elementary_packets1B6=0;
|
2001-07-16 20:21:26 +00:00
|
|
|
int num_elementary_packetsPES=0;
|
2003-04-04 15:38:46 +00:00
|
|
|
int num_h264_slice=0; //combined slice
|
|
|
|
int num_h264_dpa=0; //DPA Slice
|
|
|
|
int num_h264_dpb=0; //DPB Slice
|
|
|
|
int num_h264_dpc=0; //DPC Slice
|
|
|
|
int num_h264_idr=0; //IDR Slice
|
|
|
|
int num_h264_sps=0;
|
|
|
|
int num_h264_pps=0;
|
|
|
|
|
2002-02-14 23:41:34 +00:00
|
|
|
int num_mp3audio_packets=0;
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
int demux_mpg_es_fill_buffer(demuxer_t *demux){
|
|
|
|
// Elementary video stream
|
|
|
|
if(demux->stream->eof) return 0;
|
|
|
|
demux->filepos=stream_tell(demux->stream);
|
2001-08-28 21:35:04 +00:00
|
|
|
ds_read_packet(demux->video,demux->stream,STREAM_BUFFER_SIZE,0,demux->filepos,0);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int demux_mpg_fill_buffer(demuxer_t *demux){
|
|
|
|
unsigned int head=0;
|
|
|
|
int skipped=0;
|
2002-04-12 00:47:02 +00:00
|
|
|
int max_packs=256; // 512kbyte
|
2001-02-24 20:28:24 +00:00
|
|
|
int ret=0;
|
|
|
|
|
|
|
|
// System stream
|
|
|
|
do{
|
|
|
|
demux->filepos=stream_tell(demux->stream);
|
|
|
|
head=stream_read_dword(demux->stream);
|
2001-04-20 16:43:17 +00:00
|
|
|
if((head&0xFFFFFF00)!=0x100){
|
|
|
|
// sync...
|
|
|
|
demux->filepos-=skipped;
|
|
|
|
while(1){
|
2001-04-19 23:50:08 +00:00
|
|
|
int c=stream_read_char(demux->stream);
|
|
|
|
if(c<0) break; //EOF
|
|
|
|
head<<=8;
|
|
|
|
if(head!=0x100){
|
|
|
|
head|=c;
|
2002-02-14 23:41:34 +00:00
|
|
|
if(mp_check_mp3_header(head)) ++num_mp3audio_packets;
|
2001-04-19 23:50:08 +00:00
|
|
|
++skipped; //++demux->filepos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
head|=c;
|
|
|
|
break;
|
2001-04-20 16:43:17 +00:00
|
|
|
}
|
|
|
|
demux->filepos+=skipped;
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
if(stream_eof(demux->stream)) break;
|
|
|
|
// sure: head=0x000001XX
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG4,"*** head=0x%X\n",head);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(demux->synced==0){
|
2001-12-26 16:34:06 +00:00
|
|
|
if(head==0x1BA) demux->synced=1; //else
|
|
|
|
// if(head==0x1BD || (head>=0x1C0 && head<=0x1EF)) demux->synced=3; // PES?
|
2001-02-24 20:28:24 +00:00
|
|
|
} else
|
|
|
|
if(demux->synced==1){
|
2001-06-01 17:56:06 +00:00
|
|
|
if(head==0x1BB || head==0x1BD || (head>=0x1C0 && head<=0x1EF)){
|
2001-02-24 20:28:24 +00:00
|
|
|
demux->synced=2;
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_V,"system stream synced at 0x%X (%d)!\n",demux->filepos,demux->filepos);
|
2001-04-19 23:50:08 +00:00
|
|
|
num_elementary_packets100=0; // requires for re-sync!
|
|
|
|
num_elementary_packets101=0; // requires for re-sync!
|
2001-02-24 20:28:24 +00:00
|
|
|
} else demux->synced=0;
|
|
|
|
} // else
|
2001-12-01 22:09:18 +00:00
|
|
|
if(demux->synced>=2){
|
2001-02-24 20:28:24 +00:00
|
|
|
ret=demux_mpg_read_packet(demux,head);
|
|
|
|
if(!ret)
|
|
|
|
if(--max_packs==0){
|
|
|
|
demux->stream->eof=1;
|
2001-09-26 21:35:14 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_DoesntContainSelectedStream);
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2001-12-01 22:09:18 +00:00
|
|
|
if(demux->synced==3) demux->synced=(ret==1)?2:0; // PES detect
|
2001-02-24 20:28:24 +00:00
|
|
|
} else {
|
|
|
|
if(head>=0x100 && head<0x1B0){
|
2001-06-18 22:11:04 +00:00
|
|
|
if(head==0x100) ++num_elementary_packets100; else
|
2003-01-23 02:12:15 +00:00
|
|
|
if(head==0x101) ++num_elementary_packets101; else
|
|
|
|
if(head>=0x120 && head<=0x12F) ++num_elementary_packets12x;
|
2003-04-04 15:38:46 +00:00
|
|
|
|
|
|
|
if((head&~0x60) == 0x101) ++num_h264_slice; else
|
|
|
|
if((head&~0x60) == 0x102) ++num_h264_dpa; else
|
|
|
|
if((head&~0x60) == 0x103) ++num_h264_dpb; else
|
|
|
|
if((head&~0x60) == 0x104) ++num_h264_dpc; else
|
|
|
|
if((head&~0x60) == 0x105 && head != 0x105) ++num_h264_idr; else
|
|
|
|
if((head&~0x60) == 0x107 && head != 0x107) ++num_h264_sps; else
|
|
|
|
if((head&~0x60) == 0x108 && head != 0x108) ++num_h264_pps;
|
|
|
|
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_DBG3,"Opps... elementary video packet found: %03X\n",head);
|
2001-07-16 20:21:26 +00:00
|
|
|
} else
|
2002-02-14 23:41:34 +00:00
|
|
|
if((head>=0x1C0 && head<0x1F0) || head==0x1BD){
|
2001-07-16 20:21:26 +00:00
|
|
|
++num_elementary_packetsPES;
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_DBG3,"Opps... PES packet found: %03X\n",head);
|
2001-06-18 22:11:04 +00:00
|
|
|
} else
|
|
|
|
if(head==0x1B6) ++num_elementary_packets1B6;
|
2001-02-24 20:28:24 +00:00
|
|
|
#if 1
|
2001-07-16 20:21:26 +00:00
|
|
|
if( ( (num_elementary_packets100>50 && num_elementary_packets101>50) ||
|
|
|
|
(num_elementary_packetsPES>50) ) && skipped>4000000){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_V,"sync_mpeg_ps: seems to be ES/PES stream...\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
demux->stream->eof=1;
|
|
|
|
break;
|
2002-02-14 23:41:34 +00:00
|
|
|
}
|
|
|
|
if(num_mp3audio_packets>100 && num_elementary_packets100<10){
|
|
|
|
mp_msg(MSGT_DEMUX,MSGL_V,"sync_mpeg_ps: seems to be MP3 stream...\n");
|
|
|
|
demux->stream->eof=1;
|
|
|
|
break;
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} while(ret!=1);
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_dbg(MSGT_DEMUX,MSGL_DBG2,"demux: %d bad bytes skipped\n",skipped);
|
2001-02-24 20:28:24 +00:00
|
|
|
if(demux->stream->eof){
|
2001-08-17 00:40:25 +00:00
|
|
|
mp_msg(MSGT_DEMUX,MSGL_V,"MPEG Stream reached EOF\n");
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-11-06 23:54:29 +00:00
|
|
|
extern void resync_audio_stream(sh_audio_t *sh_audio);
|
|
|
|
extern void skip_audio_frame(sh_audio_t *sh_audio);
|
|
|
|
|
2001-08-08 19:37:45 +00:00
|
|
|
void demux_seek_mpg(demuxer_t *demuxer,float rel_seek_secs,int flags){
|
|
|
|
demux_stream_t *d_audio=demuxer->audio;
|
|
|
|
demux_stream_t *d_video=demuxer->video;
|
|
|
|
sh_audio_t *sh_audio=d_audio->sh;
|
|
|
|
sh_video_t *sh_video=d_video->sh;
|
|
|
|
|
|
|
|
//================= seek in MPEG ==========================
|
2001-08-22 19:03:15 +00:00
|
|
|
off_t newpos=(flags&1)?demuxer->movi_start:demuxer->filepos;
|
|
|
|
|
|
|
|
if(flags&2){
|
|
|
|
// float seek 0..1
|
|
|
|
newpos+=(demuxer->movi_end-demuxer->movi_start)*rel_seek_secs;
|
|
|
|
} else {
|
|
|
|
// time seek (secs)
|
|
|
|
if(!sh_video->i_bps) // unspecified or VBR
|
|
|
|
newpos+=2324*75*rel_seek_secs; // 174.3 kbyte/sec
|
2001-08-08 19:37:45 +00:00
|
|
|
else
|
2001-08-22 19:03:15 +00:00
|
|
|
newpos+=sh_video->i_bps*rel_seek_secs;
|
|
|
|
}
|
|
|
|
|
2002-01-27 20:10:28 +00:00
|
|
|
if(newpos<demuxer->movi_start){
|
|
|
|
if(demuxer->stream->type!=STREAMTYPE_VCD) demuxer->movi_start=0; // for VCD
|
|
|
|
if(newpos<demuxer->movi_start) newpos=demuxer->movi_start;
|
|
|
|
}
|
2001-08-08 19:37:45 +00:00
|
|
|
|
|
|
|
#ifdef _LARGEFILE_SOURCE
|
|
|
|
newpos&=~((long long)STREAM_BUFFER_SIZE-1); /* sector boundary */
|
|
|
|
#else
|
|
|
|
newpos&=~(STREAM_BUFFER_SIZE-1); /* sector boundary */
|
|
|
|
#endif
|
|
|
|
stream_seek(demuxer->stream,newpos);
|
|
|
|
|
|
|
|
// re-sync video:
|
|
|
|
videobuf_code_len=0; // reset ES stream buffer
|
|
|
|
|
|
|
|
ds_fill_buffer(d_video);
|
|
|
|
if(sh_audio){
|
|
|
|
ds_fill_buffer(d_audio);
|
|
|
|
resync_audio_stream(sh_audio);
|
|
|
|
}
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
int i;
|
|
|
|
if(sh_audio && !d_audio->eof && d_video->pts && d_audio->pts){
|
|
|
|
float a_pts=d_audio->pts;
|
|
|
|
a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
|
|
|
|
if(d_video->pts>a_pts){
|
|
|
|
skip_audio_frame(sh_audio); // sync audio
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i=sync_video_packet(d_video);
|
|
|
|
if(i==0x1B3 || i==0x1B8) break; // found it!
|
|
|
|
if(!i || !skip_video_packet(d_video)) break; // EOF?
|
|
|
|
}
|
2002-11-16 03:42:14 +00:00
|
|
|
}
|
2001-08-08 19:37:45 +00:00
|
|
|
|
2002-11-16 03:42:14 +00:00
|
|
|
int demux_mpg_control(demuxer_t *demuxer,int cmd, void *arg){
|
2002-11-23 10:58:14 +00:00
|
|
|
/* demux_stream_t *d_audio=demuxer->audio;*/
|
2002-11-16 03:42:14 +00:00
|
|
|
demux_stream_t *d_video=demuxer->video;
|
2002-11-23 10:58:14 +00:00
|
|
|
/* sh_audio_t *sh_audio=d_audio->sh;*/
|
2002-11-16 03:42:14 +00:00
|
|
|
sh_video_t *sh_video=d_video->sh;
|
2001-08-08 19:37:45 +00:00
|
|
|
|
2002-11-16 03:42:14 +00:00
|
|
|
switch(cmd) {
|
|
|
|
case DEMUXER_CTRL_GET_TIME_LENGTH:
|
|
|
|
if(!sh_video->i_bps) // unspecified or VBR
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
|
|
|
*((unsigned long *)arg)=(demuxer->movi_end-demuxer->movi_start)/sh_video->i_bps;
|
|
|
|
return DEMUXER_CTRL_GUESS;
|
|
|
|
|
|
|
|
case DEMUXER_CTRL_GET_PERCENT_POS:
|
|
|
|
if (demuxer->movi_end==demuxer->movi_start)
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
|
|
|
*((int *)arg)=(int)((demuxer->filepos-demuxer->movi_start)/((demuxer->movi_end-demuxer->movi_start)/100));
|
|
|
|
return DEMUXER_CTRL_OK;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return DEMUXER_CTRL_NOTIMPL;
|
|
|
|
}
|
2001-08-08 19:37:45 +00:00
|
|
|
}
|