Mercurial > mplayer.hg
annotate mplayer.c @ 1009:c51d7e4853d6
finished .asf seeking
author | arpi_esp |
---|---|
date | Mon, 04 Jun 2001 19:30:24 +0000 |
parents | 90682d6f84f5 |
children | e01dc1a88edf |
rev | line source |
---|---|
1 | 1 // AVI & MPEG Player v0.11 (C) 2000-2001. by A'rpi/ESP-team |
2 | |
3 #include <stdio.h> | |
4 #include <stdlib.h> | |
109 | 5 #include <string.h> |
1 | 6 |
7 #include <signal.h> | |
8 | |
9 #include <sys/ioctl.h> | |
10 #include <unistd.h> | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
11 #include <time.h> |
1 | 12 #include <sys/mman.h> |
13 | |
14 #include <sys/types.h> | |
15 #include <sys/wait.h> | |
16 #include <sys/time.h> | |
17 #include <sys/stat.h> | |
18 #include <fcntl.h> | |
19 #include <sys/soundcard.h> | |
20 | |
21 #include "version.h" | |
22 #include "config.h" | |
23 | |
746 | 24 #ifndef MAX_OUTBURST |
591 | 25 #error "=============================================" |
26 #error "Please re-run ./configure and then try again!" | |
27 #error "=============================================" | |
28 #endif | |
29 | |
147 | 30 #include "cfgparser.h" |
151 | 31 #include "cfg-mplayer-def.h" |
147 | 32 |
258 | 33 #include "subreader.h" |
34 | |
36 | 35 #include "libvo/video_out.h" |
220 | 36 #include "libvo/sub.h" |
36 | 37 |
955 | 38 #include "libao2/audio_out.h" |
39 | |
1 | 40 // CODECS: |
41 #include "mp3lib/mp3.h" | |
42 #include "libac3/ac3.h" | |
43 #include "libmpeg2/mpeg2.h" | |
44 #include "libmpeg2/mpeg2_internal.h" | |
45 | |
46 #include "loader.h" | |
47 #include "wine/avifmt.h" | |
48 | |
303 | 49 #include "codec-cfg.h" |
175 | 50 |
492 | 51 #include "dvdauth.h" |
560
28ae99036574
Separated dvdsub code to be able to work with it easier
lgb
parents:
557
diff
changeset
|
52 #include "spudec.h" |
492 | 53 |
175 | 54 #ifdef USE_DIRECTSHOW |
55 #include "DirectShow/DS_VideoDec.h" | |
190 | 56 #include "DirectShow/DS_AudioDec.h" |
175 | 57 #endif |
58 | |
1 | 59 #include "opendivx/decore.h" |
60 | |
61 | |
62 #ifdef USE_XMMP_AUDIO | |
63 #include "libxmm/xmmp.h" | |
64 #include "libxmm/libxmm.h" | |
65 XMM xmm; | |
66 XMM_PluginSound *pSound=NULL; | |
67 #endif | |
68 | |
33 | 69 extern int vo_screenwidth; |
1 | 70 |
71 extern char* win32_codec_name; // must be set before calling DrvOpen() !!! | |
72 | |
73 extern int errno; | |
74 | |
75 #include "linux/getch2.h" | |
76 #include "linux/keycodes.h" | |
77 #include "linux/timer.h" | |
78 #include "linux/shmem.h" | |
79 | |
80 #ifdef HAVE_LIRC | |
81 #include "lirc_mp.h" | |
82 #endif | |
83 | |
84 #include "help_mp.h" | |
85 | |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
86 #ifdef STREAMING |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
87 #include "url.h" |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
88 #include "network.h" |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
89 static URL_t* url; |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
90 #endif |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
91 |
1 | 92 #define DEBUG if(0) |
723 | 93 #ifdef HAVE_GUI |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
94 int nogui=1; |
723 | 95 #endif |
362 | 96 int verbose=0; |
1 | 97 |
398 | 98 #define ABS(x) (((x)>=0)?(x):(-(x))) |
99 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
100 static subtitle* subtitles=NULL; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
101 void find_sub(subtitle* subtitles,int key); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
102 |
641
d161307f447a
The -osdlevel switch for setting default OSD level (useful in your .config for example if you don't like watching OSD timer by default)
lgb
parents:
638
diff
changeset
|
103 int osd_level=2; |
d161307f447a
The -osdlevel switch for setting default OSD level (useful in your .config for example if you don't like watching OSD timer by default)
lgb
parents:
638
diff
changeset
|
104 |
258 | 105 //**************************************************************************// |
106 // Config file | |
107 //**************************************************************************// | |
108 | |
153 | 109 static int cfg_inc_verbose(struct config *conf){ |
110 ++verbose; | |
111 return 0; | |
112 } | |
113 | |
162 | 114 static int cfg_include(struct config *conf, char *filename){ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
115 return parse_config_file(conf, filename); |
162 | 116 } |
117 | |
178 | 118 char *get_path(char *filename){ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
119 char *homedir; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
120 char *buff; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
121 static char *config_dir = "/.mplayer"; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
122 int len; |
178 | 123 |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
124 if ((homedir = getenv("HOME")) == NULL) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
125 return NULL; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
126 len = strlen(homedir) + strlen(config_dir) + 1; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
127 if (filename == NULL) { |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
128 if ((buff = (char *) malloc(len)) == NULL) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
129 return NULL; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
130 sprintf(buff, "%s%s", homedir, config_dir); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
131 } else { |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
132 len += strlen(filename) + 1; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
133 if ((buff = (char *) malloc(len)) == NULL) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
134 return NULL; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
135 sprintf(buff, "%s%s/%s", homedir, config_dir, filename); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
136 } |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
137 return buff; |
178 | 138 } |
139 | |
1 | 140 static int max_framesize=0; |
141 | |
442 | 142 //static int dbg_es_sent=0; |
143 //static int dbg_es_rcvd=0; | |
1 | 144 |
145 //static int show_packets=0; | |
146 | |
147 //**************************************************************************// | |
442 | 148 //**************************************************************************// |
149 // Input media streaming & demultiplexer: | |
150 //**************************************************************************// | |
151 | |
578 | 152 #include "stream.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
153 #include "demuxer.h" |
442 | 154 |
155 #include "stheader.h" | |
1 | 156 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
157 #if 0 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
158 |
1 | 159 typedef struct { |
160 // file: | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
161 // MainAVIHeader avih; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
162 // unsigned int movi_start; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
163 // unsigned int movi_end; |
1 | 164 // index: |
165 AVIINDEXENTRY* idx; | |
166 int idx_size; | |
167 int idx_pos; | |
168 int idx_pos_a; | |
169 int idx_pos_v; | |
170 int idx_offset; // ennyit kell hozzaadni az index offset ertekekhez | |
171 // video: | |
291 | 172 unsigned int bitrate; |
1 | 173 } avi_header_t; |
174 | |
175 avi_header_t avi_header; | |
176 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
177 #endif |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
178 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
179 int avi_bitrate=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
180 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
181 demuxer_t *demuxer=NULL; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
182 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
183 //#include "aviprint.c" |
1 | 184 |
442 | 185 sh_audio_t* new_sh_audio(int id){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
186 if(demuxer->a_streams[id]){ |
442 | 187 printf("Warning! Audio stream header %d redefined!\n",id); |
188 } else { | |
500
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
189 printf("==> Found audio stream: %d\n",id); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
190 demuxer->a_streams[id]=malloc(sizeof(sh_audio_t)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
191 memset(demuxer->a_streams[id],0,sizeof(sh_audio_t)); |
442 | 192 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
193 return demuxer->a_streams[id]; |
442 | 194 } |
1 | 195 |
442 | 196 sh_video_t* new_sh_video(int id){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
197 if(demuxer->v_streams[id]){ |
442 | 198 printf("Warning! video stream header %d redefined!\n",id); |
199 } else { | |
500
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
200 printf("==> Found video stream: %d\n",id); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
201 demuxer->v_streams[id]=malloc(sizeof(sh_video_t)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
202 memset(demuxer->v_streams[id],0,sizeof(sh_video_t)); |
442 | 203 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
204 return demuxer->v_streams[id]; |
442 | 205 } |
1 | 206 |
291 | 207 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
208 //#include "demux_avi.c" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
209 //#include "demux_mpg.c" |
1 | 210 |
211 demux_stream_t *d_audio=NULL; | |
212 demux_stream_t *d_video=NULL; | |
554 | 213 demux_stream_t *d_dvdsub=NULL; |
1 | 214 |
442 | 215 sh_audio_t *sh_audio=NULL;//&sh_audio_i; |
216 sh_video_t *sh_video=NULL;//&sh_video_i; | |
217 | |
218 char* encode_name=NULL; | |
219 char* encode_index_name=NULL; | |
220 int encode_bitrate=0; | |
291 | 221 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
222 extern int asf_packetsize; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
223 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
224 extern float avi_audio_pts; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
225 extern float avi_video_pts; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
226 extern float avi_video_ftime; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
227 extern int skip_video_frames; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
228 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
229 void read_avi_header(demuxer_t *demuxer,int index_mode); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
230 demux_stream_t* demux_avi_select_stream(demuxer_t *demux,unsigned int id); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
231 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
232 int asf_check_header(demuxer_t *demuxer); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
233 int read_asf_header(demuxer_t *demuxer); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
234 |
1 | 235 // MPEG video stream parser: |
236 #include "parse_es.c" | |
237 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
238 extern int num_elementary_packets100; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
239 extern int num_elementary_packets101; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
240 |
442 | 241 extern picture_t *picture; |
242 | |
112 | 243 static const int frameratecode2framerate[16] = { |
780 | 244 0, |
245 // Official mpeg1/2 framerates: | |
246 24000*10000/1001, 24*10000,25*10000, 30000*10000/1001, 30*10000,50*10000,60000*10000/1001, 60*10000, | |
247 // libmpeg3's "Unofficial economy rates": | |
248 1*10000,5*10000,10*10000,12*10000,15*10000,0,0 | |
112 | 249 }; |
250 | |
111 | 251 //**************************************************************************// |
252 // Audio codecs: | |
253 //**************************************************************************// | |
254 | |
296 | 255 // MP3 decoder buffer callback: |
1 | 256 int mplayer_audio_read(char *buf,int size){ |
257 int len; | |
291 | 258 len=demux_read_data(sh_audio->ds,buf,size); |
1 | 259 return len; |
260 } | |
261 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
262 //#include "dec_audio.c" |
291 | 263 |
851 | 264 #ifndef NEW_DECORE |
111 | 265 //**************************************************************************// |
266 // The OpenDivX stuff: | |
267 //**************************************************************************// | |
268 | |
1 | 269 unsigned char *opendivx_src[3]; |
270 int opendivx_stride[3]; | |
271 | |
111 | 272 // callback, the opendivx decoder calls this for each frame: |
80 | 273 void convert_linux(unsigned char *puc_y, int stride_y, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
274 unsigned char *puc_u, unsigned char *puc_v, int stride_uv, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
275 unsigned char *bmp, int width_y, int height_y){ |
1 | 276 |
277 // printf("convert_yuv called %dx%d stride: %d,%d\n",width_y,height_y,stride_y,stride_uv); | |
278 | |
279 opendivx_src[0]=puc_y; | |
280 opendivx_src[1]=puc_u; | |
281 opendivx_src[2]=puc_v; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
282 |
1 | 283 opendivx_stride[0]=stride_y; |
284 opendivx_stride[1]=stride_uv; | |
285 opendivx_stride[2]=stride_uv; | |
286 } | |
851 | 287 #endif |
1 | 288 |
289 //**************************************************************************// | |
290 //**************************************************************************// | |
291 | |
292 // AVI file header reader/parser/writer: | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
293 //#include "aviheader.c" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
294 //#include "aviwrite.c" |
1 | 295 |
296 // ASF headers: | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
297 //#include "asfheader.c" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
298 //#include "demux_asf.c" |
1 | 299 |
300 // DLL codecs init routines | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
301 //#include "dll_init.c" |
1 | 302 |
112 | 303 // Common FIFO functions, and keyboard/event FIFO code |
304 #include "fifo.c" | |
305 | |
1 | 306 //**************************************************************************// |
307 | |
308 static vo_functions_t *video_out=NULL; | |
955 | 309 static ao_functions_t *audio_out=NULL; |
1 | 310 |
311 static int play_in_bg=0; | |
312 | |
606 | 313 extern void avi_fixate(); |
314 | |
723 | 315 #ifdef HAVE_GUI |
316 #include "../Gui/mplayer/psignal.h" | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
317 #define GUI_MSG(x) if ( !nogui ) { mplSendMessage( x ); usleep( 10000 ); } |
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
318 #else |
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
319 #define GUI_MSG(x) |
723 | 320 #endif |
321 | |
1 | 322 void exit_player(char* how){ |
723 | 323 |
324 #ifdef HAVE_GUI | |
325 if ( !nogui ) | |
326 { | |
327 if ( how != NULL ) | |
328 { | |
329 if ( !strcmp( how,"Quit" ) ) mplSendMessage( mplEndOfFile ); | |
330 if ( !strcmp( how,"End of file" ) ) mplSendMessage( mplEndOfFile ); | |
331 if ( !strcmp( how,"audio_init" ) ) mplSendMessage( mplAudioError ); | |
332 } | |
333 else mplSendMessage( mplUnknowError ); | |
334 } | |
335 #endif | |
336 | |
1 | 337 if(how) printf("\nExiting... (%s)\n",how); |
340 | 338 if(verbose) printf("max framesize was %d bytes\n",max_framesize); |
1 | 339 // restore terminal: |
1005 | 340 #ifdef HAVE_GUI |
341 if ( nogui ) | |
342 #endif | |
343 getch2_disable(); | |
398 | 344 video_out->uninit(); |
1 | 345 #ifdef USE_XMMP_AUDIO |
346 if(verbose) printf("XMM: closing audio driver...\n"); | |
347 if(pSound){ | |
348 pSound->Exit( pSound ); | |
349 xmm_Exit( &xmm ); | |
350 } | |
351 #endif | |
352 if(encode_name) avi_fixate(); | |
353 #ifdef HAVE_LIRC | |
723 | 354 #ifdef HAVE_GUI |
355 if ( nogui ) | |
356 #endif | |
1 | 357 lirc_mp_cleanup(); |
358 #endif | |
359 //if(play_in_bg) system("xsetroot -solid \\#000000"); | |
360 exit(1); | |
361 } | |
362 | |
363 static char* current_module=NULL; // for debugging | |
364 | |
365 void exit_sighandler(int x){ | |
366 static int sig_count=0; | |
367 ++sig_count; | |
368 if(sig_count==2) exit(1); | |
369 if(sig_count>2){ | |
370 // can't stop :( | |
371 kill(getpid(),SIGKILL); | |
372 } | |
373 printf("\nMPlayer interrupted by signal %d in module: %s \n",x, | |
374 current_module?current_module:"unknown" | |
375 ); | |
723 | 376 #ifdef HAVE_GUI |
377 if ( !nogui ) | |
378 { | |
379 mplShMem->items.error.signal=x; | |
380 strcpy( mplShMem->items.error.module,current_module?current_module:"unknown" ); | |
381 } | |
382 #endif | |
1 | 383 exit_player(NULL); |
384 } | |
385 | |
386 int divx_quality=0; | |
387 | |
606 | 388 extern int vcd_get_track_end(int fd,int track); |
389 extern int init_audio(sh_audio_t *sh_audio); | |
390 extern int init_video_codec(sh_video_t *sh_video); | |
391 extern void mpeg2_allocate_image_buffers(picture_t * picture); | |
392 extern void write_avi_header_1(FILE *f,int fcc,float fps,int width,int height); | |
393 extern int vo_init(void); | |
746 | 394 extern int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen); |
606 | 395 |
1 | 396 char* filename=NULL; //"MI2-Trailer.avi"; |
397 int i; | |
937 | 398 char *seek_to_sec=NULL; |
1 | 399 int seek_to_byte=0; |
400 int f; // filedes | |
401 stream_t* stream=NULL; | |
402 int file_format=DEMUXER_TYPE_UNKNOWN; | |
442 | 403 int has_audio=1; |
404 //int has_video=1; | |
1 | 405 // |
406 int audio_format=0; // override | |
626 | 407 #ifdef USE_DIRECTSHOW |
408 int allow_dshow=1; | |
409 #else | |
410 int allow_dshow=0; | |
411 #endif | |
1 | 412 #ifdef ALSA_TIMER |
413 int alsa=1; | |
414 #else | |
415 int alsa=0; | |
416 #endif | |
417 int audio_id=-1; | |
418 int video_id=-1; | |
552 | 419 int dvdsub_id=-1; |
780 | 420 float default_max_pts_correction=-1;//0.01f; |
1 | 421 int delay_corrected=1; |
422 float force_fps=0; | |
969 | 423 int force_srate=0; |
1 | 424 float audio_delay=0; |
933 | 425 float initial_pts_delay=0; |
1 | 426 int vcd_track=0; |
427 #ifdef VCD_CACHE | |
428 int vcd_cache_size=128; | |
429 #endif | |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
561
diff
changeset
|
430 int index_mode=-1; // -1=untouched 0=don't use index 1=use (geneate) index |
1 | 431 #ifdef AVI_SYNC_BPS |
432 int pts_from_bps=1; | |
433 #else | |
434 int pts_from_bps=0; | |
435 #endif | |
798 | 436 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode |
1 | 437 char* title="MPlayer"; |
438 // screen info: | |
439 char* video_driver=NULL; //"mga"; // default | |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
440 char* audio_driver=NULL; |
1 | 441 int fullscreen=0; |
208
ae0f909ccc7c
Adds code to deal with vidmode selection. -- mgraffam
mgraffam
parents:
190
diff
changeset
|
442 int vidmode=0; |
337 | 443 int softzoom=0; |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
444 int flip=-1; |
337 | 445 int screen_size_x=0;//SCREEN_SIZE_X; |
446 int screen_size_y=0;//SCREEN_SIZE_Y; | |
1 | 447 int screen_size_xy=0; |
448 // movie info: | |
449 int out_fmt=0; | |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
956
diff
changeset
|
450 char *dsp=NULL; |
1 | 451 int force_ni=0; |
178 | 452 char *conffile; |
151 | 453 int conffile_fd; |
212 | 454 char *font_name=NULL; |
215 | 455 float font_factor=0.75; |
258 | 456 char *sub_name=NULL; |
457 float sub_delay=0; | |
458 float sub_fps=0; | |
510 | 459 int sub_auto = 1; |
552 | 460 char *stream_dump_name=NULL; |
549 | 461 int stream_dump_type=0; |
388 | 462 //int user_bpp=0; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
463 |
723 | 464 int osd_visible=100; |
465 int osd_function=OSD_PLAY; | |
466 int osd_last_pts=-303; | |
467 | |
1005 | 468 float a_frame=0; // Audio |
469 | |
937 | 470 float rel_seek_secs=0; |
723 | 471 |
459 | 472 #include "mixer.h" |
147 | 473 #include "cfg-mplayer.h" |
1 | 474 |
723 | 475 void parse_cfgfiles( void ) |
476 { | |
147 | 477 if (parse_config_file(conf, "/etc/mplayer.conf") < 0) |
478 exit(1); | |
178 | 479 if ((conffile = get_path("")) == NULL) { |
147 | 480 printf("Can't find HOME dir\n"); |
481 } else { | |
178 | 482 mkdir(conffile, 0777); |
483 free(conffile); | |
484 if ((conffile = get_path("config")) == NULL) { | |
485 printf("get_path(\"config\") sziiiivas\n"); | |
486 } else { | |
487 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) { | |
488 printf("Creating config file: %s\n", conffile); | |
489 write(conffile_fd, default_config, strlen(default_config)); | |
490 close(conffile_fd); | |
491 } | |
492 if (parse_config_file(conf, conffile) < 0) | |
493 exit(1); | |
494 free(conffile); | |
151 | 495 } |
1 | 496 } |
497 } | |
498 | |
723 | 499 #ifndef HAVE_GUI |
500 int main(int argc,char* argv[], char *envp[]){ | |
501 #else | |
502 int mplayer(int argc,char* argv[], char *envp[]){ | |
503 #endif | |
504 | |
505 printf("%s",banner_text); | |
506 | |
507 #ifdef HAVE_GUI | |
508 if ( nogui ) | |
509 { | |
510 #endif | |
751 | 511 parse_cfgfiles(); |
723 | 512 if (parse_command_line(conf, argc, argv, envp, &filename) < 0) exit(1); |
513 | |
514 // Many users forget to include command line in bugreports... | |
515 if(verbose){ | |
516 printf("CommandLine:"); | |
517 for(i=1;i<argc;i++)printf(" '%s'",argv[i]); | |
518 printf("\n"); | |
519 } | |
520 | |
521 if(video_driver && strcmp(video_driver,"help")==0){ | |
522 printf("Available video output drivers:\n"); | |
523 i=0; | |
524 while (video_out_drivers[i]) { | |
525 const vo_info_t *info = video_out_drivers[i++]->get_info (); | |
526 printf("\t%s\t%s\n", info->short_name, info->name); | |
527 } | |
528 printf("\n"); | |
529 exit(0); | |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
530 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
531 if(audio_driver && strcmp(audio_driver,"help")==0){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
532 printf("Available audio output drivers:\n"); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
533 i=0; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
534 while (audio_out_drivers[i]) { |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
535 const ao_info_t *info = audio_out_drivers[i++]->info; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
536 printf("\t%s\t%s\n", info->short_name, info->name); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
537 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
538 printf("\n"); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
539 exit(0); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
540 } |
723 | 541 #ifdef HAVE_GUI |
542 } | |
543 #endif | |
1 | 544 |
442 | 545 if(!filename){ |
546 if(vcd_track) filename="/dev/cdrom"; | |
547 else { | |
548 printf("%s",help_text); exit(0); | |
549 } | |
550 } | |
551 | |
552 // check video_out driver name: | |
553 if(!video_driver) | |
554 video_out=video_out_drivers[0]; | |
555 else | |
556 for (i=0; video_out_drivers[i] != NULL; i++){ | |
557 const vo_info_t *info = video_out_drivers[i]->get_info (); | |
558 if(strcmp(info->short_name,video_driver) == 0){ | |
559 video_out = video_out_drivers[i];break; | |
560 } | |
561 } | |
562 if(!video_out){ | |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
563 printf("Invalid video output driver name: %s\nUse '-vo help' to get a list of available video drivers.\n",video_driver); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
564 return 0; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
565 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
566 |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
567 // check audio_out driver name: |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
568 if(!audio_driver) |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
569 audio_out=audio_out_drivers[0]; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
570 else |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
571 for (i=0; audio_out_drivers[i] != NULL; i++){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
572 const ao_info_t *info = audio_out_drivers[i]->info; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
573 if(strcmp(info->short_name,audio_driver) == 0){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
574 audio_out = audio_out_drivers[i];break; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
575 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
576 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
577 if (!audio_out){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
578 printf("Invalid audio output driver name: %s\nUse '-ao help' to get a list of available audio drivers.\n",audio_driver); |
442 | 579 return 0; |
580 } | |
984 | 581 if(dsp) audio_out->control(AOCONTROL_SET_DEVICE,(int)dsp); |
955 | 582 |
442 | 583 // check codec.conf |
584 if(!parse_codec_cfg(get_path("codecs.conf"))){ | |
585 printf("(copy/link DOCS/codecs.conf to ~/.mplayer/codecs.conf)\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
586 GUI_MSG( mplCodecConfNotFound ) |
442 | 587 exit(1); |
588 } | |
589 | |
212 | 590 // check font |
591 if(font_name){ | |
337 | 592 vo_font=read_font_desc(font_name,font_factor,verbose>1); |
212 | 593 if(!vo_font) printf("Can't load font: %s\n",font_name); |
220 | 594 } else { |
595 // try default: | |
337 | 596 vo_font=read_font_desc(get_path("font/font.desc"),font_factor,verbose>1); |
212 | 597 } |
598 | |
258 | 599 // check .sub |
600 if(sub_name){ | |
601 subtitles=sub_read_file(sub_name); | |
924 | 602 if(!subtitles) printf("Can't load subtitles: %s\n",sub_name); |
258 | 603 } else { |
510 | 604 if ( sub_auto ) |
605 { | |
606 // auto load sub file ... | |
892 | 607 subtitles=sub_read_file( sub_filename( get_path("sub/"), filename ) ); |
608 } | |
609 if ( subtitles == NULL ) subtitles=sub_read_file(get_path("default.sub")); // try default: | |
258 | 610 } |
611 | |
612 | |
1 | 613 if(vcd_track){ |
614 //============ Open VideoCD track ============== | |
598 | 615 int ret,ret2; |
1 | 616 f=open(filename,O_RDONLY); |
617 if(f<0){ printf("CD-ROM Device '%s' not found!\n",filename);return 1; } | |
618 vcd_read_toc(f); | |
598 | 619 ret2=vcd_get_track_end(f,vcd_track); |
620 if(ret2<0){ printf("Error selecting VCD track!\n");return 1;} | |
578 | 621 ret=vcd_seek_to_track(f,vcd_track); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
622 if(ret<0){ printf("Error selecting VCD track!\n");return 1;} |
578 | 623 seek_to_byte+=ret; |
598 | 624 if(verbose) printf("VCD start byte position: 0x%X end: 0x%X\n",seek_to_byte,ret2); |
1 | 625 #ifdef VCD_CACHE |
626 vcd_cache_init(vcd_cache_size); | |
627 #endif | |
598 | 628 stream=new_stream(f,STREAMTYPE_VCD); |
629 stream->start_pos=ret; | |
630 stream->end_pos=ret2; | |
1 | 631 } else { |
632 //============ Open plain FILE ============ | |
598 | 633 int len; |
692 | 634 if(!strcmp(filename,"-")){ |
635 // read from stdin | |
636 printf("Reading from stdin...\n"); | |
637 f=0; // 0=stdin | |
638 stream=new_stream(f,STREAMTYPE_STREAM); | |
639 } else { | |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
640 #ifdef STREAMING |
906 | 641 url = url_new(filename); |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
642 if(url==NULL) { |
906 | 643 // failed to create a new URL, so it's not an URL (or a malformed URL) |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
644 #endif |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
645 f=open(filename,O_RDONLY); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
646 if(f<0){ printf("File not found: '%s'\n",filename);return 1; } |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
647 len=lseek(f,0,SEEK_END); lseek(f,0,SEEK_SET); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
648 stream=new_stream(f,STREAMTYPE_FILE); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
649 stream->end_pos=len; |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
650 #ifdef STREAMING |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
651 } else { |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
652 file_format=autodetectProtocol( url, &f ); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
653 if( file_format==DEMUXER_TYPE_UNKNOWN ) { |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
654 printf("Unable to open URL: %s\n", filename); |
906 | 655 url_free(url); |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
656 return 1; |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
657 } else { |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
658 f=streaming_start( &url, f, file_format ); |
906 | 659 if(f<0){ printf("Unable to open URL: %s\n", url->url); return 1; } |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
660 printf("Connected to server: %s\n", url->hostname ); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
661 } |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
662 stream=new_stream(f,STREAMTYPE_STREAM); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
663 } |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
664 #endif |
692 | 665 } |
598 | 666 } |
667 | |
492 | 668 #ifdef HAVE_LIBCSS |
546 | 669 if (dvdimportkey) { |
670 if (dvd_import_key(dvdimportkey)) { | |
671 fprintf(stderr,"Error processing DVD KEY.\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
672 GUI_MSG( mplErrorDVDKeyProcess ) |
546 | 673 exit(1); |
674 } | |
675 printf("DVD command line requested key is stored for descrambling.\n"); | |
676 } | |
492 | 677 if (dvd_device) { |
723 | 678 if (dvd_auth(dvd_device,f)) { |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
679 GUI_MSG( mplErrorDVDAuth ) |
723 | 680 exit(0); |
681 } | |
492 | 682 printf("DVD auth sequence seems to be OK.\n"); |
683 } | |
684 #endif | |
1 | 685 |
686 //============ Open & Sync stream and detect file format =============== | |
687 | |
442 | 688 if(!has_audio) audio_id=-2; // do NOT read audio packets... |
1 | 689 |
690 //=============== Try to open as AVI file: ================= | |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
691 #ifdef STREAMING |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
692 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_AVI){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
693 stream_reset(stream); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
694 demuxer=new_demuxer(stream,DEMUXER_TYPE_AVI,audio_id,video_id,dvdsub_id); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
695 stream_seek(demuxer->stream,seek_to_byte); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
696 //printf("stream3=0x%X vs. 0x%X\n",demuxer->stream,stream); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
697 { //---- RIFF header: |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
698 int id=stream_read_dword_le(demuxer->stream); // "RIFF" |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
699 if(id==mmioFOURCC('R','I','F','F')){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
700 stream_read_dword_le(demuxer->stream); //filesize |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
701 id=stream_read_dword_le(demuxer->stream); // "AVI " |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
702 if(id==formtypeAVI){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
703 printf("Detected AVI file format!\n"); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
704 file_format=DEMUXER_TYPE_AVI; |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
705 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
706 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
707 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
708 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
709 #else |
1 | 710 stream_reset(stream); |
552 | 711 demuxer=new_demuxer(stream,DEMUXER_TYPE_AVI,audio_id,video_id,dvdsub_id); |
1 | 712 stream_seek(demuxer->stream,seek_to_byte); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
713 //printf("stream3=0x%X vs. 0x%X\n",demuxer->stream,stream); |
1 | 714 { //---- RIFF header: |
715 int id=stream_read_dword_le(demuxer->stream); // "RIFF" | |
716 if(id==mmioFOURCC('R','I','F','F')){ | |
717 stream_read_dword_le(demuxer->stream); //filesize | |
718 id=stream_read_dword_le(demuxer->stream); // "AVI " | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
719 if(id==formtypeAVI){ |
1 | 720 printf("Detected AVI file format!\n"); |
721 file_format=DEMUXER_TYPE_AVI; | |
722 } | |
723 } | |
724 } | |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
725 #endif |
1 | 726 //=============== Try to open as ASF file: ================= |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
727 #ifdef STREAMING |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
728 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_ASF){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
729 #else |
1 | 730 if(file_format==DEMUXER_TYPE_UNKNOWN){ |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
731 #endif |
1 | 732 stream_reset(stream); |
552 | 733 demuxer=new_demuxer(stream,DEMUXER_TYPE_ASF,audio_id,video_id,dvdsub_id); |
1 | 734 stream_seek(demuxer->stream,seek_to_byte); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
735 if(asf_check_header(demuxer)){ |
1 | 736 printf("Detected ASF file format!\n"); |
737 file_format=DEMUXER_TYPE_ASF; | |
738 } | |
739 } | |
740 //=============== Try to open as MPEG-PS file: ================= | |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
741 #ifdef STREAMING |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
742 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_MPEG_PS){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
743 #else |
1 | 744 if(file_format==DEMUXER_TYPE_UNKNOWN){ |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
745 #endif |
1 | 746 stream_reset(stream); |
552 | 747 demuxer=new_demuxer(stream,DEMUXER_TYPE_MPEG_PS,audio_id,video_id,dvdsub_id); |
1 | 748 stream_seek(demuxer->stream,seek_to_byte); |
749 if(audio_format) demuxer->audio->type=audio_format; // override audio format | |
750 if(ds_fill_buffer(demuxer->video)){ | |
751 printf("Detected MPEG-PS file format!\n"); | |
752 file_format=DEMUXER_TYPE_MPEG_PS; | |
753 } else { | |
754 // some hack to get meaningfull error messages to our unhappy users: | |
755 // if(num_elementary_packets100>16 && | |
756 // abs(num_elementary_packets101-num_elementary_packets100)<8){ | |
757 if(num_elementary_packets100>=2 && num_elementary_packets101>=2 && | |
758 abs(num_elementary_packets101-num_elementary_packets100)<8){ | |
759 file_format=DEMUXER_TYPE_MPEG_ES; // <-- hack is here :) | |
760 } else { | |
761 if(demuxer->synced==2) | |
762 printf("Missing MPEG video stream!? contact the author, it may be a bug :(\n"); | |
763 else | |
764 printf("Not MPEG System Stream format... (maybe Transport Stream?)\n"); | |
765 } | |
766 } | |
767 } | |
768 //=============== Try to open as MPEG-ES file: ================= | |
769 if(file_format==DEMUXER_TYPE_MPEG_ES){ // little hack, see above! | |
770 stream_reset(stream); | |
552 | 771 demuxer=new_demuxer(stream,DEMUXER_TYPE_MPEG_ES,audio_id,video_id,dvdsub_id); |
1 | 772 stream_seek(demuxer->stream,seek_to_byte); |
773 if(!ds_fill_buffer(demuxer->video)){ | |
774 printf("Invalid MPEG-ES stream??? contact the author, it may be a bug :(\n"); | |
775 file_format=DEMUXER_TYPE_UNKNOWN; | |
776 } else { | |
777 printf("Detected MPEG-ES file format!\n"); | |
778 } | |
779 } | |
780 //=============== Unknown, exiting... =========================== | |
781 if(file_format==DEMUXER_TYPE_UNKNOWN){ | |
782 printf("============= Sorry, this file format not recognized/supported ===============\n"); | |
783 printf("=== If this file is an AVI, ASF or MPEG stream, please contact the author! ===\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
784 GUI_MSG( mplUnknowFileType ) |
1 | 785 exit(1); |
786 } | |
787 //====== File format recognized, set up these for compatibility: ========= | |
788 d_audio=demuxer->audio; | |
789 d_video=demuxer->video; | |
554 | 790 d_dvdsub=demuxer->sub; |
442 | 791 //d_audio->sh=sh_audio; |
792 //d_video->sh=sh_video; | |
793 //sh_audio=d_audio->sh;sh_audio->ds=d_audio; | |
794 //sh_video=d_video->sh;sh_video->ds=d_video; | |
1 | 795 |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
796 sh_audio=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
797 sh_video=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
798 |
1 | 799 switch(file_format){ |
800 case DEMUXER_TYPE_AVI: { | |
801 //---- AVI header: | |
692 | 802 read_avi_header(demuxer,f?index_mode:-2); |
1 | 803 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
804 stream_seek(demuxer->stream,demuxer->movi_start); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
805 demuxer->idx_pos=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
806 demuxer->idx_pos_a=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
807 demuxer->idx_pos_v=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
808 if(demuxer->idx_size>0){ |
1 | 809 // decide index format: |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
810 if(((AVIINDEXENTRY *)demuxer->idx)[0].dwChunkOffset<demuxer->movi_start) |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
811 demuxer->idx_offset=demuxer->movi_start-4; |
1 | 812 else |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
813 demuxer->idx_offset=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
814 if(verbose) printf("AVI index offset: %d\n",demuxer->idx_offset); |
1 | 815 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
816 // demuxer->endpos=avi_header.movi_end; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
817 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
818 if(demuxer->idx_size>0){ |
1 | 819 // check that file is non-interleaved: |
820 int i; | |
821 int a_pos=-1; | |
822 int v_pos=-1; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
823 for(i=0;i<demuxer->idx_size;i++){ |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
824 AVIINDEXENTRY* idx=&((AVIINDEXENTRY *)demuxer->idx)[i]; |
1 | 825 demux_stream_t* ds=demux_avi_select_stream(demuxer,idx->ckid); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
826 int pos=idx->dwChunkOffset+demuxer->idx_offset; |
1 | 827 if(a_pos==-1 && ds==demuxer->audio){ |
828 a_pos=pos; | |
829 if(v_pos!=-1) break; | |
830 } | |
831 if(v_pos==-1 && ds==demuxer->video){ | |
832 v_pos=pos; | |
833 if(a_pos!=-1) break; | |
834 } | |
835 } | |
836 if(v_pos==-1){ | |
837 printf("AVI_NI: missing video stream!? contact the author, it may be a bug :(\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
838 GUI_MSG( mplErrorAVINI ) |
1 | 839 exit(1); |
840 } | |
841 if(a_pos==-1){ | |
842 printf("AVI_NI: No audio stream found -> nosound\n"); | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
843 has_audio=0;sh_audio=NULL; |
1 | 844 } else { |
845 if(force_ni || abs(a_pos-v_pos)>0x100000){ // distance > 1MB | |
846 printf("Detected NON-INTERLEAVED AVI file-format!\n"); | |
847 demuxer->type=DEMUXER_TYPE_AVI_NI; // HACK!!!! | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
848 pts_from_bps=1; // force BPS sync! |
1 | 849 } |
850 } | |
851 } else { | |
852 // no index | |
853 if(force_ni){ | |
854 printf("Using NON-INTERLEAVED Broken AVI file-format!\n"); | |
855 demuxer->type=DEMUXER_TYPE_AVI_NINI; // HACK!!!! | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
856 demuxer->idx_pos_a= |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
857 demuxer->idx_pos_v=demuxer->movi_start; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
858 pts_from_bps=1; // force BPS sync! |
1 | 859 } |
860 } | |
861 if(!ds_fill_buffer(d_video)){ | |
862 printf("AVI: missing video stream!? contact the author, it may be a bug :(\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
863 GUI_MSG( mplAVIErrorMissingVideoStream ) |
1 | 864 exit(1); |
865 } | |
442 | 866 sh_video=d_video->sh;sh_video->ds=d_video; |
1 | 867 if(has_audio){ |
442 | 868 if(verbose) printf("AVI: Searching for audio stream (id:%d)\n",d_audio->id); |
1 | 869 if(!ds_fill_buffer(d_audio)){ |
442 | 870 printf("AVI: No Audio stream found... ->nosound\n"); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
871 has_audio=0;sh_audio=NULL; |
442 | 872 } else { |
873 sh_audio=d_audio->sh;sh_audio->ds=d_audio; | |
874 sh_audio->format=sh_audio->wf->wFormatTag; | |
875 } | |
1 | 876 } |
398 | 877 // calc. FPS: |
878 sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; | |
879 sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
375 | 880 // calculating video bitrate: |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
881 avi_bitrate=demuxer->movi_end-demuxer->movi_start-demuxer->idx_size*8; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
882 if(sh_audio) avi_bitrate-=sh_audio->audio.dwLength; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
883 if(verbose) printf("AVI video length=%d\n",avi_bitrate); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
884 avi_bitrate=((float)avi_bitrate/(float)sh_video->video.dwLength)*sh_video->fps; |
606 | 885 printf("VIDEO: [%.4s] %ldx%ld %dbpp %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", |
886 (char *)&sh_video->bih->biCompression, | |
442 | 887 sh_video->bih->biWidth, |
888 sh_video->bih->biHeight, | |
889 sh_video->bih->biBitCount, | |
398 | 890 sh_video->fps, |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
891 avi_bitrate*0.008f, |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
892 avi_bitrate/1024.0f ); |
1 | 893 break; |
894 } | |
895 case DEMUXER_TYPE_ASF: { | |
896 //---- ASF header: | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
897 read_asf_header(demuxer); |
1 | 898 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
899 stream_seek(demuxer->stream,demuxer->movi_start); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
900 demuxer->idx_pos=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
901 // demuxer->endpos=avi_header.movi_end; |
1 | 902 if(!ds_fill_buffer(d_video)){ |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
903 printf("ASF: no video stream found!\n"); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
904 sh_video=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
905 //printf("ASF: missing video stream!? contact the author, it may be a bug :(\n"); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
906 //GUI_MSG( mplASFErrorMissingVideoStream ) |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
907 //exit(1); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
908 } else { |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
909 sh_video=d_video->sh;sh_video->ds=d_video; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
910 sh_video->fps=1000.0f; sh_video->frametime=0.001f; // 1ms |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
911 printf("VIDEO: [%.4s] %ldx%ld %dbpp\n", |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
912 (char *)&sh_video->bih->biCompression, |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
913 sh_video->bih->biWidth, |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
914 sh_video->bih->biHeight, |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
915 sh_video->bih->biBitCount); |
1 | 916 } |
917 if(has_audio){ | |
918 if(verbose) printf("ASF: Searching for audio stream (id:%d)\n",d_audio->id); | |
919 if(!ds_fill_buffer(d_audio)){ | |
920 printf("ASF: No Audio stream found... ->nosound\n"); | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
921 has_audio=0;sh_audio=NULL; |
442 | 922 } else { |
923 sh_audio=d_audio->sh;sh_audio->ds=d_audio; | |
924 sh_audio->format=sh_audio->wf->wFormatTag; | |
925 } | |
1 | 926 } |
927 break; | |
928 } | |
929 case DEMUXER_TYPE_MPEG_ES: { | |
442 | 930 d_audio->type=0; |
500
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
931 has_audio=0;sh_audio=NULL; // ES streams has no audio channel |
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
932 d_video->sh=new_sh_video(0); // create dummy video stream header, id=0 |
375 | 933 break; |
934 } | |
935 case DEMUXER_TYPE_MPEG_PS: { | |
606 | 936 if(has_audio) { |
375 | 937 if(!ds_fill_buffer(d_audio)){ |
938 printf("MPEG: No Audio stream found... ->nosound\n"); | |
442 | 939 has_audio=0;sh_audio=NULL; |
375 | 940 } else { |
442 | 941 sh_audio=d_audio->sh;sh_audio->ds=d_audio; |
382 | 942 if(verbose) printf("detected MPG-PS audio format: %d\n",d_audio->type); |
375 | 943 switch(d_audio->type){ |
944 case 1: sh_audio->format=0x50;break; // mpeg | |
442 | 945 case 2: sh_audio->format=0x10001;break; // dvd pcm |
375 | 946 case 3: sh_audio->format=0x2000;break; // ac3 |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
947 default: has_audio=0;sh_audio=NULL; // unknown type |
375 | 948 } |
949 } | |
606 | 950 } |
375 | 951 break; |
952 } | |
953 } // switch(file_format) | |
954 | |
792 | 955 // DUMP STREAMS: |
956 if(stream_dump_type){ | |
957 FILE *f; | |
958 demux_stream_t *ds=NULL; | |
959 // select stream to dump | |
960 switch(stream_dump_type){ | |
961 case 1: ds=d_audio;break; | |
962 case 2: ds=d_video;break; | |
963 case 3: ds=d_dvdsub;break; | |
964 } | |
965 if(!ds){ | |
966 printf("dump: FATAL: selected stream missing!\n"); | |
967 exit(1); | |
968 } | |
969 // disable other streams: | |
970 if(d_audio && d_audio!=ds) {ds_free_packs(d_audio); d_audio->id=-2; } | |
971 if(d_video && d_video!=ds) {ds_free_packs(d_video); d_video->id=-2; } | |
972 if(d_dvdsub && d_dvdsub!=ds) {ds_free_packs(d_dvdsub); d_dvdsub->id=-2; } | |
973 // let's dump it! | |
974 f=fopen(stream_dump_name?stream_dump_name:"stream.dump","wb"); | |
975 if(!f){ printf("Can't open dump file!!!\n");exit(1); } | |
976 while(!ds->eof){ | |
977 unsigned char* start; | |
978 int in_size=ds_get_packet(ds,&start); | |
979 if(in_size>0) fwrite(start,in_size,1,f); | |
980 } | |
981 fclose(f); | |
982 printf("core dumped :)\n"); | |
983 exit(1); | |
984 } | |
985 | |
986 | |
375 | 987 // Determine image properties: |
988 switch(file_format){ | |
989 case DEMUXER_TYPE_AVI: | |
990 case DEMUXER_TYPE_ASF: { | |
991 // display info: | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
992 if(sh_video){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
993 sh_video->format=sh_video->bih->biCompression; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
994 sh_video->disp_w=sh_video->bih->biWidth; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
995 sh_video->disp_h=abs(sh_video->bih->biHeight); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
996 } |
375 | 997 break; |
998 } | |
999 case DEMUXER_TYPE_MPEG_ES: | |
1000 case DEMUXER_TYPE_MPEG_PS: { | |
303 | 1001 // Find sequence_header first: |
1002 if(verbose) printf("Searching for sequence header... ");fflush(stdout); | |
1003 while(1){ | |
1004 int i=sync_video_packet(d_video); | |
1005 if(i==0x1B3) break; // found it! | |
1006 if(!i || !skip_video_packet(d_video)){ | |
1007 if(verbose) printf("NONE :(\n"); | |
1008 printf("MPEG: FATAL: EOF while searching for sequence header\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1009 GUI_MSG( mplMPEGErrorSeqHeaderSearch ) |
303 | 1010 exit(1); |
1011 } | |
1012 } | |
1013 if(verbose) printf("OK!\n"); | |
442 | 1014 sh_video=d_video->sh;sh_video->ds=d_video; |
894 | 1015 sh_video->format=0x10000001; // mpeg video |
375 | 1016 mpeg2_init(); |
1017 // ========= Read & process sequence header & extension ============ | |
1018 videobuffer=shmem_alloc(VIDEOBUFFER_SIZE); | |
723 | 1019 if(!videobuffer){ |
1020 printf("Cannot allocate shared memory\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1021 GUI_MSG( mplErrorShMemAlloc ) |
723 | 1022 exit(0); |
1023 } | |
375 | 1024 videobuf_len=0; |
723 | 1025 if(!read_video_packet(d_video)){ |
1026 printf("FATAL: Cannot read sequence header!\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1027 GUI_MSG( mplMPEGErrorCannotReadSeqHeader ) |
723 | 1028 exit(1); |
1029 } | |
375 | 1030 if(header_process_sequence_header (picture, &videobuffer[4])) { |
723 | 1031 printf ("bad sequence header!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1032 GUI_MSG( mplMPEGErrorBadSeqHeader ) |
723 | 1033 exit(1); |
375 | 1034 } |
1035 if(sync_video_packet(d_video)==0x1B5){ // next packet is seq. ext. | |
1036 videobuf_len=0; | |
723 | 1037 if(!read_video_packet(d_video)){ |
1038 printf("FATAL: Cannot read sequence header extension!\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1039 GUI_MSG( mplMPEGErrorCannotReadSeqHeaderExt ) |
723 | 1040 exit(1); |
1041 } | |
375 | 1042 if(header_process_extension (picture, &videobuffer[4])) { |
723 | 1043 printf ("bad sequence header extension!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1044 GUI_MSG( mplMPEGErrorBadSeqHeaderExt ) |
723 | 1045 exit(1); |
303 | 1046 } |
1047 } | |
375 | 1048 // display info: |
398 | 1049 sh_video->fps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; |
780 | 1050 if(!sh_video->fps){ |
1051 if(!force_fps){ | |
1052 printf("FPS not specified (or invalid) in the header! Use the -fps option!\n"); | |
1053 exit(1); | |
1054 } | |
1055 sh_video->frametime=0; | |
1056 } else { | |
1057 sh_video->frametime=10000.0f/(float)frameratecode2framerate[picture->frame_rate_code]; | |
1058 } | |
398 | 1059 sh_video->disp_w=picture->display_picture_width; |
1060 sh_video->disp_h=picture->display_picture_height; | |
375 | 1061 // info: |
1062 if(verbose) printf("mpeg bitrate: %d (%X)\n",picture->bitrate,picture->bitrate); | |
1063 printf("VIDEO: %s %dx%d (aspect %d) %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", | |
1064 picture->mpeg1?"MPEG1":"MPEG2", | |
398 | 1065 sh_video->disp_w,sh_video->disp_h, |
375 | 1066 picture->aspect_ratio_information, |
398 | 1067 sh_video->fps, |
375 | 1068 picture->bitrate*0.5f, |
1069 picture->bitrate/16.0f ); | |
1 | 1070 break; |
1071 } | |
1072 } // switch(file_format) | |
1073 | |
442 | 1074 //if(verbose) printf("file successfully opened (has_audio=%d)\n",has_audio); |
1 | 1075 |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1076 if(sh_video) |
398 | 1077 printf("[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n", |
1078 file_format,sh_video->format,sh_video->disp_w,sh_video->disp_h, | |
1079 sh_video->fps,sh_video->frametime | |
1080 ); | |
1081 | |
1 | 1082 fflush(stdout); |
1083 | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1084 if(!sh_video){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1085 printf("Sorry, no video stream... it's unplayable yet\n"); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1086 exit(1); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1087 } |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1088 |
303 | 1089 //================== Init AUDIO (codec) ========================== |
1090 if(has_audio){ | |
1091 // Go through the codec.conf and find the best codec... | |
626 | 1092 sh_audio->codec=NULL; |
1093 while(1){ | |
1094 sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1); | |
1095 if(!sh_audio->codec){ | |
1096 printf("Can't find codec for audio format 0x%X !\n",sh_audio->format); | |
919 | 1097 printf("*** Try to upgrade %s from DOCS/codecs.conf\n",get_path("codecs.conf")); |
1098 printf("*** If it's still not OK, then read DOCS/CODECS!\n"); | |
626 | 1099 has_audio=0; |
1100 break; | |
1101 } | |
1102 if(audio_format>0 && sh_audio->codec->driver!=audio_format) continue; | |
340 | 1103 printf("Found audio codec: [%s] drv:%d (%s)\n",sh_audio->codec->name,sh_audio->codec->driver,sh_audio->codec->info); |
442 | 1104 //has_audio=sh_audio->codec->driver; |
626 | 1105 break; |
303 | 1106 } |
1 | 1107 } |
1108 | |
303 | 1109 if(has_audio){ |
1110 if(verbose) printf("Initializing audio codec...\n"); | |
442 | 1111 if(!init_audio(sh_audio)){ |
303 | 1112 printf("Couldn't initialize audio codec! -> nosound\n"); |
442 | 1113 has_audio=0; |
303 | 1114 } else { |
758 | 1115 printf("AUDIO: srate=%d chans=%d bps=%d sfmt=0x%X ratio: %d->%d\n",sh_audio->samplerate,sh_audio->channels,sh_audio->samplesize, |
1116 sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps); | |
303 | 1117 } |
175 | 1118 } |
1119 | |
303 | 1120 //================== Init VIDEO (codec & libvo) ========================== |
1121 | |
1122 // Go through the codec.conf and find the best codec... | |
626 | 1123 sh_video->codec=NULL; |
1124 while(1){ | |
1125 sh_video->codec=find_codec(sh_video->format, | |
1126 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL,sh_video->codec,0); | |
1127 if(!sh_video->codec){ | |
303 | 1128 printf("Can't find codec for video format 0x%X !\n",sh_video->format); |
919 | 1129 printf("*** Try to upgrade %s from DOCS/codecs.conf\n",get_path("codecs.conf")); |
1130 printf("*** If it's still not OK, then read DOCS/CODECS!\n"); | |
723 | 1131 #ifdef HAVE_GUI |
1132 if ( !nogui ) | |
1133 { | |
1134 mplShMem->items.videodata.format=sh_video->format; | |
1135 mplSendMessage( mplCantFindCodecForVideoFormat ); | |
1136 usleep( 10000 ); | |
1137 } | |
1138 #endif | |
303 | 1139 exit(1); |
626 | 1140 } |
1141 if(!allow_dshow && sh_video->codec->driver==4) continue; // skip DShow | |
1142 break; | |
303 | 1143 } |
442 | 1144 //has_video=sh_video->codec->driver; |
303 | 1145 |
340 | 1146 printf("Found video codec: [%s] drv:%d (%s)\n",sh_video->codec->name,sh_video->codec->driver,sh_video->codec->info); |
303 | 1147 |
1148 for(i=0;i<CODECS_MAX_OUTFMT;i++){ | |
487 | 1149 int ret; |
303 | 1150 out_fmt=sh_video->codec->outfmt[i]; |
534
2a45d5adcc88
do not query vo drivers for format 0xFFFFFFFF (thanx to szabi)
arpi_esp
parents:
510
diff
changeset
|
1151 if(out_fmt==0xFFFFFFFF) continue; |
487 | 1152 ret=video_out->query_format(out_fmt); |
1153 if(verbose) printf("vo_debug: query(0x%X) returned 0x%X\n",out_fmt,ret); | |
1154 if(ret) break; | |
303 | 1155 } |
1156 if(i>=CODECS_MAX_OUTFMT){ | |
1157 printf("Sorry, selected video_out device is incompatible with this codec.\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1158 GUI_MSG( mplIncompatibleVideoOutDevice ) |
303 | 1159 exit(1); |
1160 } | |
1161 sh_video->outfmtidx=i; | |
1162 | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1163 if(flip==-1){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1164 // autodetect flipping |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1165 flip=0; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1166 if(sh_video->codec->outflags[i]&CODECS_FLAG_FLIP) |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1167 if(!(sh_video->codec->outflags[i]&CODECS_FLAG_NOFLIP)) |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1168 flip=1; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1169 } |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1170 |
487 | 1171 if(verbose) printf("vo_debug1: out_fmt=0x%08X\n",out_fmt); |
1172 | |
442 | 1173 switch(sh_video->codec->driver){ |
175 | 1174 case 2: { |
723 | 1175 if(!init_video_codec(sh_video)) { |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1176 GUI_MSG( mplUnknowError ) |
723 | 1177 exit(1); |
1178 } | |
1 | 1179 if(verbose) printf("INFO: Win32 video codec init OK!\n"); |
1180 break; | |
1181 } | |
175 | 1182 case 4: { // Win32/DirectShow |
303 | 1183 #ifndef USE_DIRECTSHOW |
1184 printf("MPlayer was compiled WITHOUT directshow support!\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1185 GUI_MSG( mplCompileWithoutDSSupport ) |
303 | 1186 exit(1); |
1187 #else | |
291 | 1188 sh_video->our_out_buffer=NULL; |
442 | 1189 if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, &sh_video->our_out_buffer)){ |
715 | 1190 // if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, NULL)){ |
303 | 1191 printf("ERROR: Couldn't open required DirectShow codec: %s\n",sh_video->codec->dll); |
273 | 1192 printf("Maybe you forget to upgrade your win32 codecs?? It's time to download the new\n"); |
1193 printf("package from: ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip !\n"); | |
1194 printf("Or you should disable DShow support: make distclean;make -f Makefile.No-DS\n"); | |
723 | 1195 #ifdef HAVE_GUI |
1196 if ( !nogui ) | |
1197 { | |
1198 strcpy( mplShMem->items.videodata.codecdll,sh_video->codec->dll ); | |
1199 mplSendMessage( mplDSCodecNotFound ); | |
1200 usleep( 10000 ); | |
1201 } | |
1202 #endif | |
273 | 1203 exit(1); |
1204 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1205 |
470 | 1206 switch(out_fmt){ |
1207 case IMGFMT_YUY2: | |
1208 case IMGFMT_UYVY: | |
1209 DS_VideoDecoder_SetDestFmt(16,out_fmt);break; // packed YUV | |
1210 case IMGFMT_YV12: | |
1211 case IMGFMT_I420: | |
1212 case IMGFMT_IYUV: | |
1213 DS_VideoDecoder_SetDestFmt(12,out_fmt);break; // planar YUV | |
1214 default: | |
1215 DS_VideoDecoder_SetDestFmt(out_fmt&255,0); // RGB/BGR | |
1216 } | |
175 | 1217 |
1218 DS_VideoDecoder_Start(); | |
1219 | |
1220 printf("DivX setting result = %d\n", DS_SetAttr_DivX("Quality",divx_quality) ); | |
1221 // printf("DivX setting result = %d\n", DS_SetValue_DivX("Brightness",60) ); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1222 |
175 | 1223 if(verbose) printf("INFO: Win32/DShow video codec init OK!\n"); |
1224 break; | |
374 | 1225 #endif |
175 | 1226 } |
1 | 1227 case 3: { // OpenDivX |
1228 if(verbose) printf("OpenDivX video codec\n"); | |
1229 { DEC_PARAM dec_param; | |
1230 DEC_SET dec_set; | |
851 | 1231 #ifdef NEW_DECORE |
1232 DEC_MEM_REQS dec_mem; | |
855 | 1233 dec_param.output_format=DEC_USER; |
1234 #else | |
1235 dec_param.color_depth = 32; | |
1236 #endif | |
442 | 1237 dec_param.x_dim = sh_video->bih->biWidth; |
1238 dec_param.y_dim = sh_video->bih->biHeight; | |
851 | 1239 #ifdef NEW_DECORE |
855 | 1240 // 0.50-CVS new malloc scheme |
795
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1241 decore(0x123, DEC_OPT_MEMORY_REQS, &dec_param, &dec_mem); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1242 dec_param.buffers.mp4_edged_ref_buffers=malloc(dec_mem.mp4_edged_ref_buffers_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1243 dec_param.buffers.mp4_edged_for_buffers=malloc(dec_mem.mp4_edged_for_buffers_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1244 dec_param.buffers.mp4_display_buffers=malloc(dec_mem.mp4_display_buffers_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1245 dec_param.buffers.mp4_state=malloc(dec_mem.mp4_state_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1246 dec_param.buffers.mp4_tables=malloc(dec_mem.mp4_tables_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1247 dec_param.buffers.mp4_stream=malloc(dec_mem.mp4_stream_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1248 #endif |
442 | 1249 decore(0x123, DEC_OPT_INIT, &dec_param, NULL); |
855 | 1250 |
442 | 1251 dec_set.postproc_level = divx_quality; |
1252 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL); | |
795
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1253 |
1 | 1254 } |
1255 if(verbose) printf("INFO: OpenDivX video codec init OK!\n"); | |
1256 break; | |
1257 } | |
1258 case 1: { | |
1259 // init libmpeg2: | |
41 | 1260 #ifdef MPEG12_POSTPROC |
1 | 1261 picture->pp_options=divx_quality; |
41 | 1262 #else |
1263 if(divx_quality){ | |
1264 printf("WARNING! You requested image postprocessing for an MPEG 1/2 video,\n"); | |
1265 printf(" but compiled MPlayer without MPEG 1/2 postprocessing support!\n"); | |
1266 printf(" #define MPEG12_POSTPROC in config.h, and recompile libmpeg2!\n"); | |
1267 } | |
1268 #endif | |
375 | 1269 mpeg2_allocate_image_buffers (picture); |
1 | 1270 break; |
1271 } | |
1272 } | |
1273 | |
487 | 1274 if(verbose) printf("vo_debug2: out_fmt=0x%08X\n",out_fmt); |
1275 | |
1 | 1276 // ================== Init output files for encoding =============== |
1277 if(encode_name){ | |
1278 // encode file!!! | |
1279 FILE *encode_file=fopen(encode_name,"rb"); | |
1280 if(encode_file){ | |
1281 fclose(encode_file); | |
1282 printf("File already exists: %s (don't overwrite your favourite AVI!)\n",encode_name); | |
1283 return 0; | |
1284 } | |
1285 encode_file=fopen(encode_name,"wb"); | |
1286 if(!encode_file){ | |
1287 printf("Cannot create file for encoding\n"); | |
1288 return 0; | |
1289 } | |
398 | 1290 write_avi_header_1(encode_file,mmioFOURCC('d', 'i', 'v', 'x'),sh_video->fps,sh_video->disp_w,sh_video->disp_h); |
1 | 1291 fclose(encode_file); |
1292 encode_index_name=malloc(strlen(encode_name)+8); | |
1293 strcpy(encode_index_name,encode_name); | |
1294 strcat(encode_index_name,".index"); | |
1295 if((encode_file=fopen(encode_index_name,"wb"))) | |
1296 fclose(encode_file); | |
1297 else encode_index_name=NULL; | |
1298 has_audio=0; // disable audio !!!!! | |
1299 } | |
1300 | |
1301 // ========== Init keyboard FIFO (connection to libvo) ============ | |
1302 | |
1303 make_pipe(&keyb_fifo_get,&keyb_fifo_put); | |
1304 | |
398 | 1305 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============ |
1 | 1306 |
1307 #ifdef X11_FULLSCREEN | |
1308 if(fullscreen){ | |
1309 if(vo_init()){ | |
1310 //if(verbose) printf("X11 running at %dx%d depth: %d\n",vo_screenwidth,vo_screenheight,vo_depthonscreen); | |
1311 } | |
1312 if(!screen_size_xy) screen_size_xy=vo_screenwidth; // scale with asp.ratio | |
1313 } | |
1314 #endif | |
1315 | |
1316 if(screen_size_xy>0){ | |
1317 if(screen_size_xy<=8){ | |
398 | 1318 screen_size_x=screen_size_xy*sh_video->disp_w; |
1319 screen_size_y=screen_size_xy*sh_video->disp_h; | |
1 | 1320 } else { |
1321 screen_size_x=screen_size_xy; | |
398 | 1322 screen_size_y=screen_size_xy*sh_video->disp_h/sh_video->disp_w; |
1 | 1323 } |
337 | 1324 } else if(!vidmode){ |
1325 if(!screen_size_x) screen_size_x=SCREEN_SIZE_X; | |
1326 if(!screen_size_y) screen_size_y=SCREEN_SIZE_Y; | |
398 | 1327 if(screen_size_x<=8) screen_size_x*=sh_video->disp_w; |
1328 if(screen_size_y<=8) screen_size_y*=sh_video->disp_h; | |
1 | 1329 } |
208
ae0f909ccc7c
Adds code to deal with vidmode selection. -- mgraffam
mgraffam
parents:
190
diff
changeset
|
1330 |
340 | 1331 { const vo_info_t *info = video_out->get_info(); |
766 | 1332 printf("VO: [%s] %dx%d => %dx%d %s%s%s%s ",info->short_name, |
398 | 1333 sh_video->disp_w,sh_video->disp_h, |
340 | 1334 screen_size_x,screen_size_y, |
1335 fullscreen?"fs ":"", | |
1336 vidmode?"vm ":"", | |
766 | 1337 softzoom?"zoom ":"", |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1338 (flip==1)?"flip ":"" |
766 | 1339 // fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3) |
340 | 1340 ); |
1341 if((out_fmt&IMGFMT_BGR_MASK)==IMGFMT_BGR) | |
1342 printf("BGR%d\n",out_fmt&255); else | |
766 | 1343 if((out_fmt&IMGFMT_RGB_MASK)==IMGFMT_RGB) |
340 | 1344 printf("RGB%d\n",out_fmt&255); else |
1345 if(out_fmt==IMGFMT_YUY2) printf("YUY2\n"); else | |
470 | 1346 if(out_fmt==IMGFMT_UYVY) printf("UYVY\n"); else |
766 | 1347 if(out_fmt==IMGFMT_YVYU) printf("YVYU\n"); else |
470 | 1348 if(out_fmt==IMGFMT_I420) printf("I420\n"); else |
1349 if(out_fmt==IMGFMT_IYUV) printf("IYUV\n"); else | |
340 | 1350 if(out_fmt==IMGFMT_YV12) printf("YV12\n"); |
1351 } | |
1352 | |
1353 // if(verbose) printf("Destination size: %d x %d out_fmt=%0X\n", | |
1354 // screen_size_x,screen_size_y,out_fmt); | |
1 | 1355 |
337 | 1356 if(verbose) printf("video_out->init(%dx%d->%dx%d,flags=%d,'%s',0x%X)\n", |
398 | 1357 sh_video->disp_w,sh_video->disp_h, |
1 | 1358 screen_size_x,screen_size_y, |
766 | 1359 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), |
337 | 1360 title,out_fmt); |
1 | 1361 |
487 | 1362 if(verbose) printf("vo_debug3: out_fmt=0x%08X\n",out_fmt); |
1363 | |
723 | 1364 #ifdef HAVE_GUI |
1365 if ( !nogui ) | |
1366 { | |
1367 mplShMem->items.videodata.width=sh_video->disp_w; | |
1368 mplShMem->items.videodata.height=sh_video->disp_h; | |
1369 mplSendMessage( mplSetVideoData ); | |
1370 } | |
1371 #endif | |
1372 | |
398 | 1373 if(video_out->init(sh_video->disp_w,sh_video->disp_h, |
1 | 1374 screen_size_x,screen_size_y, |
766 | 1375 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), |
337 | 1376 title,out_fmt)){ |
723 | 1377 printf("FATAL: Cannot initialize video driver!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1378 GUI_MSG( mplCantInitVideoDriver ) |
723 | 1379 exit(1); |
1 | 1380 } |
1381 if(verbose) printf("INFO: Video OUT driver init OK!\n"); | |
1382 | |
1383 fflush(stdout); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1384 |
1 | 1385 //================== MAIN: ========================== |
1386 { | |
955 | 1387 //float audio_buffer_delay=0; |
746 | 1388 |
1389 //float buffer_delay=0; | |
1 | 1390 float frame_correction=0; // A-V timestamp kulonbseg atlagolas |
1391 int frame_corr_num=0; // | |
1392 float v_frame=0; // Video | |
1393 float time_frame=0; // Timer | |
1394 float c_total=0; | |
780 | 1395 float max_pts_correction=0;//default_max_pts_correction; |
1 | 1396 int eof=0; |
1397 int force_redraw=0; | |
1398 float num_frames=0; // number of frames played | |
1399 double video_time_usage=0; | |
1400 double vout_time_usage=0; | |
1401 double audio_time_usage=0; | |
36 | 1402 int grab_frames=0; |
212 | 1403 char osd_text_buffer[64]; |
715 | 1404 int drop_frame=0; |
1405 int drop_frame_cnt=0; | |
1 | 1406 |
1407 #ifdef HAVE_LIRC | |
723 | 1408 #ifdef HAVE_GUI |
1409 if ( nogui ) | |
1410 #endif | |
1 | 1411 lirc_mp_setup(); |
1412 #endif | |
1413 | |
1005 | 1414 #ifdef HAVE_GUI |
1415 if ( nogui ) | |
1416 { | |
1417 #endif | |
1 | 1418 #ifdef USE_TERMCAP |
1419 load_termcap(NULL); // load key-codes | |
1420 #endif | |
692 | 1421 if(f) getch2_enable(); |
1005 | 1422 #ifdef HAVE_GUI |
1423 } | |
1424 #endif | |
1 | 1425 |
1426 //========= Catch terminate signals: ================ | |
1427 // terminate requests: | |
1428 signal(SIGTERM,exit_sighandler); // kill | |
1429 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed | |
723 | 1430 |
1431 #ifdef HAVE_GUI | |
1432 if ( nogui ) | |
1433 #endif | |
1434 signal(SIGINT,exit_sighandler); // Interrupt from keyboard | |
1435 | |
1 | 1436 signal(SIGQUIT,exit_sighandler); // Quit from keyboard |
1437 // fatal errors: | |
1438 signal(SIGBUS,exit_sighandler); // bus error | |
1439 signal(SIGSEGV,exit_sighandler); // segfault | |
1440 signal(SIGILL,exit_sighandler); // illegal instruction | |
1441 signal(SIGFPE,exit_sighandler); // floating point exc. | |
1442 signal(SIGABRT,exit_sighandler); // abort() | |
1443 | |
1444 //================ SETUP AUDIO ========================== | |
1445 current_module="setup_audio"; | |
1446 | |
1447 if(has_audio){ | |
955 | 1448 |
969 | 1449 if(!audio_out->init(force_srate?force_srate:sh_audio->samplerate, |
1450 sh_audio->channels,sh_audio->sample_format,0)){ | |
955 | 1451 printf("couldn't open/init audio device -> NOSOUND\n"); |
1 | 1452 has_audio=0; |
1453 } | |
1454 | |
955 | 1455 // printf("Audio buffer size: %d bytes, delay: %5.3fs\n",audio_buffer_size,audio_buffer_delay); |
746 | 1456 |
758 | 1457 // fixup audio buffer size: |
782 | 1458 // if(outburst<MAX_OUTBURST){ |
1459 // sh_audio->a_buffer_size=sh_audio->audio_out_minsize+outburst; | |
1460 // printf("Audio out buffer size reduced to %d bytes\n",sh_audio->a_buffer_size); | |
1461 // } | |
758 | 1462 |
746 | 1463 // a_frame=-(audio_buffer_delay); |
1 | 1464 } |
1465 | |
955 | 1466 a_frame=0; |
1 | 1467 |
340 | 1468 if(!has_audio){ |
1 | 1469 printf("Audio: no sound\n"); |
1470 if(verbose) printf("Freeing %d unused audio chunks\n",d_audio->packs); | |
1471 ds_free_packs(d_audio); // free buffered chunks | |
1472 d_audio->id=-2; // do not read audio chunks | |
442 | 1473 if(sh_audio) if(sh_audio->a_buffer) free(sh_audio->a_buffer); |
296 | 1474 alsa=1; |
1475 // fake, required for timer: | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1476 #if 1 |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1477 sh_audio=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1478 #else |
442 | 1479 sh_audio=new_sh_audio(255); // FIXME!!!!!!!!!! |
296 | 1480 sh_audio->samplerate=76800; |
1481 sh_audio->samplesize=sh_audio->channels=2; | |
1482 sh_audio->o_bps=sh_audio->channels*sh_audio->samplerate*sh_audio->samplesize; | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1483 #endif |
1 | 1484 } |
1485 | |
1486 current_module=NULL; | |
1487 | |
1488 //==================== START PLAYING ======================= | |
1489 | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1490 if(file_format==DEMUXER_TYPE_AVI && has_audio){ |
780 | 1491 //a_pts=d_audio->pts; |
955 | 1492 printf("Initial frame delay A: %d V: %d\n",(int)sh_audio->audio.dwInitialFrames,(int)sh_video->video.dwInitialFrames); |
780 | 1493 if(!pts_from_bps){ |
1494 float x=(float)(sh_audio->audio.dwInitialFrames-sh_video->video.dwInitialFrames)*sh_video->frametime; | |
1495 audio_delay-=x; | |
1496 printf("AVI Initial frame delay: %5.3f\n",x); | |
1497 } | |
340 | 1498 if(verbose){ |
780 | 1499 // printf("v: audio_delay=%5.3f buffer_delay=%5.3f a_pts=%5.3f a_frame=%5.3f\n", |
1500 // audio_delay,audio_buffer_delay,a_pts,a_frame); | |
340 | 1501 printf("START: a_pts=%5.3f v_pts=%5.3f \n",d_audio->pts,d_video->pts); |
1502 } | |
1 | 1503 delay_corrected=0; // has to correct PTS diffs |
1504 d_video->pts=0;d_audio->pts=0; // PTS is outdated now! | |
780 | 1505 } else { |
1506 pts_from_bps=0; // it must be 0 for mpeg/asf ! | |
1 | 1507 } |
398 | 1508 if(force_fps){ |
1509 sh_video->fps=force_fps; | |
1510 sh_video->frametime=1.0f/sh_video->fps; | |
955 | 1511 printf("FPS forced to be %5.3f (ftime: %5.3f)\n",sh_video->fps,sh_video->frametime); |
398 | 1512 } |
1 | 1513 |
1514 printf("Start playing...\n");fflush(stdout); | |
1515 | |
1516 InitTimer(); | |
1517 | |
1518 while(!eof){ | |
1519 | |
1520 /*========================== PLAY AUDIO ============================*/ | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1521 //if(!has_audio){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1522 // int playsize=512; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1523 // a_frame+=playsize/(float)(sh_audio->o_bps); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1524 // a_pts+=playsize/(float)(sh_audio->o_bps); |
746 | 1525 //time_frame+=playsize/(float)(sh_audio->o_bps); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1526 //} else |
1 | 1527 while(has_audio){ |
746 | 1528 unsigned int t; |
955 | 1529 int playsize=audio_out->get_space(); |
746 | 1530 |
955 | 1531 if(!playsize) break; // buffer is full, do not block here!!! |
746 | 1532 |
1533 if(playsize>MAX_OUTBURST) playsize=MAX_OUTBURST; // we shouldn't exceed it! | |
1534 //if(playsize>outburst) playsize=outburst; | |
291 | 1535 |
1536 // Update buffer if needed | |
746 | 1537 t=GetTimer(); |
1 | 1538 current_module="decode_audio"; // Enter AUDIO decoder module |
746 | 1539 while(sh_audio->a_buffer_len<playsize && !d_audio->eof){ |
1540 int ret=decode_audio(sh_audio,&sh_audio->a_buffer[sh_audio->a_buffer_len], | |
1541 playsize-sh_audio->a_buffer_len,sh_audio->a_buffer_size-sh_audio->a_buffer_len); | |
296 | 1542 if(ret>0) sh_audio->a_buffer_len+=ret; else break; |
1 | 1543 } |
1544 current_module=NULL; // Leave AUDIO decoder module | |
291 | 1545 t=GetTimer()-t;audio_time_usage+=t*0.000001; |
746 | 1546 |
1547 if(playsize>sh_audio->a_buffer_len) playsize=sh_audio->a_buffer_len; | |
1548 | |
955 | 1549 playsize=audio_out->play(sh_audio->a_buffer,playsize,0); |
1 | 1550 |
955 | 1551 if(playsize>0){ |
746 | 1552 sh_audio->a_buffer_len-=playsize; |
1553 memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[playsize],sh_audio->a_buffer_len); | |
1554 a_frame+=playsize/(float)(sh_audio->o_bps); | |
1555 //a_pts+=playsize/(float)(sh_audio->o_bps); | |
1556 // time_frame+=playsize/(float)(sh_audio->o_bps); | |
1 | 1557 } |
1558 | |
1559 break; | |
1560 } // if(has_audio) | |
1561 | |
1562 /*========================== UPDATE TIMERS ============================*/ | |
746 | 1563 #if 0 |
1 | 1564 if(alsa){ |
1565 // Use system timer for sync, not audio card/driver | |
1566 time_frame-=GetRelativeTime(); | |
1567 if(time_frame<-0.1 || time_frame>0.1){ | |
1568 time_frame=0; | |
1569 } else { | |
398 | 1570 while(time_frame>0.022){ |
535 | 1571 usleep(time_frame-0.022); |
398 | 1572 time_frame-=GetRelativeTime(); |
1573 } | |
103 | 1574 while(time_frame>0.007){ |
398 | 1575 usleep(0); |
103 | 1576 time_frame-=GetRelativeTime(); |
1577 } | |
398 | 1578 } |
1 | 1579 } |
746 | 1580 #endif |
1 | 1581 |
1582 /*========================== PLAY VIDEO ============================*/ | |
1583 | |
1584 if(1) | |
746 | 1585 while(1){ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1586 |
398 | 1587 float frame_time=1; |
1588 float pts1=d_video->pts; | |
1 | 1589 |
1590 current_module="decode_video"; | |
715 | 1591 |
746 | 1592 // if(!force_redraw && v_frame+0.1<a_frame) drop_frame=1; else drop_frame=0; |
798 | 1593 // if(drop_frame) ++drop_frame_cnt; |
1 | 1594 |
1595 //-------------------- Decode a frame: ----------------------- | |
442 | 1596 switch(sh_video->codec->driver){ |
1 | 1597 case 3: { |
1598 // OpenDivX | |
1599 unsigned int t=GetTimer(); | |
1600 unsigned int t2; | |
1601 DEC_FRAME dec_frame; | |
851 | 1602 #ifdef NEW_DECORE |
1603 DEC_PICTURE dec_pic; | |
1604 #endif | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
1605 unsigned char* start=NULL; |
1 | 1606 int in_size=ds_get_packet(d_video,&start); |
1607 if(in_size<0){ eof=1;break;} | |
1608 if(in_size>max_framesize) max_framesize=in_size; | |
1609 // let's decode | |
1610 dec_frame.length = in_size; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1611 dec_frame.bitstream = start; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1612 dec_frame.render_flag = 1; |
851 | 1613 #ifdef NEW_DECORE |
1614 dec_frame.bmp=&dec_pic; | |
1615 dec_pic.y=dec_pic.u=dec_pic.v=NULL; | |
1616 #endif | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1617 decore(0x123, 0, &dec_frame, NULL); |
1 | 1618 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
1619 | |
851 | 1620 #ifdef NEW_DECORE |
1621 if(dec_pic.y){ | |
1622 void* src[3]; | |
1623 int stride[3]; | |
1624 src[0]=dec_pic.y; | |
1625 src[1]=dec_pic.u; | |
1626 src[2]=dec_pic.v; | |
1627 stride[0]=dec_pic.stride_y; | |
1628 stride[1]=stride[2]=dec_pic.stride_uv; | |
1629 video_out->draw_slice(src,stride, | |
1630 sh_video->disp_w,sh_video->disp_h,0,0); | |
1631 } | |
1632 #else | |
1 | 1633 if(opendivx_src[0]){ |
1634 video_out->draw_slice(opendivx_src,opendivx_stride, | |
398 | 1635 sh_video->disp_w,sh_video->disp_h,0,0); |
1 | 1636 opendivx_src[0]=NULL; |
1637 } | |
851 | 1638 #endif |
1 | 1639 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
1640 | |
1641 break; | |
1642 } | |
175 | 1643 #ifdef USE_DIRECTSHOW |
1644 case 4: { // W32/DirectShow | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
1645 unsigned char* start=NULL; |
175 | 1646 unsigned int t=GetTimer(); |
1647 unsigned int t2; | |
1648 int in_size=ds_get_packet(d_video,&start); | |
1649 if(in_size<0){ eof=1;break;} | |
1650 if(in_size>max_framesize) max_framesize=in_size; | |
1651 | |
979 | 1652 if(d_video->flags) if(verbose) printf("***keyframe***\n"); |
1653 | |
798 | 1654 if(drop_frame<2) DS_VideoDecoder_DecodeFrame(start, in_size, 0, !drop_frame); |
470 | 1655 current_module="draw_frame"; |
1656 | |
721 | 1657 if(!drop_frame && sh_video->our_out_buffer){ |
175 | 1658 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
470 | 1659 if(out_fmt==IMGFMT_YV12||out_fmt==IMGFMT_IYUV||out_fmt==IMGFMT_I420){ |
1660 uint8_t* dst[3]; | |
1661 int stride[3]; | |
1662 stride[0]=sh_video->disp_w; | |
1663 stride[1]=stride[2]=sh_video->disp_w/2; | |
1664 dst[0]=sh_video->our_out_buffer; | |
1665 dst[2]=dst[0]+sh_video->disp_w*sh_video->disp_h; | |
1666 dst[1]=dst[2]+sh_video->disp_w*sh_video->disp_h/4; | |
1667 video_out->draw_slice(dst,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
1668 } else | |
291 | 1669 video_out->draw_frame((uint8_t **)&sh_video->our_out_buffer); |
175 | 1670 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
715 | 1671 } |
175 | 1672 break; |
1673 } | |
1674 #endif | |
1 | 1675 case 2: { |
1676 HRESULT ret; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
1677 unsigned char* start=NULL; |
1 | 1678 unsigned int t=GetTimer(); |
1679 unsigned int t2; | |
1680 int in_size=ds_get_packet(d_video,&start); | |
1681 if(in_size<0){ eof=1;break;} | |
1682 if(in_size>max_framesize) max_framesize=in_size; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1683 |
979 | 1684 if(d_video->flags) if(verbose) printf("***keyframe***\n"); |
1685 | |
442 | 1686 if(in_size){ |
1687 sh_video->bih->biSizeImage = in_size; | |
855 | 1688 |
856 | 1689 // sh_video->bih->biWidth = 1280; |
1690 // sh_video->o_bih.biWidth = 1280; | |
855 | 1691 // ret = ICDecompress(avi_header.hic, ICDECOMPRESS_NOTKEYFRAME|(ICDECOMPRESS_HURRYUP|ICDECOMPRESS_PREROL), |
980 | 1692 ret = ICDecompress(sh_video->hic, |
1693 ( (d_video->flags&1) ? 0 : ICDECOMPRESS_NOTKEYFRAME ) | | |
1694 ( (drop_frame==2 && !(d_video->flags&1))?(ICDECOMPRESS_HURRYUP|ICDECOMPRESS_PREROL):0 ) , | |
442 | 1695 sh_video->bih, start, |
715 | 1696 &sh_video->o_bih, |
1697 drop_frame ? 0 : sh_video->our_out_buffer); | |
1698 | |
606 | 1699 if(ret){ printf("Error decompressing frame, err=%d\n",(int)ret);break; } |
442 | 1700 } |
470 | 1701 current_module="draw_frame"; |
715 | 1702 if(!drop_frame){ |
1 | 1703 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
470 | 1704 // if(out_fmt==IMGFMT_YV12){ |
1705 if(out_fmt==IMGFMT_YV12||out_fmt==IMGFMT_IYUV||out_fmt==IMGFMT_I420){ | |
1706 uint8_t* dst[3]; | |
1707 int stride[3]; | |
1708 stride[0]=sh_video->disp_w; | |
1709 stride[1]=stride[2]=sh_video->disp_w/2; | |
1710 dst[0]=sh_video->our_out_buffer; | |
1711 dst[2]=dst[0]+sh_video->disp_w*sh_video->disp_h; | |
1712 dst[1]=dst[2]+sh_video->disp_w*sh_video->disp_h/4; | |
1713 video_out->draw_slice(dst,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
1714 } else | |
291 | 1715 video_out->draw_frame((uint8_t **)&sh_video->our_out_buffer); |
1 | 1716 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
715 | 1717 } |
1 | 1718 break; |
1719 } | |
1720 case 1: { | |
111 | 1721 int in_frame=0; |
398 | 1722 int t=0; |
1723 float newfps; | |
111 | 1724 videobuf_len=0; |
1725 while(videobuf_len<VIDEOBUFFER_SIZE-MAX_VIDEO_PACKET_SIZE){ | |
1726 int i=sync_video_packet(d_video); | |
1727 if(in_frame){ | |
1728 if(i<0x101 || i>=0x1B0){ // not slice code -> end of frame | |
398 | 1729 #if 1 |
111 | 1730 // send END OF FRAME code: |
1731 videobuffer[videobuf_len+0]=0; | |
1732 videobuffer[videobuf_len+1]=0; | |
1733 videobuffer[videobuf_len+2]=1; | |
1734 videobuffer[videobuf_len+3]=0xFF; | |
1735 videobuf_len+=4; | |
1736 #endif | |
1737 if(!i) eof=1; // EOF | |
1738 break; | |
1739 } | |
1740 } else { | |
1741 //if(i==0x100) in_frame=1; // picture startcode | |
1742 if(i>=0x101 && i<0x1B0) in_frame=1; // picture startcode | |
1743 else if(!i){ eof=1; break;} // EOF | |
1744 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1745 if(grab_frames==2 && (i==0x1B3 || i==0x1B8)) grab_frames=1; |
111 | 1746 if(!read_video_packet(d_video)){ eof=1; break;} // EOF |
1747 //printf("read packet 0x%X, len=%d\n",i,videobuf_len); | |
1748 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1749 |
111 | 1750 if(videobuf_len>max_framesize) max_framesize=videobuf_len; // debug |
1751 //printf("--- SEND %d bytes\n",videobuf_len); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1752 if(grab_frames==1){ |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1753 FILE *f=fopen("grab.mpg","ab"); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1754 fwrite(videobuffer,videobuf_len-4,1,f); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1755 fclose(f); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1756 } |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1757 |
398 | 1758 t-=GetTimer(); |
967 | 1759 mpeg2_decode_data(video_out, videobuffer, videobuffer+videobuf_len,drop_frame); |
398 | 1760 t+=GetTimer(); video_time_usage+=t*0.000001; |
111 | 1761 |
398 | 1762 newfps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; |
442 | 1763 if(ABS(sh_video->fps-newfps)>0.01f) if(!force_fps){ |
398 | 1764 printf("Warning! FPS changed %5.3f -> %5.3f (%f) [%d] \n",sh_video->fps,newfps,sh_video->fps-newfps,picture->frame_rate_code); |
1765 sh_video->fps=newfps; | |
1766 sh_video->frametime=10000.0f/(float)frameratecode2framerate[picture->frame_rate_code]; | |
1 | 1767 } |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1768 |
398 | 1769 frame_time=(100+picture->repeat_count)*0.01f; |
1770 picture->repeat_count=0; | |
1771 | |
1 | 1772 break; |
1773 } | |
1774 } // switch | |
1775 //------------------------ frame decoded. -------------------- | |
1776 | |
398 | 1777 // Increase video timers: |
1778 num_frames+=frame_time; | |
1779 frame_time*=sh_video->frametime; | |
442 | 1780 if(file_format==DEMUXER_TYPE_ASF && !force_fps){ |
398 | 1781 // .ASF files has no fixed FPS - just frame durations! |
1782 float d=d_video->pts-pts1; | |
1783 if(d>=0 && d<5) frame_time=d; | |
595 | 1784 if(d>0){ |
1785 if(verbose) | |
1786 if((int)sh_video->fps==1000) | |
1787 printf("\rASF framerate: %d fps \n",(int)(1.0f/d)); | |
1788 sh_video->frametime=d; // 1ms | |
1789 sh_video->fps=1.0f/d; | |
1790 } | |
398 | 1791 } |
1792 v_frame+=frame_time; | |
780 | 1793 //v_pts+=frame_time; |
746 | 1794 time_frame+=frame_time; // for nosound |
1795 | |
780 | 1796 if(file_format==DEMUXER_TYPE_MPEG_PS) d_video->pts+=frame_time; |
940 | 1797 |
1798 if(verbose>1) printf("*** ftime=%5.3f ***\n",frame_time); | |
780 | 1799 |
798 | 1800 if(drop_frame){ |
746 | 1801 |
798 | 1802 if(has_audio){ |
955 | 1803 int delay=audio_out->get_delay(); |
798 | 1804 if(verbose>1)printf("delay=%d\n",delay); |
1805 time_frame=v_frame; | |
1806 time_frame-=a_frame-(float)delay/(float)sh_audio->o_bps; | |
940 | 1807 if(time_frame>-2*frame_time) drop_frame=0; // stop dropping frames |
798 | 1808 } |
1809 | |
1810 } else { | |
780 | 1811 // It's time to sleep... |
1812 current_module="sleep"; | |
1813 | |
1814 time_frame-=GetRelativeTime(); // reset timer | |
1815 | |
1816 if(has_audio){ | |
955 | 1817 int delay=audio_out->get_delay(); |
758 | 1818 if(verbose>1)printf("delay=%d\n",delay); |
746 | 1819 time_frame=v_frame; |
1820 time_frame-=a_frame-(float)delay/(float)sh_audio->o_bps; | |
798 | 1821 // we are out of time... drop next frame! |
940 | 1822 if(time_frame<-2*frame_time){ |
798 | 1823 drop_frame=frame_dropping; // tricky! |
1824 ++drop_frame_cnt; | |
1825 } | |
780 | 1826 } else { |
940 | 1827 if(time_frame<-3*frame_time || time_frame>3*frame_time) time_frame=0; |
780 | 1828 } |
798 | 1829 |
758 | 1830 if(verbose>1)printf("sleep: %5.3f a:%6.3f v:%6.3f \n",time_frame,a_frame,v_frame); |
746 | 1831 |
1832 while(time_frame>0.005){ | |
1833 if(time_frame<=0.020) | |
1834 usleep(0); // sleep 10ms | |
1835 else | |
1836 usleep(1000000*(time_frame-0.002)); | |
1837 time_frame-=GetRelativeTime(); | |
1838 } | |
117 | 1839 |
715 | 1840 current_module="flip_page"; |
1841 video_out->flip_page(); | |
1842 // usleep(50000); // test only! | |
780 | 1843 |
715 | 1844 } |
780 | 1845 |
1846 current_module=NULL; | |
715 | 1847 |
1 | 1848 if(eof) break; |
220 | 1849 if(force_redraw){ |
1850 --force_redraw; | |
577 | 1851 if(!force_redraw) osd_function=OSD_PLAY; |
746 | 1852 continue; |
220 | 1853 } |
1 | 1854 |
1855 // printf("A:%6.1f V:%6.1f A-V:%7.3f frame=%5.2f \r",d_audio->pts,d_video->pts,d_audio->pts-d_video->pts,a_frame); | |
1856 // fflush(stdout); | |
1857 | |
1858 #if 1 | |
1859 /*================ A-V TIMESTAMP CORRECTION: =========================*/ | |
1860 if(has_audio){ | |
780 | 1861 float a_pts=0; |
1862 float v_pts=0; | |
1863 | |
746 | 1864 // unplayed bytes in our and soundcard/dma buffer: |
955 | 1865 int delay_bytes=audio_out->get_delay()+sh_audio->a_buffer_len; |
746 | 1866 float delay=(float)delay_bytes/(float)sh_audio->o_bps; |
1867 | |
780 | 1868 if(pts_from_bps){ |
1869 // PTS = (audio position)/(bytes per sec) | |
815 | 1870 // a_pts=(ds_tell(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; |
1871 a_pts=(ds_tell(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->wf->nAvgBytesPerSec; | |
1 | 1872 delay_corrected=1; // hack |
889 | 1873 v_pts=d_video->pack_no*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
1874 if(verbose)printf("%5.3f|",v_pts-d_video->pts); | |
780 | 1875 } else { |
1876 if(!delay_corrected && d_audio->pts){ | |
746 | 1877 float x=d_audio->pts-d_video->pts-(delay+audio_delay); |
1878 float y=-(delay+audio_delay); | |
1 | 1879 printf("Initial PTS delay: %5.3f sec (calculated: %5.3f)\n",x,y); |
933 | 1880 initial_pts_delay+=x; |
1 | 1881 audio_delay+=x; |
1882 delay_corrected=1; | |
340 | 1883 if(verbose) |
1 | 1884 printf("v: audio_delay=%5.3f buffer_delay=%5.3f a.pts=%5.3f v.pts=%5.3f\n", |
746 | 1885 audio_delay,delay,d_audio->pts,d_video->pts); |
1 | 1886 } |
780 | 1887 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec) |
746 | 1888 a_pts=d_audio->pts; |
1889 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; | |
889 | 1890 v_pts=d_video->pts-frame_time; |
780 | 1891 } |
746 | 1892 |
933 | 1893 if(verbose>1)printf("### A:%8.3f (%8.3f) V:%8.3f A-V:%7.4f \n",a_pts,a_pts-audio_delay-delay,v_pts,(a_pts-delay-audio_delay)-v_pts); |
780 | 1894 |
1895 if(frame_corr_num==1){ | |
1896 float x=frame_correction; | |
398 | 1897 if(delay_corrected){ |
746 | 1898 // printf("A:%6.1f V:%6.1f A-V:%7.3f",a_pts-audio_delay-delay,v_pts,x); |
1899 printf("A:%6.1f (%6.1f) V:%6.1f A-V:%7.3f",a_pts,a_pts-audio_delay-delay,v_pts,x); | |
780 | 1900 x*=0.1f; |
1 | 1901 if(x<-max_pts_correction) x=-max_pts_correction; else |
1902 if(x> max_pts_correction) x= max_pts_correction; | |
780 | 1903 if(default_max_pts_correction>=0) |
1904 max_pts_correction=default_max_pts_correction; | |
1905 else | |
1906 max_pts_correction=sh_video->frametime*0.10; // +-10% of time | |
1 | 1907 a_frame+=x; c_total+=x; |
798 | 1908 printf(" ct:%7.3f %3d %2d%% %2d%% %3.1f%% %d\r",c_total, |
1 | 1909 (int)num_frames, |
1910 (v_frame>0.5)?(int)(100.0*video_time_usage/(double)v_frame):0, | |
1911 (v_frame>0.5)?(int)(100.0*vout_time_usage/(double)v_frame):0, | |
442 | 1912 (v_frame>0.5)?(100.0*audio_time_usage/(double)v_frame):0 |
798 | 1913 ,drop_frame_cnt |
442 | 1914 // dbg_es_sent-dbg_es_rcvd |
1 | 1915 ); |
1916 fflush(stdout); | |
1917 } | |
1918 frame_corr_num=0; frame_correction=0; | |
1919 } | |
780 | 1920 |
746 | 1921 if(frame_corr_num>=0) frame_correction+=(a_pts-delay-audio_delay)-v_pts; |
780 | 1922 |
1 | 1923 } else { |
1924 // No audio: | |
780 | 1925 //if(d_video->pts) |
955 | 1926 float v_pts=d_video->pts; |
1 | 1927 if(frame_corr_num==5){ |
1928 // printf("A: --- V:%6.1f \r",v_pts); | |
442 | 1929 printf("V:%6.1f %3d %2d%% %2d%% %3.1f%% \r",v_pts, |
1 | 1930 (int)num_frames, |
1931 (v_frame>0.5)?(int)(100.0*video_time_usage/(double)v_frame):0, | |
1932 (v_frame>0.5)?(int)(100.0*vout_time_usage/(double)v_frame):0, | |
442 | 1933 (v_frame>0.5)?(100.0*audio_time_usage/(double)v_frame):0 |
1934 // dbg_es_sent-dbg_es_rcvd | |
1935 ); | |
1 | 1936 |
1937 fflush(stdout); | |
1938 frame_corr_num=0; | |
1939 } | |
1940 } | |
1941 ++frame_corr_num; | |
1942 #endif | |
1943 | |
220 | 1944 if(osd_visible){ |
1945 --osd_visible; | |
1946 if(!osd_visible) vo_osd_progbar_type=-1; // disable | |
1947 } | |
371 | 1948 |
1949 if(osd_function==OSD_PAUSE){ | |
1950 printf("\n------ PAUSED -------\r");fflush(stdout); | |
955 | 1951 audio_out->reset(); // stop audio |
723 | 1952 #ifdef HAVE_GUI |
1953 if ( nogui ) | |
1954 { | |
1955 #endif | |
1956 while( | |
371 | 1957 #ifdef HAVE_LIRC |
723 | 1958 lirc_mp_getinput()<=0 && |
371 | 1959 #endif |
723 | 1960 (!f || getch2(20)<=0) && mplayer_get_key()<=0){ |
1961 video_out->check_events(); | |
1962 if(!f) usleep(1000); // do not eat the CPU | |
1963 } | |
1964 osd_function=OSD_PLAY; | |
1965 #ifdef HAVE_GUI | |
1966 } else while( osd_function != OSD_PLAY ) usleep( 1000 ); | |
1967 #endif | |
371 | 1968 } |
1969 | |
746 | 1970 |
1971 if(!force_redraw) break; | |
1 | 1972 } // while(v_frame<a_frame || force_redraw) |
1973 | |
1974 | |
1975 //================= Keyboard events, SEEKing ==================== | |
1976 | |
723 | 1977 { int c; |
1 | 1978 while( |
1979 #ifdef HAVE_LIRC | |
1980 (c=lirc_mp_getinput())>0 || | |
1981 #endif | |
701 | 1982 (f && (c=getch2(0))>0) || (c=mplayer_get_key())>0) switch(c){ |
1 | 1983 // seek 10 sec |
1984 case KEY_RIGHT: | |
220 | 1985 osd_function=OSD_FFW; |
1 | 1986 rel_seek_secs+=10;break; |
1987 case KEY_LEFT: | |
220 | 1988 osd_function=OSD_REW; |
1 | 1989 rel_seek_secs-=10;break; |
1990 // seek 1 min | |
1991 case KEY_UP: | |
220 | 1992 osd_function=OSD_FFW; |
1 | 1993 rel_seek_secs+=60;break; |
1994 case KEY_DOWN: | |
220 | 1995 osd_function=OSD_REW; |
1 | 1996 rel_seek_secs-=60;break; |
651 | 1997 // seek 10 min |
1998 case KEY_PAGE_UP: | |
1999 rel_seek_secs+=600;break; | |
2000 case KEY_PAGE_DOWN: | |
2001 rel_seek_secs-=600;break; | |
1 | 2002 // delay correction: |
2003 case '+': | |
746 | 2004 audio_delay+=0.1; // increase audio buffer delay |
1 | 2005 a_frame-=0.1; |
2006 break; | |
2007 case '-': | |
746 | 2008 audio_delay-=0.1; // decrease audio buffer delay |
1 | 2009 a_frame+=0.1; |
2010 break; | |
2011 // quit | |
2012 case KEY_ESC: // ESC | |
2013 case KEY_ENTER: // ESC | |
2014 case 'q': exit_player("Quit"); | |
36 | 2015 case 'g': grab_frames=2;break; |
1 | 2016 // pause |
2017 case 'p': | |
2018 case ' ': | |
220 | 2019 osd_function=OSD_PAUSE; |
371 | 2020 break; |
2021 case 'o': // toggle OSD | |
2022 osd_level=(osd_level+1)%3; | |
1 | 2023 break; |
939 | 2024 case 'z': |
2025 sub_delay -= 0.1; | |
2026 break; | |
2027 case 'x': | |
2028 sub_delay += 0.1; | |
2029 break; | |
459 | 2030 case '*': |
555 | 2031 case '/': { |
2032 int mixer_l=0; int mixer_r=0; | |
2033 mixer_getvolume( &mixer_l,&mixer_r ); | |
2034 if(c=='*'){ | |
2035 if ( mixer_l < 100 ) mixer_l++; | |
2036 if ( mixer_r < 100 ) mixer_r++; | |
2037 } else { | |
2038 if ( mixer_l > 0 ) mixer_l--; | |
2039 if ( mixer_r > 0 ) mixer_r--; | |
2040 } | |
2041 mixer_setvolume( mixer_l,mixer_r ); | |
2042 | |
2043 if(osd_level){ | |
2044 osd_visible=sh_video->fps; // 1 sec | |
2045 vo_osd_progbar_type=OSD_VOLUME; | |
2046 vo_osd_progbar_value=(mixer_l+mixer_r)*5/4; | |
2047 //printf("volume: %d\n",vo_osd_progbar_value); | |
2048 } | |
2049 } | |
2050 break; | |
459 | 2051 case 'm': |
510 | 2052 mixer_usemaster=!mixer_usemaster; |
459 | 2053 break; |
715 | 2054 case 'd': |
798 | 2055 frame_dropping=(frame_dropping+1)%3; |
2056 printf("== drop: %d == \n",frame_dropping); | |
715 | 2057 break; |
1 | 2058 } |
651 | 2059 if (seek_to_sec) { |
937 | 2060 int a,b; float d; |
2061 | |
2062 if (sscanf(seek_to_sec, "%d:%d:%f", &a,&b,&d)==3) | |
2063 rel_seek_secs += 3600*a +60*b +d ; | |
2064 else if (sscanf(seek_to_sec, "%d:%f", &a, &d)==2) | |
2065 rel_seek_secs += 60*a +d; | |
2066 else if (sscanf(seek_to_sec, "%f", &d)==1) | |
2067 rel_seek_secs += d; | |
2068 | |
2069 seek_to_sec = NULL; | |
651 | 2070 } |
937 | 2071 |
1 | 2072 if(rel_seek_secs) |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2073 if(file_format==DEMUXER_TYPE_AVI && demuxer->idx_size<=0){ |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2074 printf("Can't seek in raw .AVI streams! (index required, try with the -idx switch!) \n"); |
1 | 2075 } else { |
2076 int skip_audio_bytes=0; | |
2077 float skip_audio_secs=0; | |
2078 | |
2079 // clear demux buffers: | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
2080 if(has_audio){ ds_free_packs(d_audio);sh_audio->a_buffer_len=0;} |
1 | 2081 ds_free_packs(d_video); |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2082 |
296 | 2083 // printf("sh_audio->a_buffer_len=%d \n",sh_audio->a_buffer_len); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
2084 |
1 | 2085 |
2086 switch(file_format){ | |
2087 | |
2088 case DEMUXER_TYPE_AVI: { | |
2089 //================= seek in AVI ========================== | |
398 | 2090 int rel_seek_frames=rel_seek_secs*sh_video->fps; |
1 | 2091 int curr_audio_pos=0; |
2092 int audio_chunk_pos=-1; | |
2093 int video_chunk_pos=d_video->pos; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2094 |
940 | 2095 skip_video_frames=0; |
1 | 2096 avi_audio_pts=0; |
2097 | |
940 | 2098 // find nearest video keyframe chunk pos: |
1 | 2099 if(rel_seek_frames>0){ |
2100 // seek forward | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2101 while(video_chunk_pos<demuxer->idx_size){ |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2102 int id=((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].ckid; |
1 | 2103 if(avi_stream_id(id)==d_video->id){ // video frame |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2104 if((--rel_seek_frames)<0 && ((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].dwFlags&AVIIF_KEYFRAME) break; |
1 | 2105 ++skip_audio_bytes; |
2106 } | |
2107 ++video_chunk_pos; | |
2108 } | |
2109 } else { | |
2110 // seek backward | |
2111 while(video_chunk_pos>=0){ | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2112 int id=((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].ckid; |
1 | 2113 if(avi_stream_id(id)==d_video->id){ // video frame |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2114 if((++rel_seek_frames)>0 && ((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].dwFlags&AVIIF_KEYFRAME) break; |
1 | 2115 --skip_audio_bytes; |
2116 } | |
2117 --video_chunk_pos; | |
2118 } | |
2119 } | |
889 | 2120 demuxer->idx_pos_a=demuxer->idx_pos_v=demuxer->idx_pos=video_chunk_pos; |
1 | 2121 // printf("%d frames skipped\n",skip_audio_bytes); |
2122 | |
2123 // re-calc video pts: | |
889 | 2124 d_video->pack_no=0; |
1 | 2125 for(i=0;i<video_chunk_pos;i++){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2126 int id=((AVIINDEXENTRY *)demuxer->idx)[i].ckid; |
889 | 2127 if(avi_stream_id(id)==d_video->id) ++d_video->pack_no; |
1 | 2128 } |
889 | 2129 avi_video_pts=d_video->pack_no*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
2130 | |
1 | 2131 if(has_audio){ |
2132 int i; | |
2133 int apos=0; | |
2134 int last=0; | |
2135 int len=0; | |
2136 | |
2137 // calc new audio position in audio stream: (using avg.bps value) | |
442 | 2138 curr_audio_pos=(avi_video_pts) * sh_audio->wf->nAvgBytesPerSec; |
1 | 2139 if(curr_audio_pos<0)curr_audio_pos=0; |
2140 #if 1 | |
2141 curr_audio_pos&=~15; // requires for PCM formats!!! | |
2142 #else | |
442 | 2143 curr_audio_pos/=sh_audio->wf->nBlockAlign; |
2144 curr_audio_pos*=sh_audio->wf->nBlockAlign; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2145 demuxer->audio_seekable=1; |
1 | 2146 #endif |
2147 | |
2148 // find audio chunk pos: | |
2149 for(i=0;i<video_chunk_pos;i++){ | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2150 int id=((AVIINDEXENTRY *)demuxer->idx)[i].ckid; |
1 | 2151 if(avi_stream_id(id)==d_audio->id){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2152 len=((AVIINDEXENTRY *)demuxer->idx)[i].dwChunkLength; |
1 | 2153 last=i; |
2154 if(apos<=curr_audio_pos && curr_audio_pos<(apos+len)){ | |
2155 if(verbose)printf("break;\n"); | |
2156 break; | |
2157 } | |
2158 apos+=len; | |
2159 } | |
2160 } | |
2161 if(verbose)printf("XXX i=%d last=%d apos=%d curr_audio_pos=%d \n", | |
2162 i,last,apos,curr_audio_pos); | |
2163 // audio_chunk_pos=last; // maybe wrong (if not break; ) | |
2164 audio_chunk_pos=i; // maybe wrong (if not break; ) | |
2165 skip_audio_bytes=curr_audio_pos-apos; | |
2166 | |
2167 // update stream position: | |
2168 d_audio->pos=audio_chunk_pos; | |
2169 d_audio->dpos=apos; | |
933 | 2170 d_audio->pts=initial_pts_delay+(float)apos/(float)sh_audio->wf->nAvgBytesPerSec; |
889 | 2171 demuxer->idx_pos_a=demuxer->idx_pos_v=demuxer->idx_pos=audio_chunk_pos; |
1 | 2172 |
303 | 2173 if(!(sh_audio->codec->flags&CODECS_FLAG_SEEKABLE)){ |
1 | 2174 #if 0 |
2175 // curr_audio_pos=apos; // selected audio codec can't seek in chunk | |
442 | 2176 skip_audio_secs=(float)skip_audio_bytes/(float)sh_audio->wf->nAvgBytesPerSec; |
1 | 2177 //printf("Seek_AUDIO: %d bytes --> %5.3f secs\n",skip_audio_bytes,skip_audio_secs); |
2178 skip_audio_bytes=0; | |
2179 #else | |
442 | 2180 int d=skip_audio_bytes % sh_audio->wf->nBlockAlign; |
1 | 2181 skip_audio_bytes-=d; |
2182 // curr_audio_pos-=d; | |
442 | 2183 skip_audio_secs=(float)d/(float)sh_audio->wf->nAvgBytesPerSec; |
1 | 2184 //printf("Seek_AUDIO: %d bytes --> %5.3f secs\n",d,skip_audio_secs); |
2185 #endif | |
2186 } | |
2187 // now: audio_chunk_pos=pos in index | |
2188 // skip_audio_bytes=bytes to skip from that chunk | |
2189 // skip_audio_secs=time to play audio before video (if can't skip) | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2190 |
1 | 2191 // calc skip_video_frames & adjust video pts counter: |
2192 // i=last; | |
889 | 2193 for(i=demuxer->idx_pos;i<video_chunk_pos;i++){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2194 int id=((AVIINDEXENTRY *)demuxer->idx)[i].ckid; |
889 | 2195 if(avi_stream_id(id)==d_video->id) ++skip_video_frames; |
1 | 2196 } |
889 | 2197 // requires for correct audio pts calculation (demuxer): |
2198 avi_video_pts-=skip_video_frames*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2199 |
1 | 2200 } |
2201 | |
2202 if(verbose) printf("SEEK: idx=%d (a:%d v:%d) v.skip=%d a.skip=%d/%4.3f \n", | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2203 demuxer->idx_pos,audio_chunk_pos,video_chunk_pos, |
1 | 2204 skip_video_frames,skip_audio_bytes,skip_audio_secs); |
2205 | |
2206 } | |
2207 break; | |
2208 | |
2209 case DEMUXER_TYPE_ASF: { | |
2210 //================= seek in ASF ========================== | |
2211 float p_rate=10; // packets / sec | |
2212 int rel_seek_packs=rel_seek_secs*p_rate; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2213 int rel_seek_bytes=rel_seek_packs*asf_packetsize; |
1 | 2214 int newpos; |
2215 //printf("ASF: packs: %d duration: %d \n",(int)fileh.packets,*((int*)&fileh.duration)); | |
2216 // printf("ASF_seek: %d secs -> %d packs -> %d bytes \n", | |
2217 // rel_seek_secs,rel_seek_packs,rel_seek_bytes); | |
2218 newpos=demuxer->filepos+rel_seek_bytes; | |
638 | 2219 if(newpos<0 || newpos<demuxer->movi_start) newpos=demuxer->movi_start; |
645 | 2220 // printf("\r -- asf: newpos=%d -- \n",newpos); |
1 | 2221 stream_seek(demuxer->stream,newpos); |
1009 | 2222 |
2223 ds_fill_buffer(d_video); | |
2224 if(has_audio) ds_fill_buffer(d_audio); | |
2225 | |
2226 while(1){ | |
2227 if(has_audio){ | |
2228 // sync audio: | |
2229 if (d_video->pts > d_audio->pts){ | |
2230 if(!ds_fill_buffer(d_audio)) has_audio=0; // skip audio. EOF? | |
2231 continue; | |
2232 } | |
2233 } | |
2234 if(d_video->flags&1) break; // found a keyframe! | |
2235 if(!ds_fill_buffer(d_video)) break; // skip frame. EOF? | |
2236 } | |
2237 | |
1 | 2238 } |
2239 break; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2240 |
1 | 2241 case DEMUXER_TYPE_MPEG_ES: |
2242 case DEMUXER_TYPE_MPEG_PS: { | |
2243 //================= seek in MPEG ========================== | |
2244 int newpos; | |
2245 if(picture->bitrate==0x3FFFF) // unspecified? | |
2246 newpos=demuxer->filepos+2324*75*rel_seek_secs; // 174.3 kbyte/sec | |
2247 else | |
2248 newpos=demuxer->filepos+(picture->bitrate*1000/16)*rel_seek_secs; | |
2249 | |
2250 if(newpos<seek_to_byte) newpos=seek_to_byte; | |
495
d4eb6bd44bbc
Seeking to sector boundary (STREAM_BUFFER_SIZE) for MPEGs
lgb
parents:
492
diff
changeset
|
2251 newpos&=~(STREAM_BUFFER_SIZE-1); /* sector boundary */ |
1 | 2252 stream_seek(demuxer->stream,newpos); |
2253 // re-sync video: | |
2254 videobuf_code_len=0; // reset ES stream buffer | |
2255 while(1){ | |
2256 int i=sync_video_packet(d_video); | |
2257 if(i==0x1B3 || i==0x1B8) break; // found it! | |
2258 if(!i || !skip_video_packet(d_video)){ eof=1; break;} // EOF | |
2259 } | |
2260 } | |
2261 break; | |
2262 | |
2263 } // switch(file_format) | |
2264 | |
595 | 2265 // Set OSD: |
2266 if(osd_level){ | |
2267 int len=((demuxer->movi_end-demuxer->movi_start)>>8); | |
2268 if(len>0){ | |
2269 osd_visible=sh_video->fps; // 1 sec | |
2270 vo_osd_progbar_type=0; | |
598 | 2271 vo_osd_progbar_value=(demuxer->filepos-demuxer->movi_start)/len; |
595 | 2272 } |
780 | 2273 //printf("avi filepos = %d (len=%d)\n",vo_osd_progbar_value,len); |
595 | 2274 } |
2275 | |
1 | 2276 //====================== re-sync audio: ===================== |
2277 if(has_audio){ | |
2278 | |
2279 if(skip_audio_bytes){ | |
2280 demux_read_data(d_audio,NULL,skip_audio_bytes); | |
889 | 2281 //d_audio->pts=0; // PTS is outdated because of the raw data skipping |
1 | 2282 } |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2283 |
1 | 2284 current_module="resync_audio"; |
2285 | |
442 | 2286 switch(sh_audio->codec->driver){ |
1 | 2287 case 1: |
2288 MP3_DecodeFrame(NULL,-2); // resync | |
2289 MP3_DecodeFrame(NULL,-2); // resync | |
2290 MP3_DecodeFrame(NULL,-2); // resync | |
2291 break; | |
2292 case 3: | |
2293 ac3_bitstream_reset(); // reset AC3 bitstream buffer | |
2294 // if(verbose){ printf("Resyncing AC3 audio...");fflush(stdout);} | |
291 | 2295 sh_audio->ac3_frame=ac3_decode_frame(); // resync |
1 | 2296 // if(verbose) printf(" OK!\n"); |
2297 break; | |
2298 case 4: | |
291 | 2299 case 7: |
2300 sh_audio->a_in_buffer_len=0; // reset ACM/DShow audio buffer | |
1 | 2301 break; |
2302 } | |
2303 | |
2304 // re-sync PTS (MPEG-PS only!!!) | |
2305 if(file_format==DEMUXER_TYPE_MPEG_PS) | |
2306 if(d_video->pts && d_audio->pts){ | |
2307 if (d_video->pts < d_audio->pts){ | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2308 |
1 | 2309 } else { |
2310 while(d_video->pts > d_audio->pts){ | |
442 | 2311 switch(sh_audio->codec->driver){ |
1 | 2312 case 1: MP3_DecodeFrame(NULL,-2);break; // skip MPEG frame |
291 | 2313 case 3: sh_audio->ac3_frame=ac3_decode_frame();break; // skip AC3 frame |
1 | 2314 default: ds_fill_buffer(d_audio); // skip PCM frame |
2315 } | |
2316 } | |
2317 } | |
2318 } | |
2319 | |
889 | 2320 current_module=NULL; |
722 | 2321 |
955 | 2322 audio_out->reset(); // stop audio |
1 | 2323 |
2324 c_total=0; // kell ez? | |
2325 printf("A:%6.1f V:%6.1f A-V:%7.3f",d_audio->pts,d_video->pts,0.0f); | |
2326 printf(" ct:%7.3f \r",c_total);fflush(stdout); | |
2327 } else { | |
2328 printf("A: --- V:%6.1f \r",d_video->pts);fflush(stdout); | |
2329 } | |
2330 | |
2331 max_pts_correction=0.1; | |
889 | 2332 frame_corr_num=0; // -5 |
2333 frame_correction=0; | |
1 | 2334 force_redraw=5; |
746 | 2335 a_frame=-skip_audio_secs; |
1 | 2336 v_frame=0; // !!!!!! |
2337 audio_time_usage=0; video_time_usage=0; vout_time_usage=0; | |
2338 // num_frames=real_num_frames=0; | |
721 | 2339 |
1 | 2340 } |
723 | 2341 rel_seek_secs=0; |
1 | 2342 } // keyboard event handler |
2343 | |
220 | 2344 //================= Update OSD ==================== |
955 | 2345 { if(osd_level>=2){ |
780 | 2346 int pts=d_video->pts; |
595 | 2347 if(pts==osd_last_pts-1) ++pts; else osd_last_pts=pts; |
371 | 2348 vo_osd_text=osd_text_buffer; |
595 | 2349 sprintf(vo_osd_text,"%c %02d:%02d:%02d",osd_function,pts/3600,(pts/60)%60,pts%60); |
371 | 2350 } else { |
2351 vo_osd_text=NULL; | |
2352 } | |
220 | 2353 // for(i=1;i<=11;i++) osd_text_buffer[10+i]=i;osd_text_buffer[10+i]=0; |
371 | 2354 // vo_osd_text=osd_text_buffer; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2355 |
258 | 2356 // find sub |
2357 if(subtitles){ | |
780 | 2358 int pts=d_video->pts; |
398 | 2359 if(sub_fps==0) sub_fps=sh_video->fps; |
482 | 2360 current_module="find_sub"; |
780 | 2361 find_sub(subtitles,sub_uses_time?(100*(pts+sub_delay)):((pts+sub_delay)*sub_fps)); // FIXME! frame counter... |
482 | 2362 current_module=NULL; |
258 | 2363 } |
554 | 2364 |
2365 // DVD sub: | |
557 | 2366 { unsigned char* packet=NULL; |
2367 int len=ds_get_packet_sub(d_dvdsub,&packet); | |
2368 if(len>=2){ | |
2369 int len2; | |
2370 len2=(packet[0]<<8)+packet[1]; | |
561 | 2371 if(verbose) printf("\rDVD sub: %d / %d \n",len,len2); |
2372 if(len==len2) | |
2373 spudec_decode(packet,len); | |
2374 else | |
2375 printf("fragmented dvd-subs not yet supported!!!\n"); | |
557 | 2376 } else if(len>=0) { |
2377 printf("invalud dvd sub\n"); | |
554 | 2378 } |
2379 } | |
2380 | |
220 | 2381 } |
1 | 2382 |
2383 } // while(!eof) | |
2384 | |
2385 exit_player("End of file"); | |
109 | 2386 } |
2387 return 1; | |
2388 } |