Mercurial > mplayer.hg
annotate libmpdemux/video.c @ 4612:4edfdec1dc12
bgr24toY in MMX
author | michael |
---|---|
date | Sat, 09 Feb 2002 17:03:53 +0000 |
parents | 71fa805e84d6 |
children | f6d45a3f005c |
rev | line source |
---|---|
2567 | 1 // read video frame |
2 | |
2775 | 3 #include "config.h" |
4 | |
2567 | 5 #include <stdio.h> |
2775 | 6 #ifdef HAVE_MALLOC_H |
7 #include <malloc.h> | |
8 #endif | |
2567 | 9 #include <stdlib.h> |
3726 | 10 #include <string.h> |
2567 | 11 #include <unistd.h> |
12 | |
13 #include "mp_msg.h" | |
14 #include "help_mp.h" | |
15 | |
16 #include "stream.h" | |
17 #include "demuxer.h" | |
18 #include "stheader.h" | |
19 #include "parse_es.h" | |
20 #include "mpeg_hdr.h" | |
21 | |
22 static mp_mpeg_header_t picture; | |
23 | |
24 int video_read_properties(sh_video_t *sh_video){ | |
25 demux_stream_t *d_video=sh_video->ds; | |
26 | |
27 // Determine image properties: | |
28 switch(d_video->demuxer->file_format){ | |
29 case DEMUXER_TYPE_AVI: | |
30 case DEMUXER_TYPE_ASF: { | |
31 // display info: | |
32 sh_video->format=sh_video->bih->biCompression; | |
33 sh_video->disp_w=sh_video->bih->biWidth; | |
34 sh_video->disp_h=abs(sh_video->bih->biHeight); | |
3980
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
35 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
36 #if 1 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
37 /* hack to support decoding of mpeg1 chunks in AVI's with libmpeg2 -- 2002 alex */ |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
38 if ((sh_video->format == 0x10000001) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
39 (sh_video->format == 0x10000002) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
40 (sh_video->format == mmioFOURCC('m','p','g','1')) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
41 (sh_video->format == mmioFOURCC('M','P','G','1')) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
42 (sh_video->format == mmioFOURCC('m','p','g','2')) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
43 (sh_video->format == mmioFOURCC('M','P','G','2')) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
44 (sh_video->format == mmioFOURCC('m','p','e','g')) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
45 (sh_video->format == mmioFOURCC('m','p','e','g'))) |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
46 { |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
47 int saved_pos, saved_type; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
48 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
49 /* demuxer pos saving is required for libavcodec mpeg decoder as it's |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
50 reading the mpeg header self! */ |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
51 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
52 saved_pos = d_video->buffer_pos; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
53 saved_type = d_video->demuxer->file_format; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
54 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
55 d_video->demuxer->file_format = DEMUXER_TYPE_MPEG_ES; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
56 video_read_properties(sh_video); |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
57 d_video->demuxer->file_format = saved_type; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
58 d_video->buffer_pos = saved_pos; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
59 // goto mpeg_header_parser; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
60 } |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
61 #endif |
2567 | 62 break; |
63 } | |
64 case DEMUXER_TYPE_MPEG_ES: | |
65 case DEMUXER_TYPE_MPEG_PS: { | |
3980
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
66 //mpeg_header_parser: |
2567 | 67 // Find sequence_header first: |
68 videobuf_len=0; videobuf_code_len=0; | |
69 mp_msg(MSGT_DECVIDEO,MSGL_V,"Searching for sequence header... ");fflush(stdout); | |
70 while(1){ | |
71 int i=sync_video_packet(d_video); | |
72 if(i==0x1B3) break; // found it! | |
73 if(!i || !skip_video_packet(d_video)){ | |
74 if(verbose) mp_msg(MSGT_DECVIDEO,MSGL_V,"NONE :(\n"); | |
75 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MpegNoSequHdr); | |
76 return 0; | |
77 } | |
78 } | |
79 mp_msg(MSGT_DECVIDEO,MSGL_V,"OK!\n"); | |
80 // sh_video=d_video->sh;sh_video->ds=d_video; | |
81 // mpeg2_init(); | |
82 // ========= Read & process sequence header & extension ============ | |
83 if(!videobuffer) videobuffer=(char*)memalign(8,VIDEOBUFFER_SIZE); | |
84 if(!videobuffer){ | |
85 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_ShMemAllocFail); | |
86 return 0; | |
87 } | |
88 | |
89 if(!read_video_packet(d_video)){ | |
90 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_CannotReadMpegSequHdr); | |
91 return 0; | |
92 } | |
93 if(mp_header_process_sequence_header (&picture, &videobuffer[4])) { | |
94 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_BadMpegSequHdr); | |
95 return 0; | |
96 } | |
97 if(sync_video_packet(d_video)==0x1B5){ // next packet is seq. ext. | |
98 // videobuf_len=0; | |
99 int pos=videobuf_len; | |
100 if(!read_video_packet(d_video)){ | |
101 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_CannotReadMpegSequHdrEx); | |
102 return 0; | |
103 } | |
104 if(mp_header_process_extension (&picture, &videobuffer[pos+4])) { | |
105 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_BadMpegSequHdrEx); | |
106 return 0; | |
107 } | |
108 } | |
109 | |
110 // printf("picture.fps=%d\n",picture.fps); | |
111 | |
112 // fill aspect info: | |
113 switch(picture.aspect_ratio_information){ | |
114 case 2: // PAL/NTSC SVCD/DVD 4:3 | |
3379
84ed0593187c
Add aspect 4 to known aspect codes, probably SECAM 4:3, at least sample file was 4:3.
atmos4
parents:
2775
diff
changeset
|
115 case 4: // SECAM 4:3? - XXX check with more files! |
2567 | 116 case 8: // PAL VCD 4:3 |
117 case 12: // NTSC VCD 4:3 | |
118 sh_video->aspect=4.0/3.0; | |
119 break; | |
120 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9 | |
3666 | 121 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9 |
2567 | 122 sh_video->aspect=16.0/9.0; |
123 break; | |
4336 | 124 case 9: // Movie Type ??? / 640x480 |
125 sh_video->aspect=0.0; | |
126 break; | |
2567 | 127 default: |
128 fprintf(stderr,"Detected unknown aspect_ratio_information in mpeg sequence header.\n" | |
129 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC," | |
130 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer" | |
131 " developers, so that we can add support for it!\nAssuming 1:1 aspect for now.\n", | |
132 picture.aspect_ratio_information); | |
133 case 1: // VGA 1:1 - do not prescale | |
134 sh_video->aspect=0.0; | |
135 break; | |
136 } | |
137 // display info: | |
138 sh_video->format=picture.mpeg1?0x10000001:0x10000002; // mpeg video | |
139 sh_video->fps=picture.fps*0.0001f; | |
140 if(!sh_video->fps){ | |
141 // if(!force_fps){ | |
142 // fprintf(stderr,"FPS not specified (or invalid) in the header! Use the -fps option!\n"); | |
143 // return 0; | |
144 // } | |
145 sh_video->frametime=0; | |
146 } else { | |
147 sh_video->frametime=10000.0f/(float)picture.fps; | |
148 } | |
149 sh_video->disp_w=picture.display_picture_width; | |
150 sh_video->disp_h=picture.display_picture_height; | |
151 // bitrate: | |
152 if(picture.bitrate!=0x3FFFF) // unspecified/VBR ? | |
153 sh_video->i_bps=1000*picture.bitrate/16; | |
154 // info: | |
155 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"mpeg bitrate: %d (%X)\n",picture.bitrate,picture.bitrate); | |
156 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"VIDEO: %s %dx%d (aspect %d) %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", | |
157 picture.mpeg1?"MPEG1":"MPEG2", | |
158 sh_video->disp_w,sh_video->disp_h, | |
159 picture.aspect_ratio_information, | |
160 sh_video->fps, | |
161 picture.bitrate*0.5f, | |
162 picture.bitrate/16.0f ); | |
163 break; | |
164 } | |
165 } // switch(file_format) | |
166 | |
167 return 1; | |
168 } | |
169 | |
4074 | 170 static void process_userdata(unsigned char* buf,int len){ |
171 int i; | |
172 printf( "user_data: len=%3d %02X %02X %02X %02X '", | |
173 len, buf[0], buf[1], buf[2], buf[3]); | |
174 for(i=0;i<len;i++) | |
175 if(buf[i]>=32 && buf[i]<127) putchar(buf[i]); | |
176 printf("'\n"); | |
177 } | |
178 | |
2567 | 179 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps){ |
180 demux_stream_t *d_video=sh_video->ds; | |
181 demuxer_t *demuxer=d_video->demuxer; | |
182 float frame_time=1; | |
183 float pts1=d_video->pts; | |
184 // unsigned char* start=NULL; | |
185 int in_size=0; | |
186 | |
187 *start=NULL; | |
188 | |
189 if(demuxer->file_format==DEMUXER_TYPE_MPEG_ES || demuxer->file_format==DEMUXER_TYPE_MPEG_PS){ | |
190 int in_frame=0; | |
191 //float newfps; | |
192 //videobuf_len=0; | |
193 while(videobuf_len<VIDEOBUFFER_SIZE-MAX_VIDEO_PACKET_SIZE){ | |
194 int i=sync_video_packet(d_video); | |
4074 | 195 //void* buffer=&videobuffer[videobuf_len+4]; |
196 int start=videobuf_len+4; | |
2567 | 197 if(in_frame){ |
198 if(i<0x101 || i>=0x1B0){ // not slice code -> end of frame | |
199 #if 1 | |
200 // send END OF FRAME code: | |
201 videobuffer[videobuf_len+0]=0; | |
202 videobuffer[videobuf_len+1]=0; | |
203 videobuffer[videobuf_len+2]=1; | |
204 videobuffer[videobuf_len+3]=0xFF; | |
205 videobuf_len+=4; | |
206 #endif | |
207 if(!i) return -1; // EOF | |
208 break; | |
209 } | |
210 } else { | |
211 //if(i==0x100) in_frame=1; // picture startcode | |
212 if(i>=0x101 && i<0x1B0) in_frame=1; // picture startcode | |
213 else if(!i) return -1; // EOF | |
214 } | |
215 //if(grab_frames==2 && (i==0x1B3 || i==0x1B8)) grab_frames=1; | |
216 if(!read_video_packet(d_video)) return -1; // EOF | |
217 //printf("read packet 0x%X, len=%d\n",i,videobuf_len); | |
218 // process headers: | |
219 switch(i){ | |
4074 | 220 case 0x1B3: mp_header_process_sequence_header (&picture, &videobuffer[start]);break; |
221 case 0x1B5: mp_header_process_extension (&picture, &videobuffer[start]);break; | |
222 case 0x1B2: if(verbose) process_userdata (&videobuffer[start], videobuf_len-start);break; | |
2567 | 223 } |
224 } | |
225 | |
226 // if(videobuf_len>max_framesize) max_framesize=videobuf_len; // debug | |
227 //printf("--- SEND %d bytes\n",videobuf_len); | |
228 // if(grab_frames==1){ | |
229 // FILE *f=fopen("grab.mpg","ab"); | |
230 // fwrite(videobuffer,videobuf_len-4,1,f); | |
231 // fclose(f); | |
232 // } | |
233 | |
234 *start=videobuffer; in_size=videobuf_len; | |
235 //blit_frame=decode_video(video_out,sh_video,videobuffer,videobuf_len,drop_frame); | |
236 | |
237 #if 1 | |
238 // get mpeg fps: | |
239 //newfps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; | |
240 if((int)(sh_video->fps*10000+0.5)!=picture.fps) if(!force_fps){ | |
241 mp_msg(MSGT_CPLAYER,MSGL_WARN,"Warning! FPS changed %5.3f -> %5.3f (%f) [%d] \n",sh_video->fps,picture.fps*0.0001,sh_video->fps-picture.fps*0.0001,picture.frame_rate_code); | |
242 sh_video->fps=picture.fps*0.0001; | |
243 sh_video->frametime=10000.0f/(float)picture.fps; | |
244 } | |
245 #endif | |
246 | |
247 // fix mpeg2 frametime: | |
248 frame_time=(picture.display_time)*0.01f; | |
249 picture.display_time=100; | |
250 videobuf_len=0; | |
251 | |
252 } else { | |
253 // frame-based file formats: (AVI,ASF,MOV) | |
254 in_size=ds_get_packet(d_video,start); | |
255 if(in_size<0) return -1; // EOF | |
256 // if(in_size>max_framesize) max_framesize=in_size; | |
257 // blit_frame=decode_video(video_out,sh_video,start,in_size,drop_frame); | |
258 } | |
259 | |
260 // vdecode_time=video_time_usage-vdecode_time; | |
261 | |
262 //------------------------ frame decoded. -------------------- | |
263 | |
264 // Increase video timers: | |
265 sh_video->num_frames+=frame_time; | |
266 ++sh_video->num_frames_decoded; | |
267 | |
268 frame_time*=sh_video->frametime; | |
269 if(demuxer->file_format==DEMUXER_TYPE_ASF && !force_fps){ | |
270 // .ASF files has no fixed FPS - just frame durations! | |
271 float d=d_video->pts-pts1; | |
272 if(d>=0 && d<5) frame_time=d; | |
273 if(d>0){ | |
274 if(verbose) | |
275 if((int)sh_video->fps==1000) | |
276 mp_msg(MSGT_CPLAYER,MSGL_STATUS,"\rASF framerate: %d fps \n",(int)(1.0f/d)); | |
277 sh_video->frametime=d; // 1ms | |
278 sh_video->fps=1.0f/d; | |
279 } | |
280 } else | |
281 if(demuxer->file_format==DEMUXER_TYPE_MOV && !force_fps){ | |
282 // .MOV files has no fixed FPS - just frame durations! | |
283 frame_time=d_video->pts-pts1; | |
3526 | 284 } else |
285 if(demuxer->file_format==DEMUXER_TYPE_VIVO && !force_fps){ | |
286 // .VIVO files has no fixed FPS - just frame durations! | |
287 if(d_video->pts-pts1>0) | |
288 frame_time=d_video->pts-pts1; | |
289 mp_msg(MSGT_CPLAYER,MSGL_V,"vivo frame_time=%5.3f \n",frame_time); | |
2567 | 290 } |
291 | |
292 if(demuxer->file_format==DEMUXER_TYPE_MPEG_PS) d_video->pts+=frame_time; | |
293 | |
294 if(frame_time_ptr) *frame_time_ptr=frame_time; | |
295 return in_size; | |
296 | |
297 } | |
298 | |
299 |