Mercurial > mplayer.hg
annotate libmpdemux/video.c @ 7212:0d3af3bfab23
seek frameno.avi too - idea by cpro@posta.unizar.es
author | arpi |
---|---|
date | Sat, 31 Aug 2002 22:29:28 +0000 |
parents | 79fb883d9769 |
children | 7d32189dbae4 |
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 | |
6784
b38e38b6f88f
DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents:
6571
diff
changeset
|
22 /* sub_cc (closed captions)*/ |
b38e38b6f88f
DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents:
6571
diff
changeset
|
23 #include "../sub_cc.h" |
b38e38b6f88f
DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents:
6571
diff
changeset
|
24 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
25 /* biCompression constant */ |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
26 #define BI_RGB 0L |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
27 |
2567 | 28 static mp_mpeg_header_t picture; |
29 | |
30 int video_read_properties(sh_video_t *sh_video){ | |
31 demux_stream_t *d_video=sh_video->ds; | |
32 | |
33 // Determine image properties: | |
34 switch(d_video->demuxer->file_format){ | |
35 case DEMUXER_TYPE_AVI: | |
36 case DEMUXER_TYPE_ASF: { | |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
37 // display info: |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
38 |
5898 | 39 #if 0 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
40 if(sh_video->bih->biCompression == BI_RGB && |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
41 (sh_video->video.fccHandler == mmioFOURCC('D', 'I', 'B', ' ') || |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
42 sh_video->video.fccHandler == mmioFOURCC('R', 'G', 'B', ' ') || |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
43 sh_video->video.fccHandler == mmioFOURCC('R', 'A', 'W', ' ') || |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
44 sh_video->video.fccHandler == 0)) { |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
45 sh_video->format = mmioFOURCC(0, 'R', 'G', 'B') | sh_video->bih->biBitCount; |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
46 } |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
47 else |
5898 | 48 #endif |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
49 sh_video->format=sh_video->bih->biCompression; |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
50 |
2567 | 51 sh_video->disp_w=sh_video->bih->biWidth; |
52 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
|
53 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
54 #if 1 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
55 /* 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
|
56 if ((sh_video->format == 0x10000001) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
57 (sh_video->format == 0x10000002) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
58 (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
|
59 (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
|
60 (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
|
61 (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
|
62 (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
|
63 (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
|
64 { |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
65 int saved_pos, saved_type; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
66 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
67 /* 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
|
68 reading the mpeg header self! */ |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
69 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
70 saved_pos = d_video->buffer_pos; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
71 saved_type = d_video->demuxer->file_format; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
72 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
73 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
|
74 video_read_properties(sh_video); |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
75 d_video->demuxer->file_format = saved_type; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
76 d_video->buffer_pos = saved_pos; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
77 // goto mpeg_header_parser; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
78 } |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
79 #endif |
2567 | 80 break; |
81 } | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
82 #ifdef STREAMING_LIVE_DOT_COM |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
83 case DEMUXER_TYPE_RTP: |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
84 // If the RTP stream is a MPEG stream, then we use this code to check |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
85 // for MPEG headers: |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
86 if (!demux_is_mpeg_rtp_stream(d_video->demuxer)) break; |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
87 // otherwise fall through to... |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
88 #endif |
2567 | 89 case DEMUXER_TYPE_MPEG_ES: |
90 case DEMUXER_TYPE_MPEG_PS: { | |
3980
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
91 //mpeg_header_parser: |
2567 | 92 // Find sequence_header first: |
93 videobuf_len=0; videobuf_code_len=0; | |
94 mp_msg(MSGT_DECVIDEO,MSGL_V,"Searching for sequence header... ");fflush(stdout); | |
95 while(1){ | |
96 int i=sync_video_packet(d_video); | |
97 if(i==0x1B3) break; // found it! | |
98 if(!i || !skip_video_packet(d_video)){ | |
99 if(verbose) mp_msg(MSGT_DECVIDEO,MSGL_V,"NONE :(\n"); | |
100 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MpegNoSequHdr); | |
101 return 0; | |
102 } | |
103 } | |
104 mp_msg(MSGT_DECVIDEO,MSGL_V,"OK!\n"); | |
105 // sh_video=d_video->sh;sh_video->ds=d_video; | |
106 // mpeg2_init(); | |
107 // ========= Read & process sequence header & extension ============ | |
108 if(!videobuffer) videobuffer=(char*)memalign(8,VIDEOBUFFER_SIZE); | |
109 if(!videobuffer){ | |
110 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_ShMemAllocFail); | |
111 return 0; | |
112 } | |
113 | |
114 if(!read_video_packet(d_video)){ | |
115 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_CannotReadMpegSequHdr); | |
116 return 0; | |
117 } | |
118 if(mp_header_process_sequence_header (&picture, &videobuffer[4])) { | |
119 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_BadMpegSequHdr); | |
120 return 0; | |
121 } | |
122 if(sync_video_packet(d_video)==0x1B5){ // next packet is seq. ext. | |
123 // videobuf_len=0; | |
124 int pos=videobuf_len; | |
125 if(!read_video_packet(d_video)){ | |
126 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_CannotReadMpegSequHdrEx); | |
127 return 0; | |
128 } | |
129 if(mp_header_process_extension (&picture, &videobuffer[pos+4])) { | |
130 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_BadMpegSequHdrEx); | |
131 return 0; | |
132 } | |
133 } | |
134 | |
135 // printf("picture.fps=%d\n",picture.fps); | |
136 | |
137 // fill aspect info: | |
138 switch(picture.aspect_ratio_information){ | |
139 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
|
140 case 4: // SECAM 4:3? - XXX check with more files! |
2567 | 141 case 8: // PAL VCD 4:3 |
142 case 12: // NTSC VCD 4:3 | |
143 sh_video->aspect=4.0/3.0; | |
144 break; | |
145 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9 | |
3666 | 146 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9 |
2567 | 147 sh_video->aspect=16.0/9.0; |
148 break; | |
4336 | 149 case 9: // Movie Type ??? / 640x480 |
150 sh_video->aspect=0.0; | |
151 break; | |
2567 | 152 default: |
153 fprintf(stderr,"Detected unknown aspect_ratio_information in mpeg sequence header.\n" | |
154 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC," | |
155 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer" | |
156 " developers, so that we can add support for it!\nAssuming 1:1 aspect for now.\n", | |
157 picture.aspect_ratio_information); | |
158 case 1: // VGA 1:1 - do not prescale | |
159 sh_video->aspect=0.0; | |
160 break; | |
161 } | |
162 // display info: | |
163 sh_video->format=picture.mpeg1?0x10000001:0x10000002; // mpeg video | |
164 sh_video->fps=picture.fps*0.0001f; | |
165 if(!sh_video->fps){ | |
166 // if(!force_fps){ | |
167 // fprintf(stderr,"FPS not specified (or invalid) in the header! Use the -fps option!\n"); | |
168 // return 0; | |
169 // } | |
170 sh_video->frametime=0; | |
171 } else { | |
172 sh_video->frametime=10000.0f/(float)picture.fps; | |
173 } | |
174 sh_video->disp_w=picture.display_picture_width; | |
175 sh_video->disp_h=picture.display_picture_height; | |
176 // bitrate: | |
177 if(picture.bitrate!=0x3FFFF) // unspecified/VBR ? | |
178 sh_video->i_bps=1000*picture.bitrate/16; | |
179 // info: | |
180 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"mpeg bitrate: %d (%X)\n",picture.bitrate,picture.bitrate); | |
181 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"VIDEO: %s %dx%d (aspect %d) %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", | |
182 picture.mpeg1?"MPEG1":"MPEG2", | |
183 sh_video->disp_w,sh_video->disp_h, | |
184 picture.aspect_ratio_information, | |
185 sh_video->fps, | |
186 picture.bitrate*0.5f, | |
187 picture.bitrate/16.0f ); | |
188 break; | |
189 } | |
190 } // switch(file_format) | |
191 | |
192 return 1; | |
193 } | |
194 | |
4074 | 195 static void process_userdata(unsigned char* buf,int len){ |
196 int i; | |
6791 | 197 /* if the user data starts with "CC", assume it is a CC info packet */ |
198 if(len>2 && buf[0]=='C' && buf[1]=='C'){ | |
199 // mp_msg(MSGT_DECVIDEO,MSGL_DBG2,"video.c: process_userdata() detected Closed Captions!\n"); | |
6784
b38e38b6f88f
DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents:
6571
diff
changeset
|
200 if(subcc_enabled) subcc_process_data(buf+2,len-2); |
b38e38b6f88f
DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents:
6571
diff
changeset
|
201 } |
7208 | 202 if(verbose<2) return; |
4074 | 203 printf( "user_data: len=%3d %02X %02X %02X %02X '", |
204 len, buf[0], buf[1], buf[2], buf[3]); | |
205 for(i=0;i<len;i++) | |
6791 | 206 // if(buf[i]>=32 && buf[i]<127) putchar(buf[i]); |
207 if(buf[i]&0x60) putchar(buf[i]&0x7F); | |
4074 | 208 printf("'\n"); |
209 } | |
210 | |
2567 | 211 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps){ |
212 demux_stream_t *d_video=sh_video->ds; | |
213 demuxer_t *demuxer=d_video->demuxer; | |
214 float frame_time=1; | |
215 float pts1=d_video->pts; | |
216 // unsigned char* start=NULL; | |
217 int in_size=0; | |
218 | |
219 *start=NULL; | |
220 | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
221 if(demuxer->file_format==DEMUXER_TYPE_MPEG_ES || demuxer->file_format==DEMUXER_TYPE_MPEG_PS |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
222 #ifdef STREAMING_LIVE_DOT_COM |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
223 || (demuxer->file_format==DEMUXER_TYPE_RTP && demux_is_mpeg_rtp_stream(demuxer)) |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
224 #endif |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
225 ){ |
2567 | 226 int in_frame=0; |
227 //float newfps; | |
228 //videobuf_len=0; | |
229 while(videobuf_len<VIDEOBUFFER_SIZE-MAX_VIDEO_PACKET_SIZE){ | |
230 int i=sync_video_packet(d_video); | |
4074 | 231 //void* buffer=&videobuffer[videobuf_len+4]; |
232 int start=videobuf_len+4; | |
2567 | 233 if(in_frame){ |
234 if(i<0x101 || i>=0x1B0){ // not slice code -> end of frame | |
235 #if 1 | |
236 // send END OF FRAME code: | |
237 videobuffer[videobuf_len+0]=0; | |
238 videobuffer[videobuf_len+1]=0; | |
239 videobuffer[videobuf_len+2]=1; | |
240 videobuffer[videobuf_len+3]=0xFF; | |
241 videobuf_len+=4; | |
242 #endif | |
243 if(!i) return -1; // EOF | |
244 break; | |
245 } | |
246 } else { | |
247 //if(i==0x100) in_frame=1; // picture startcode | |
248 if(i>=0x101 && i<0x1B0) in_frame=1; // picture startcode | |
249 else if(!i) return -1; // EOF | |
250 } | |
251 //if(grab_frames==2 && (i==0x1B3 || i==0x1B8)) grab_frames=1; | |
252 if(!read_video_packet(d_video)) return -1; // EOF | |
253 //printf("read packet 0x%X, len=%d\n",i,videobuf_len); | |
254 // process headers: | |
255 switch(i){ | |
4074 | 256 case 0x1B3: mp_header_process_sequence_header (&picture, &videobuffer[start]);break; |
257 case 0x1B5: mp_header_process_extension (&picture, &videobuffer[start]);break; | |
6784
b38e38b6f88f
DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, small changes by me.
atmos4
parents:
6571
diff
changeset
|
258 case 0x1B2: process_userdata (&videobuffer[start], videobuf_len-start);break; |
2567 | 259 } |
260 } | |
261 | |
262 // if(videobuf_len>max_framesize) max_framesize=videobuf_len; // debug | |
263 //printf("--- SEND %d bytes\n",videobuf_len); | |
264 // if(grab_frames==1){ | |
265 // FILE *f=fopen("grab.mpg","ab"); | |
266 // fwrite(videobuffer,videobuf_len-4,1,f); | |
267 // fclose(f); | |
268 // } | |
269 | |
270 *start=videobuffer; in_size=videobuf_len; | |
271 //blit_frame=decode_video(video_out,sh_video,videobuffer,videobuf_len,drop_frame); | |
272 | |
273 #if 1 | |
274 // get mpeg fps: | |
275 //newfps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; | |
276 if((int)(sh_video->fps*10000+0.5)!=picture.fps) if(!force_fps){ | |
277 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); | |
278 sh_video->fps=picture.fps*0.0001; | |
279 sh_video->frametime=10000.0f/(float)picture.fps; | |
280 } | |
281 #endif | |
282 | |
283 // fix mpeg2 frametime: | |
284 frame_time=(picture.display_time)*0.01f; | |
285 picture.display_time=100; | |
286 videobuf_len=0; | |
287 | |
288 } else { | |
289 // frame-based file formats: (AVI,ASF,MOV) | |
290 in_size=ds_get_packet(d_video,start); | |
291 if(in_size<0) return -1; // EOF | |
292 // if(in_size>max_framesize) max_framesize=in_size; | |
293 // blit_frame=decode_video(video_out,sh_video,start,in_size,drop_frame); | |
294 } | |
295 | |
296 // vdecode_time=video_time_usage-vdecode_time; | |
297 | |
298 //------------------------ frame decoded. -------------------- | |
299 | |
300 // Increase video timers: | |
301 sh_video->num_frames+=frame_time; | |
302 ++sh_video->num_frames_decoded; | |
303 | |
304 frame_time*=sh_video->frametime; | |
5573
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
305 |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
306 // override frame_time for variable/unknown FPS formats: |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
307 if(!force_fps) switch(demuxer->file_format){ |
6423 | 308 case DEMUXER_TYPE_REAL: |
309 if(d_video->pts>0 && pts1>0 && d_video->pts>pts1) | |
310 frame_time=d_video->pts-pts1; | |
311 break; | |
6571 | 312 #ifdef USE_TV |
5573
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
313 case DEMUXER_TYPE_TV: |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
314 #endif |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
315 case DEMUXER_TYPE_MOV: |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
316 case DEMUXER_TYPE_FILM: |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
317 case DEMUXER_TYPE_VIVO: |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
318 case DEMUXER_TYPE_ASF: { |
5930
68cac7ecaf05
Fix frame_time for variable fps movies as it was the last frame duration.
albeu
parents:
5898
diff
changeset
|
319 float next_pts = ds_get_next_pts(d_video); |
68cac7ecaf05
Fix frame_time for variable fps movies as it was the last frame duration.
albeu
parents:
5898
diff
changeset
|
320 float d= next_pts > 0 ? next_pts - d_video->pts : d_video->pts-pts1; |
6371
622d57683187
Fix asf stream wich were giving invalid frame times because the frame time
albeu
parents:
5930
diff
changeset
|
321 if(d>=0){ |
6423 | 322 if(d>0){ |
2567 | 323 if((int)sh_video->fps==1000) |
6423 | 324 mp_msg(MSGT_CPLAYER,MSGL_V,"\navg. framerate: %d fps \n",(int)(1.0f/d)); |
325 sh_video->frametime=d; // 1ms | |
326 sh_video->fps=1.0f/d; | |
327 } | |
5930
68cac7ecaf05
Fix frame_time for variable fps movies as it was the last frame duration.
albeu
parents:
5898
diff
changeset
|
328 frame_time = d; |
68cac7ecaf05
Fix frame_time for variable fps movies as it was the last frame duration.
albeu
parents:
5898
diff
changeset
|
329 } else { |
6423 | 330 mp_msg(MSGT_CPLAYER,MSGL_WARN,"\nInvalid frame duration value (%5.3f/%5.3f => %5.3f). Defaulting to %5.3f sec.\n",d_video->pts,next_pts,d,frame_time); |
331 // frame_time = 1/25.0; | |
2567 | 332 } |
5573
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
333 } |
2567 | 334 } |
5573
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
335 |
4705 | 336 if(demuxer->file_format==DEMUXER_TYPE_MPEG_PS || |
337 demuxer->file_format==DEMUXER_TYPE_MPEG_ES) d_video->pts+=frame_time; | |
2567 | 338 |
339 if(frame_time_ptr) *frame_time_ptr=frame_time; | |
340 return in_size; | |
341 | |
342 } | |
343 |