annotate demux_mpg.c @ 549:c97496b240c1

new options: -dumpaudio and -dumpvideo
author arpi_esp
date Fri, 20 Apr 2001 18:28:13 +0000
parents 3e46eab9f782
children c2a449f90087
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 // MPG/VOB file parser for DEMUXER v2.5 by A'rpi/ESP-team
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2
524
9105fc95636c A fast'n'ugly hack to correct DVD VOB playback problems
lgb
parents: 501
diff changeset
3 //#define MAX_PS_PACKETSIZE 2048
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
4 #define MAX_PS_PACKETSIZE (224*1024)
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
5
547
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
6 static int mpeg_pts_error=0;
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
7
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 static unsigned int read_mpeg_timestamp(stream_t *s,int c){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 int d,e;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10 unsigned int pts;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 d=stream_read_word(s);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12 e=stream_read_word(s);
547
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
13 if( ((c&1)!=1) || ((d&1)!=1) || ((e&1)!=1) ){
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
14 ++mpeg_pts_error;
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
15 return 0; // invalid pts
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
16 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
17 pts=(((c>>1)&7)<<30)|((d>>1)<<15)|(e>>1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
18 if(verbose>=3) printf("{%d}",pts);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
19 return pts;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
20 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
22 //static char dvdaudio_table[256];
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
23 //static unsigned int packet_start_pos=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
24
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25 static int demux_mpg_read_packet(demuxer_t *demux,int id){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
26 int d;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
27 int len;
492
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
28 #ifdef HAVE_LIBCSS
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
29 int css=0;
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
30 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
31 unsigned char c=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
32 unsigned int pts=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
33 unsigned int dts=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
34 demux_stream_t *ds=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
35
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
36 if(verbose>=3) printf("demux_read_packet: %X\n",id);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
37
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
38 // if(id==0x1F0){
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
39 // demux->synced=0; // force resync after 0x1F0
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
40 // return -1;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
41 //}
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
42
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
43 // if(id==0x1BA) packet_start_pos=stream_tell(demux->stream);
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
44 if(id<0x1BC || id>=0x1F0) return -1;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
45 if(id==0x1BE) return -1; // padding stream
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
46 if(id==0x1BF) return -1; // private2
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
47
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
48 len=stream_read_word(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
49 if(verbose>=3) printf("PACKET len=%d",len);
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
50 // if(len==62480){ demux->synced=0;return -1;} /* :) */
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
51 // if(len==0 || len>MAX_PS_PACKETSIZE) return -2; // invalid packet !!!!!!
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
52 if(len==0 || len>MAX_PS_PACKETSIZE){
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
53 if(verbose>=2) printf("Invalid PS packet len: %d\n",len);
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
54 return -2; // invalid packet !!!!!!
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
55 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
56
547
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
57 mpeg_pts_error=0;
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
58
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
59 while(len>0){ // Skip stuFFing bytes
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
60 c=stream_read_char(demux->stream);--len;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
61 if(c!=0xFF)break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
62 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
63 if((c>>6)==1){ // Read (skip) STD scale & size value
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
64 // printf(" STD_scale=%d",(c>>5)&1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
65 d=((c&0x1F)<<8)|stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
66 len-=2;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
67 // printf(" STD_size=%d",d);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
68 c=stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
69 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
70 // Read System-1 stream timestamps:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
71 if((c>>4)==2){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
72 pts=read_mpeg_timestamp(demux->stream,c);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
73 len-=4;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
74 } else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
75 if((c>>4)==3){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
76 pts=read_mpeg_timestamp(demux->stream,c);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
77 c=stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
78 if((c>>4)!=1) pts=0; //printf("{ERROR4}");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
79 dts=read_mpeg_timestamp(demux->stream,c);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
80 len-=4+1+4;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
81 } else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
82 if((c>>6)==2){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
83 int pts_flags;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
84 int hdrlen;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
85 // System-2 (.VOB) stream:
492
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
86 if((c>>4)&3) {
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
87 #ifdef HAVE_LIBCSS
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
88 css=1;
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
89 #else
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
90 printf("Encrypted VOB file (not compiled with libcss support)! Read file DOCS/DVD\n");
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
91 #endif
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
92 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
93 c=stream_read_char(demux->stream); pts_flags=c>>6;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
94 c=stream_read_char(demux->stream); hdrlen=c;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
95 len-=2;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
96 if(verbose>=3) printf(" hdrlen=%d (len=%d)",hdrlen,len);
242
18e5c0f63947 fix: packet longer than 4096 bytes
arpi_esp
parents: 1
diff changeset
97 if(hdrlen>len){ printf("demux_mpg: invalid header length \n"); return -1;}
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
98 if(pts_flags==2){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
99 c=stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
100 pts=read_mpeg_timestamp(demux->stream,c);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
101 len-=5;hdrlen-=5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
102 } else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
103 if(pts_flags==3){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
104 c=stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
105 pts=read_mpeg_timestamp(demux->stream,c);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
106 c=stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
107 dts=read_mpeg_timestamp(demux->stream,c);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
108 len-=10;hdrlen-=10;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
109 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
110 len-=hdrlen;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
111 if(hdrlen>0) stream_skip(demux->stream,hdrlen); // skip header bytes
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
112
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
113 //============== DVD Audio sub-stream ======================
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
114 if(id==0x1BD){
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
115 int aid=128+(stream_read_char(demux->stream)&0x7F);--len;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
116 if(len<3) return -1; // invalid audio packet
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
117
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
118 if(!avi_header.a_streams[aid]) new_sh_audio(aid);
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
119 if(demux->audio->id==-1) demux->audio->id=aid;
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
120
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
121 if(demux->audio->id==aid){
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
122 // int type;
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
123 ds=demux->audio;
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
124 if(!ds->sh) ds->sh=avi_header.a_streams[aid];
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
125 // READ Packet: Skip additional audio header data:
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
126 c=stream_read_char(demux->stream);//type=c;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
127 c=stream_read_char(demux->stream);//type|=c<<8;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
128 c=stream_read_char(demux->stream);//type|=c<<16;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
129 // printf("[%06X]",type);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
130 len-=3;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
131 if(ds->type==-1){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
132 // autodetect type
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
133 ds->type=((aid&0x70)==0x20)?2:3;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
134 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
135 if(ds->type==2 && len>=2){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
136 // read PCM header
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
137 int head;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
138 head=stream_read_char(demux->stream); head=c<<8;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
139 c=stream_read_char(demux->stream); head|=c; len-=2;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
140 while(len>0 && head!=0x180){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
141 head=c<<8;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
142 c=stream_read_char(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
143 head|=c;--len;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
144 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
145 if(!len) printf("End of packet while searching for PCM header\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
146 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
147 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
148 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
149
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
150 } else {
539
48f0c6f0519f dumb bug here too :)
arpi_esp
parents: 536
diff changeset
151 if(c!=0x0f){
541
b382156bff40 Embarrassing messages while playing DVD are moved to verbose level 1
lgb
parents: 539
diff changeset
152 if (verbose>=1) printf(" {ERROR5,c=%d} \n",c);
539
48f0c6f0519f dumb bug here too :)
arpi_esp
parents: 536
diff changeset
153 return -1; // invalid packet !!!!!!
48f0c6f0519f dumb bug here too :)
arpi_esp
parents: 536
diff changeset
154 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
155 }
547
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
156 if(mpeg_pts_error) printf(" {PTS_err:%d} \n",mpeg_pts_error);
242
18e5c0f63947 fix: packet longer than 4096 bytes
arpi_esp
parents: 1
diff changeset
157 if(verbose>=3) printf(" => len=%d\n",len);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
158
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
159 // if(len<=0 || len>MAX_PS_PACKETSIZE) return -1; // Invalid packet size
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
160 if(len<=0 || len>MAX_PS_PACKETSIZE){
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
161 if(verbose>=2) printf("Invalid PS data len: %d\n",len);
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
162 return -1; // invalid packet !!!!!!
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
163 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
164
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
165 if(id>=0x1C0 && id<=0x1DF){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
166 // mpeg audio
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
167 int aid=id-0x1C0;
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
168 if(!avi_header.a_streams[aid]) new_sh_audio(aid);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
169 if(demux->audio->id==-1) demux->audio->id=aid;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
170 if(demux->audio->id==aid){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
171 ds=demux->audio;
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
172 if(!ds->sh) ds->sh=avi_header.a_streams[aid];
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
173 if(ds->type==-1) ds->type=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
174 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
175 } else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
176 if(id>=0x1E0 && id<=0x1EF){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
177 // mpeg video
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
178 int aid=id-0x1E0;
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
179 if(!avi_header.v_streams[aid]) new_sh_video(aid);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
180 if(demux->video->id==-1) demux->video->id=aid;
426
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
181 if(demux->video->id==aid){
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
182 ds=demux->video;
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
183 if(!ds->sh) ds->sh=avi_header.v_streams[aid];
26e513f392b2 new stream selection code
arpi_esp
parents: 397
diff changeset
184 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
185 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
186
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
187 if(ds){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
188 if(verbose>=2) printf("DEMUX_MPG: Read %d data bytes from packet %04X\n",len,id);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
189 // printf("packet start = 0x%X \n",stream_tell(demux->stream)-packet_start_pos);
492
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
190 #ifdef HAVE_LIBCSS
546
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 541
diff changeset
191 if (css) {
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 541
diff changeset
192 if (descrambling) CSSDescramble(demux->stream->buffer,key_title); else
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 541
diff changeset
193 printf("Encrypted stream but authentication was not requested by you!!\n");
22ed5f5821e2 command line requested DVD key support for Arpi :)
lgb
parents: 541
diff changeset
194 }
492
888a85621f50 preliminary DVD support using libcss
lgb
parents: 426
diff changeset
195 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
196 ds_read_packet(ds,demux->stream,len,pts/90000.0f,0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
197 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
198 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
199 if(verbose>=2) printf("DEMUX_MPG: Skipping %d data bytes from packet %04X\n",len,id);
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
200 if(len<=2356) stream_skip(demux->stream,len);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
201 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
202 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
203
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
204 static int num_elementary_packets100=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
205 static int num_elementary_packets101=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
206
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
207 int demux_mpg_es_fill_buffer(demuxer_t *demux){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
208 //if(demux->type==DEMUXER_TYPE_MPEG_ES)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
209 // Elementary video stream
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
210 if(demux->stream->eof) return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
211 demux->filepos=stream_tell(demux->stream);
501
bfc86f5a5ba7 PES supported again, VOB 0x1F0 problems fixed
arpi_esp
parents: 494
diff changeset
212 ds_read_packet(demux->video,demux->stream,STREAM_BUFFER_SIZE,0,0);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
213 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
214 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
215
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
216 int demux_mpg_fill_buffer(demuxer_t *demux){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
217 unsigned int head=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
218 int skipped=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
219 int max_packs=128;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
220 int ret=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
221
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
222 // System stream
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
223 do{
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
224 demux->filepos=stream_tell(demux->stream);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
225 head=stream_read_dword(demux->stream);
547
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
226 if((head&0xFFFFFF00)!=0x100){
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
227 // sync...
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
228 demux->filepos-=skipped;
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
229 while(1){
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
230 int c=stream_read_char(demux->stream);
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
231 if(c<0) break; //EOF
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
232 head<<=8;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
233 if(head!=0x100){
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
234 head|=c;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
235 ++skipped; //++demux->filepos;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
236 continue;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
237 }
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
238 head|=c;
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
239 break;
547
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
240 }
3e46eab9f782 small bugfix in the new optimized head sync code
arpi_esp
parents: 546
diff changeset
241 demux->filepos+=skipped;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
242 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
243 if(stream_eof(demux->stream)) break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
244 // sure: head=0x000001XX
524
9105fc95636c A fast'n'ugly hack to correct DVD VOB playback problems
lgb
parents: 501
diff changeset
245 if(verbose>=4) printf("*** head=0x%X\n",head);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
246 if(demux->synced==0){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
247 if(head==0x1BA) demux->synced=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
248 } else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
249 if(demux->synced==1){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
250 if(head==0x1BB || (head>=0x1C0 && head<=0x1EF)){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
251 demux->synced=2;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
252 if(verbose) printf("system stream synced at 0x%X (%d)!\n",demux->filepos,demux->filepos);
536
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
253 num_elementary_packets100=0; // requires for re-sync!
3c9b3ce721f0 PES vs. VOB problem... yet another solution
arpi_esp
parents: 524
diff changeset
254 num_elementary_packets101=0; // requires for re-sync!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
255 } else demux->synced=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
256 } // else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
257 if(demux->synced==2){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
258 ret=demux_mpg_read_packet(demux,head);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
259 if(!ret)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
260 if(--max_packs==0){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
261 demux->stream->eof=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
262 printf("demux: file doesn't contain the selected audio or video stream\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
263 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
264 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
265 } else {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
266 if(head>=0x100 && head<0x1B0){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
267 if(head==0x100)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
268 ++num_elementary_packets100;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
269 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
270 if(head==0x101) ++num_elementary_packets101;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
271 if(verbose>=3) printf("Opps... elementary video packet found: %03X\n",head);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
272 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
273 #if 1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
274 if(num_elementary_packets100>50 && num_elementary_packets101>50
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
275 && skipped>4000000){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
276 if(verbose) printf("sync_mpeg_ps: seems to be ES stream...\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
277 demux->stream->eof=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
278 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
279 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
280 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
281 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
282 } while(ret!=1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
283 if(verbose>=2) printf("demux: %d bad bytes skipped\n",skipped);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
284 if(demux->stream->eof){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
285 if(verbose>=2) printf("MPEG Stream reached EOF\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
286 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
287 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
288 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
289 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
290