Mercurial > mplayer.hg
annotate libmpdemux/video.c @ 8968:973bd8b405f8
telecine messages
author | arpi |
---|---|
date | Thu, 16 Jan 2003 23:40:42 +0000 |
parents | 95f0a0d006c5 |
children | 0d2b25a821c9 |
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 | |
8967 | 30 static int telecine=0; |
31 static float telecine_cnt=-2.5; | |
32 | |
2567 | 33 int video_read_properties(sh_video_t *sh_video){ |
34 demux_stream_t *d_video=sh_video->ds; | |
35 | |
36 // Determine image properties: | |
37 switch(d_video->demuxer->file_format){ | |
38 case DEMUXER_TYPE_AVI: | |
39 case DEMUXER_TYPE_ASF: { | |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
40 // display info: |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
41 |
5898 | 42 #if 0 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
43 if(sh_video->bih->biCompression == BI_RGB && |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
44 (sh_video->video.fccHandler == mmioFOURCC('D', 'I', 'B', ' ') || |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
45 sh_video->video.fccHandler == mmioFOURCC('R', 'G', 'B', ' ') || |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
46 sh_video->video.fccHandler == mmioFOURCC('R', 'A', 'W', ' ') || |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
47 sh_video->video.fccHandler == 0)) { |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
48 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
|
49 } |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
50 else |
5898 | 51 #endif |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
52 sh_video->format=sh_video->bih->biCompression; |
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4705
diff
changeset
|
53 |
2567 | 54 sh_video->disp_w=sh_video->bih->biWidth; |
55 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
|
56 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
57 #if 1 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
58 /* 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
|
59 if ((sh_video->format == 0x10000001) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
60 (sh_video->format == 0x10000002) || |
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','1')) || |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
62 (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
|
63 (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
|
64 (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
|
65 (sh_video->format == mmioFOURCC('m','p','e','g')) || |
7302
7d32189dbae4
typo (checking for mpeg twice, instead of mpeg & MPEG)
michael
parents:
7208
diff
changeset
|
66 (sh_video->format == mmioFOURCC('M','P','E','G'))) |
3980
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
67 { |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
68 int saved_pos, saved_type; |
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 /* 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
|
71 reading the mpeg header self! */ |
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 saved_pos = d_video->buffer_pos; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
74 saved_type = d_video->demuxer->file_format; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
75 |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
76 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
|
77 video_read_properties(sh_video); |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
78 d_video->demuxer->file_format = saved_type; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
79 d_video->buffer_pos = saved_pos; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
80 // goto mpeg_header_parser; |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
81 } |
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
82 #endif |
2567 | 83 break; |
84 } | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
85 #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
|
86 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
|
87 // 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
|
88 // for MPEG headers: |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
89 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
|
90 // 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
|
91 #endif |
7364
b2445802532c
.PVA (mpeg-like fileformat used by MultiDec && WinTV) demuxer
arpi
parents:
7302
diff
changeset
|
92 case DEMUXER_TYPE_PVA: |
2567 | 93 case DEMUXER_TYPE_MPEG_ES: |
94 case DEMUXER_TYPE_MPEG_PS: { | |
3980
cdd55ab40363
libmpeg2 is now able to decode framecopied (with mencoder) mpeg files
alex
parents:
3726
diff
changeset
|
95 //mpeg_header_parser: |
2567 | 96 // Find sequence_header first: |
97 videobuf_len=0; videobuf_code_len=0; | |
8967 | 98 telecine=0; telecine_cnt=-2.5; |
2567 | 99 mp_msg(MSGT_DECVIDEO,MSGL_V,"Searching for sequence header... ");fflush(stdout); |
100 while(1){ | |
101 int i=sync_video_packet(d_video); | |
102 if(i==0x1B3) break; // found it! | |
103 if(!i || !skip_video_packet(d_video)){ | |
8027 | 104 if(verbose>0) mp_msg(MSGT_DECVIDEO,MSGL_V,"NONE :(\n"); |
2567 | 105 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MpegNoSequHdr); |
106 return 0; | |
107 } | |
108 } | |
109 mp_msg(MSGT_DECVIDEO,MSGL_V,"OK!\n"); | |
110 // sh_video=d_video->sh;sh_video->ds=d_video; | |
111 // mpeg2_init(); | |
112 // ========= Read & process sequence header & extension ============ | |
113 if(!videobuffer) videobuffer=(char*)memalign(8,VIDEOBUFFER_SIZE); | |
114 if(!videobuffer){ | |
115 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_ShMemAllocFail); | |
116 return 0; | |
117 } | |
118 | |
119 if(!read_video_packet(d_video)){ | |
120 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_CannotReadMpegSequHdr); | |
121 return 0; | |
122 } | |
123 if(mp_header_process_sequence_header (&picture, &videobuffer[4])) { | |
124 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_BadMpegSequHdr); | |
125 return 0; | |
126 } | |
127 if(sync_video_packet(d_video)==0x1B5){ // next packet is seq. ext. | |
128 // videobuf_len=0; | |
129 int pos=videobuf_len; | |
130 if(!read_video_packet(d_video)){ | |
131 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_CannotReadMpegSequHdrEx); | |
132 return 0; | |
133 } | |
134 if(mp_header_process_extension (&picture, &videobuffer[pos+4])) { | |
135 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_BadMpegSequHdrEx); | |
136 return 0; | |
137 } | |
138 } | |
139 | |
140 // printf("picture.fps=%d\n",picture.fps); | |
141 | |
142 // fill aspect info: | |
143 switch(picture.aspect_ratio_information){ | |
144 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
|
145 case 4: // SECAM 4:3? - XXX check with more files! |
2567 | 146 case 8: // PAL VCD 4:3 |
147 case 12: // NTSC VCD 4:3 | |
148 sh_video->aspect=4.0/3.0; | |
149 break; | |
150 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9 | |
3666 | 151 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9 |
2567 | 152 sh_video->aspect=16.0/9.0; |
153 break; | |
4336 | 154 case 9: // Movie Type ??? / 640x480 |
155 sh_video->aspect=0.0; | |
156 break; | |
2567 | 157 default: |
158 fprintf(stderr,"Detected unknown aspect_ratio_information in mpeg sequence header.\n" | |
159 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC," | |
160 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer" | |
161 " developers, so that we can add support for it!\nAssuming 1:1 aspect for now.\n", | |
162 picture.aspect_ratio_information); | |
163 case 1: // VGA 1:1 - do not prescale | |
164 sh_video->aspect=0.0; | |
165 break; | |
166 } | |
167 // display info: | |
168 sh_video->format=picture.mpeg1?0x10000001:0x10000002; // mpeg video | |
169 sh_video->fps=picture.fps*0.0001f; | |
170 if(!sh_video->fps){ | |
171 // if(!force_fps){ | |
172 // fprintf(stderr,"FPS not specified (or invalid) in the header! Use the -fps option!\n"); | |
173 // return 0; | |
174 // } | |
175 sh_video->frametime=0; | |
176 } else { | |
177 sh_video->frametime=10000.0f/(float)picture.fps; | |
178 } | |
179 sh_video->disp_w=picture.display_picture_width; | |
180 sh_video->disp_h=picture.display_picture_height; | |
181 // bitrate: | |
182 if(picture.bitrate!=0x3FFFF) // unspecified/VBR ? | |
183 sh_video->i_bps=1000*picture.bitrate/16; | |
184 // info: | |
185 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"mpeg bitrate: %d (%X)\n",picture.bitrate,picture.bitrate); | |
186 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"VIDEO: %s %dx%d (aspect %d) %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", | |
187 picture.mpeg1?"MPEG1":"MPEG2", | |
188 sh_video->disp_w,sh_video->disp_h, | |
189 picture.aspect_ratio_information, | |
190 sh_video->fps, | |
191 picture.bitrate*0.5f, | |
192 picture.bitrate/16.0f ); | |
193 break; | |
194 } | |
195 } // switch(file_format) | |
196 | |
197 return 1; | |
198 } | |
199 | |
4074 | 200 static void process_userdata(unsigned char* buf,int len){ |
201 int i; | |
6791 | 202 /* if the user data starts with "CC", assume it is a CC info packet */ |
203 if(len>2 && buf[0]=='C' && buf[1]=='C'){ | |
204 // 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
|
205 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
|
206 } |
7208 | 207 if(verbose<2) return; |
4074 | 208 printf( "user_data: len=%3d %02X %02X %02X %02X '", |
209 len, buf[0], buf[1], buf[2], buf[3]); | |
210 for(i=0;i<len;i++) | |
6791 | 211 // if(buf[i]>=32 && buf[i]<127) putchar(buf[i]); |
212 if(buf[i]&0x60) putchar(buf[i]&0x7F); | |
4074 | 213 printf("'\n"); |
214 } | |
215 | |
2567 | 216 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps){ |
217 demux_stream_t *d_video=sh_video->ds; | |
218 demuxer_t *demuxer=d_video->demuxer; | |
219 float frame_time=1; | |
220 float pts1=d_video->pts; | |
8965 | 221 float pts=0; |
222 int picture_coding_type=0; | |
2567 | 223 // unsigned char* start=NULL; |
224 int in_size=0; | |
225 | |
226 *start=NULL; | |
227 | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
228 if(demuxer->file_format==DEMUXER_TYPE_MPEG_ES || demuxer->file_format==DEMUXER_TYPE_MPEG_PS |
7364
b2445802532c
.PVA (mpeg-like fileformat used by MultiDec && WinTV) demuxer
arpi
parents:
7302
diff
changeset
|
229 || demuxer->file_format==DEMUXER_TYPE_PVA |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
230 #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
|
231 || (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
|
232 #endif |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6791
diff
changeset
|
233 ){ |
2567 | 234 int in_frame=0; |
235 //float newfps; | |
236 //videobuf_len=0; | |
237 while(videobuf_len<VIDEOBUFFER_SIZE-MAX_VIDEO_PACKET_SIZE){ | |
238 int i=sync_video_packet(d_video); | |
4074 | 239 //void* buffer=&videobuffer[videobuf_len+4]; |
240 int start=videobuf_len+4; | |
2567 | 241 if(in_frame){ |
242 if(i<0x101 || i>=0x1B0){ // not slice code -> end of frame | |
7465 | 243 #if 0 |
2567 | 244 // send END OF FRAME code: |
245 videobuffer[videobuf_len+0]=0; | |
246 videobuffer[videobuf_len+1]=0; | |
247 videobuffer[videobuf_len+2]=1; | |
248 videobuffer[videobuf_len+3]=0xFF; | |
249 videobuf_len+=4; | |
250 #endif | |
251 if(!i) return -1; // EOF | |
252 break; | |
253 } | |
254 } else { | |
8965 | 255 if(i==0x100){ |
256 pts=d_video->pts; | |
257 d_video->pts=0; | |
258 } | |
2567 | 259 //if(i==0x100) in_frame=1; // picture startcode |
260 if(i>=0x101 && i<0x1B0) in_frame=1; // picture startcode | |
261 else if(!i) return -1; // EOF | |
262 } | |
263 //if(grab_frames==2 && (i==0x1B3 || i==0x1B8)) grab_frames=1; | |
264 if(!read_video_packet(d_video)) return -1; // EOF | |
265 //printf("read packet 0x%X, len=%d\n",i,videobuf_len); | |
266 // process headers: | |
267 switch(i){ | |
4074 | 268 case 0x1B3: mp_header_process_sequence_header (&picture, &videobuffer[start]);break; |
269 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
|
270 case 0x1B2: process_userdata (&videobuffer[start], videobuf_len-start);break; |
8965 | 271 case 0x100: picture_coding_type=(videobuffer[start+1] >> 3) & 7;break; |
2567 | 272 } |
273 } | |
274 | |
275 // if(videobuf_len>max_framesize) max_framesize=videobuf_len; // debug | |
276 //printf("--- SEND %d bytes\n",videobuf_len); | |
277 // if(grab_frames==1){ | |
278 // FILE *f=fopen("grab.mpg","ab"); | |
279 // fwrite(videobuffer,videobuf_len-4,1,f); | |
280 // fclose(f); | |
281 // } | |
282 | |
283 *start=videobuffer; in_size=videobuf_len; | |
284 //blit_frame=decode_video(video_out,sh_video,videobuffer,videobuf_len,drop_frame); | |
285 | |
286 #if 1 | |
287 // get mpeg fps: | |
288 //newfps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; | |
8967 | 289 if((int)(sh_video->fps*10000+0.5)!=picture.fps) if(!force_fps && !telecine){ |
2567 | 290 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); |
291 sh_video->fps=picture.fps*0.0001; | |
292 sh_video->frametime=10000.0f/(float)picture.fps; | |
293 } | |
294 #endif | |
295 | |
296 // fix mpeg2 frametime: | |
297 frame_time=(picture.display_time)*0.01f; | |
298 picture.display_time=100; | |
299 videobuf_len=0; | |
300 | |
8967 | 301 telecine_cnt*=0.9; // drift out error |
302 telecine_cnt+=frame_time-5.0/4.0; | |
303 // printf("\r telecine = %5.3f \n",telecine_cnt); | |
304 | |
305 if(telecine){ | |
306 frame_time=1; | |
307 if(telecine_cnt<-1.5 || telecine_cnt>1.5){ | |
308 mp_msg(MSGT_DECVIDEO,MSGL_INFO,MSGTR_LeaveTelecineMode); | |
309 telecine=0; | |
310 } | |
311 } else | |
312 if(telecine_cnt>-0.5 && telecine_cnt<0.5 && !force_fps){ | |
313 sh_video->fps=sh_video->fps*4/5; | |
314 sh_video->frametime=sh_video->frametime*5/4; | |
315 mp_msg(MSGT_DECVIDEO,MSGL_INFO,MSGTR_EnterTelecineMode,sh_video->fps); | |
316 telecine=1; | |
317 } | |
318 | |
2567 | 319 } else { |
320 // frame-based file formats: (AVI,ASF,MOV) | |
321 in_size=ds_get_packet(d_video,start); | |
322 if(in_size<0) return -1; // EOF | |
323 // if(in_size>max_framesize) max_framesize=in_size; | |
324 // blit_frame=decode_video(video_out,sh_video,start,in_size,drop_frame); | |
325 } | |
326 | |
327 // vdecode_time=video_time_usage-vdecode_time; | |
328 | |
329 //------------------------ frame decoded. -------------------- | |
330 | |
331 // Increase video timers: | |
332 sh_video->num_frames+=frame_time; | |
333 ++sh_video->num_frames_decoded; | |
334 | |
335 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
|
336 |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
337 // 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
|
338 if(!force_fps) switch(demuxer->file_format){ |
6423 | 339 case DEMUXER_TYPE_REAL: |
340 if(d_video->pts>0 && pts1>0 && d_video->pts>pts1) | |
341 frame_time=d_video->pts-pts1; | |
342 break; | |
6571 | 343 #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
|
344 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
|
345 #endif |
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
346 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
|
347 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
|
348 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
|
349 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
|
350 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
|
351 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
|
352 if(d>=0){ |
6423 | 353 if(d>0){ |
2567 | 354 if((int)sh_video->fps==1000) |
6423 | 355 mp_msg(MSGT_CPLAYER,MSGL_V,"\navg. framerate: %d fps \n",(int)(1.0f/d)); |
356 sh_video->frametime=d; // 1ms | |
357 sh_video->fps=1.0f/d; | |
358 } | |
5930
68cac7ecaf05
Fix frame_time for variable fps movies as it was the last frame duration.
albeu
parents:
5898
diff
changeset
|
359 frame_time = d; |
68cac7ecaf05
Fix frame_time for variable fps movies as it was the last frame duration.
albeu
parents:
5898
diff
changeset
|
360 } else { |
6423 | 361 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); |
362 // frame_time = 1/25.0; | |
2567 | 363 } |
5573
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
364 } |
2567 | 365 } |
5573
b8a8ab95c73d
generalized the cut'n'pasted variable fps code, #ifdef-ed TV until v4l is updated
arpi
parents:
5572
diff
changeset
|
366 |
4705 | 367 if(demuxer->file_format==DEMUXER_TYPE_MPEG_PS || |
8965 | 368 demuxer->file_format==DEMUXER_TYPE_MPEG_ES){ |
369 | |
370 // if(pts>0.0001) printf("\r!!! pts: %5.3f [%d] (%5.3f) \n",pts,picture_coding_type,i_pts); | |
371 | |
372 sh_video->pts+=frame_time; | |
373 if(picture_coding_type<=2 && sh_video->i_pts){ | |
374 // printf("XXX predict: %5.3f pts: %5.3f error=%5.5f \n",i_pts,d_video->pts2,i_pts-d_video->pts2); | |
375 sh_video->pts=sh_video->i_pts; | |
376 sh_video->i_pts=pts; | |
377 } else { | |
378 if(pts){ | |
379 if(picture_coding_type<=2) sh_video->i_pts=pts; | |
380 else { | |
381 // printf("BBB predict: %5.3f pts: %5.3f error=%5.5f \n",pts,d_video->pts2,pts-d_video->pts2); | |
382 sh_video->pts=pts; | |
383 } | |
384 } | |
385 } | |
386 // printf("\rIII pts: %5.3f [%d] (%5.3f) \n",d_video->pts2,picture_coding_type,i_pts); | |
387 } else | |
388 sh_video->pts=d_video->pts; | |
2567 | 389 |
390 if(frame_time_ptr) *frame_time_ptr=frame_time; | |
391 return in_size; | |
392 | |
393 } | |
394 |