* changes mencoder's exit code on explicit kill to 2
[mplayer/glamo.git] / mplayer.c
blob472895f4b01747cfc7470c9dc4de48b52908886e
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <unistd.h>
6 // #include <sys/mman.h>
7 #include <sys/types.h>
8 #ifndef __MINGW32__
9 #include <sys/ioctl.h>
10 #include <sys/wait.h>
11 #else
12 #define SIGHUP 1 /* hangup */
13 #define SIGQUIT 3 /* quit */
14 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
15 #define SIGBUS 10 /* bus error */
16 extern int mp_input_win32_slave_cmd_func(int fd,char* dest,int size);
17 #endif
19 #include <sys/time.h>
20 #include <sys/stat.h>
22 #include <signal.h>
23 #include <time.h>
24 #include <fcntl.h>
25 #include <limits.h>
27 #include <errno.h>
29 #include "version.h"
30 #include "config.h"
32 #include "mp_msg.h"
34 #define HELP_MP_DEFINE_STATIC
35 #include "help_mp.h"
37 #include "m_option.h"
38 #include "m_config.h"
40 #include "cfg-mplayer-def.h"
42 #ifdef USE_SUB
43 #include "subreader.h"
44 #endif
46 #include "libvo/video_out.h"
48 #include "libvo/font_load.h"
49 #include "libvo/sub.h"
51 #ifdef HAVE_X11
52 #include "libvo/x11_common.h"
53 #endif
55 #include "libao2/audio_out.h"
56 #include "libao2/audio_plugin.h"
58 #include "codec-cfg.h"
60 #ifdef USE_DVDNAV
61 #include <dvdnav.h>
62 #endif
64 #ifdef USE_EDL
65 #include "edl.h"
66 #endif
68 #include "spudec.h"
69 #include "vobsub.h"
71 #include "osdep/getch2.h"
72 #include "osdep/timer.h"
74 #include "cpudetect.h"
76 #ifdef HAVE_NEW_GUI
77 #include "Gui/interface.h"
78 #endif
80 #include "input/input.h"
82 int slave_mode=0;
83 int verbose=0;
84 int identify=0;
85 int quiet=0;
87 #define ABS(x) (((x)>=0)?(x):(-(x)))
88 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
90 #ifdef HAVE_RTC
91 #include <linux/rtc.h>
92 #endif
94 #ifdef USE_TV
95 #include "libmpdemux/tv.h"
96 #endif
98 #ifdef HAS_DVBIN_SUPPORT
99 #include "libmpdemux/dvbin.h"
100 static int last_dvb_step = 1;
101 #endif
103 #ifdef HAVE_MATROSKA
104 #include "libmpdemux/matroska.h"
105 #endif
107 //**************************************************************************//
108 // Playtree
109 //**************************************************************************//
110 #include "playtree.h"
111 #include "playtreeparser.h"
113 #ifdef HAVE_NEW_GUI
114 extern int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config);
115 extern int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue);
116 #endif
118 play_tree_t* playtree;
119 play_tree_iter_t* playtree_iter = NULL;
121 #define PT_NEXT_ENTRY 1
122 #define PT_PREV_ENTRY -1
123 #define PT_NEXT_SRC 2
124 #define PT_PREV_SRC -2
125 #define PT_UP_NEXT 3
126 #define PT_UP_PREV -3
128 //**************************************************************************//
129 // Config
130 //**************************************************************************//
131 m_config_t* mconfig;
133 extern play_tree_t*
134 m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv);
135 extern int
136 m_config_parse_config_file(m_config_t* config, char *conffile);
138 //**************************************************************************//
139 // Config file
140 //**************************************************************************//
142 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
144 static int cfg_include(m_option_t *conf, char *filename){
145 return m_config_parse_config_file(mconfig, filename);
148 #include "get_path.c"
150 //**************************************************************************//
151 // XScreensaver
152 //**************************************************************************//
154 #ifdef HAVE_X11
155 void xscreensaver_heartbeat(float time);
156 #endif
158 //**************************************************************************//
159 //**************************************************************************//
160 // Input media streaming & demultiplexer:
161 //**************************************************************************//
163 static int max_framesize=0;
165 #include "libmpdemux/stream.h"
166 #include "libmpdemux/demuxer.h"
167 #include "libmpdemux/stheader.h"
168 //#include "parse_es.h"
170 #include "libmpcodecs/dec_audio.h"
171 #include "libmpcodecs/dec_video.h"
172 #include "libmpcodecs/mp_image.h"
173 #include "libmpcodecs/vf.h"
175 extern void vf_list_plugins();
177 //**************************************************************************//
178 //**************************************************************************//
180 // Common FIFO functions, and keyboard/event FIFO code
181 #include "fifo.c"
182 int use_stdin=0;
183 //**************************************************************************//
185 vo_functions_t *video_out=NULL;
186 ao_functions_t *audio_out=NULL;
188 int fixed_vo=0;
190 // benchmark:
191 double video_time_usage=0;
192 double vout_time_usage=0;
193 static double audio_time_usage=0;
194 static int total_time_usage_start=0;
195 static int total_frame_cnt=0;
196 static int drop_frame_cnt=0; // total number of dropped frames
197 int benchmark=0;
199 // options:
200 int auto_quality=0;
201 static int output_quality=0;
203 float playback_speed=1.0;
205 int use_gui=0;
207 #ifdef HAVE_NEW_GUI
208 int enqueue=0;
209 #endif
211 #define MAX_OSD_LEVEL 3
213 int osd_level=1;
214 int osd_level_saved=-1;
215 int osd_visible=100;
217 // seek:
218 static char *seek_to_sec=NULL;
219 static off_t seek_to_byte=0;
220 static off_t step_sec=0;
221 static int loop_times=-1;
222 static int loop_seek=0;
224 // A/V sync:
225 int autosync=0; // 30 might be a good default value.
227 // may be changed by GUI: (FIXME!)
228 float rel_seek_secs=0;
229 int abs_seek_pos=0;
231 // codecs:
232 char **audio_codec_list=NULL; // override audio codec
233 char **video_codec_list=NULL; // override video codec
234 char **audio_fm_list=NULL; // override audio codec family
235 char **video_fm_list=NULL; // override video codec family
237 // streaming:
238 int audio_id=-1;
239 int video_id=-1;
240 int dvdsub_id=-1;
241 int vobsub_id=-1;
242 char* audio_lang=NULL;
243 char* dvdsub_lang=NULL;
244 static char* spudec_ifo=NULL;
245 char* filename=NULL; //"MI2-Trailer.avi";
246 int forced_subs_only=0;
248 // cache2:
249 int stream_cache_size=-1;
250 #ifdef USE_STREAM_CACHE
251 extern int cache_fill_status;
252 #else
253 #define cache_fill_status 0
254 #endif
256 // dump:
257 static char *stream_dump_name="stream.dump";
258 int stream_dump_type=0;
260 // A-V sync:
261 static float default_max_pts_correction=-1;//0.01f;
262 static float max_pts_correction=0;//default_max_pts_correction;
263 static float c_total=0;
264 float audio_delay=0;
266 static int softsleep=0;
268 float force_fps=0;
269 static int force_srate=0;
270 static int audio_output_format=0;
271 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
272 static int play_n_frames=-1;
273 static int play_n_frames_mf=-1;
275 // screen info:
276 char** video_driver_list=NULL;
277 char** audio_driver_list=NULL;
279 extern char *vo_subdevice;
280 extern char *ao_subdevice;
282 // codec outfmt flags (defined in libmpcodecs/vd.c)
283 extern int vo_flags;
285 // sub:
286 char *font_name=NULL;
287 #ifdef HAVE_FONTCONFIG
288 extern int font_fontconfig;
289 #endif
290 float font_factor=0.75;
291 char **sub_name=NULL;
292 float sub_delay=0;
293 float sub_fps=0;
294 int sub_auto = 1;
295 char *vobsub_name=NULL;
296 /*DSP!!char *dsp=NULL;*/
297 int subcc_enabled=0;
298 int suboverlap_enabled = 1;
299 #ifdef USE_SUB
300 sub_data* set_of_subtitles[MAX_SUBTITLE_FILES];
301 int set_of_sub_size = 0;
302 int set_of_sub_pos = -1;
303 float sub_last_pts = -303;
304 #endif
306 static stream_t* stream=NULL;
307 static demuxer_t *demuxer=NULL;
308 static sh_audio_t *sh_audio=NULL;
309 static sh_video_t *sh_video=NULL;
311 char* current_module=NULL; // for debugging
313 // also modified by Gui/mplayer/gtk/eq.c:
314 int vo_gamma_gamma = 1000;
315 int vo_gamma_brightness = 1000;
316 int vo_gamma_contrast = 1000;
317 int vo_gamma_saturation = 1000;
318 int vo_gamma_hue = 1000;
320 // ---
322 #ifdef HAVE_MENU
323 #include "m_struct.h"
324 #include "libmenu/menu.h"
325 extern void vf_menu_pause_update(struct vf_instance_s* vf);
326 extern vf_info_t vf_info_menu;
327 static vf_info_t* libmenu_vfs[] = {
328 &vf_info_menu,
329 NULL
331 static vf_instance_t* vf_menu = NULL;
332 static int use_menu = 0;
333 static char* menu_cfg = NULL;
334 static char* menu_root = "main";
335 #endif
338 #ifdef HAVE_RTC
339 static int nortc;
340 #endif
342 #ifdef USE_EDL
343 struct edl_record edl_records[ MAX_EDL_ENTRIES ];
344 int num_edl_records = 0;
345 FILE* edl_fd = NULL;
346 edl_record_ptr next_edl_record = NULL;
347 static char* edl_filename = NULL;
348 static char* edl_output_filename = NULL;
349 short edl_decision = 0;
350 #endif
352 static unsigned int inited_flags=0;
353 #define INITED_VO 1
354 #define INITED_AO 2
355 #define INITED_GUI 4
356 #define INITED_GETCH2 8
357 #define INITED_SPUDEC 32
358 #define INITED_STREAM 64
359 #define INITED_INPUT 128
360 #define INITED_VOBSUB 256
361 #define INITED_DEMUXER 512
362 #define INITED_ACODEC 1024
363 #define INITED_VCODEC 2048
364 #define INITED_ALL 0xFFFF
366 static void uninit_player(unsigned int mask){
367 mask=inited_flags&mask;
369 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
371 if(mask&INITED_ACODEC){
372 inited_flags&=~INITED_ACODEC;
373 current_module="uninit_acodec";
374 if(sh_audio) uninit_audio(sh_audio);
375 sh_audio=NULL;
378 if(mask&INITED_VCODEC){
379 inited_flags&=~INITED_VCODEC;
380 current_module="uninit_vcodec";
381 if(sh_video) uninit_video(sh_video);
382 sh_video=NULL;
383 #ifdef HAVE_MENU
384 vf_menu=NULL;
385 #endif
388 if(mask&INITED_DEMUXER){
389 inited_flags&=~INITED_DEMUXER;
390 current_module="free_demuxer";
391 if(demuxer){
392 stream=demuxer->stream;
393 free_demuxer(demuxer);
395 demuxer=NULL;
398 // kill the cache process:
399 if(mask&INITED_STREAM){
400 inited_flags&=~INITED_STREAM;
401 current_module="uninit_stream";
402 if(stream) free_stream(stream);
403 stream=NULL;
406 if(mask&INITED_VO){
407 inited_flags&=~INITED_VO;
408 current_module="uninit_vo";
409 video_out->uninit();
410 video_out=NULL;
413 // must be after libvo uninit, as few vo drivers (svgalib) has tty code
414 if(mask&INITED_GETCH2){
415 inited_flags&=~INITED_GETCH2;
416 current_module="uninit_getch2";
417 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
418 // restore terminal:
419 getch2_disable();
422 if(mask&INITED_VOBSUB){
423 inited_flags&=~INITED_VOBSUB;
424 current_module="uninit_vobsub";
425 if(vo_vobsub) vobsub_close(vo_vobsub);
426 vo_vobsub=NULL;
429 if (mask&INITED_SPUDEC){
430 inited_flags&=~INITED_SPUDEC;
431 current_module="uninit_spudec";
432 spudec_free(vo_spudec);
433 vo_spudec=NULL;
436 if(mask&INITED_AO){
437 inited_flags&=~INITED_AO;
438 current_module="uninit_ao";
439 audio_out->uninit(); audio_out=NULL;
442 #ifdef HAVE_NEW_GUI
443 if(mask&INITED_GUI){
444 inited_flags&=~INITED_GUI;
445 current_module="uninit_gui";
446 guiDone();
448 #endif
450 if(mask&INITED_INPUT){
451 inited_flags&=~INITED_INPUT;
452 current_module="uninit_input";
453 mp_input_uninit();
456 current_module=NULL;
459 static void exit_player_with_rc(char* how, int rc){
461 uninit_player(INITED_ALL);
462 #ifdef HAVE_X11
463 #ifdef HAVE_NEW_GUI
464 if ( !use_gui )
465 #endif
466 vo_uninit(); // close the X11 connection (if any opened)
467 #endif
469 current_module="exit_player";
471 if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Exiting,mp_gettext(how));
472 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
474 exit(rc);
477 void exit_player(char* how){
478 exit_player_with_rc(how, 1);
481 static void exit_sighandler(int x){
482 static int sig_count=0;
483 ++sig_count;
484 if(sig_count==5 || (inited_flags==0 && sig_count>1)) exit(1);
485 if(sig_count>5){
486 // can't stop :(
487 #ifndef __MINGW32__
488 kill(getpid(),SIGKILL);
489 #endif
491 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x,
492 current_module?current_module:mp_gettext("unknown")
494 if(sig_count==1)
495 switch(x){
496 case SIGINT:
497 case SIGQUIT:
498 case SIGTERM:
499 case SIGKILL:
500 break; // killed from keyboard (^C) or killed [-9]
501 case SIGILL:
502 #ifdef RUNTIME_CPUDETECT
503 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL_RTCpuSel);
504 #else
505 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL);
506 #endif
507 case SIGFPE:
508 case SIGSEGV:
509 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGSEGV_SIGFPE);
510 default:
511 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGCRASH);
513 exit_player(NULL);
516 //extern void write_avi_header_1(FILE *f,int fcc,float fps,int width,int height);
518 extern void mp_input_register_options(m_config_t* cfg);
520 #include "mixer.h"
521 #include "cfg-mplayer.h"
523 void parse_cfgfiles( m_config_t* conf )
525 char *conffile;
526 int conffile_fd;
527 if (m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
528 exit(1);
529 if ((conffile = get_path("")) == NULL) {
530 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
531 } else {
532 #ifdef __MINGW32__
533 mkdir(conffile);
534 #else
535 mkdir(conffile, 0777);
536 #endif
537 free(conffile);
538 if ((conffile = get_path("config")) == NULL) {
539 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
540 } else {
541 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
542 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);
543 write(conffile_fd, default_config, strlen(default_config));
544 close(conffile_fd);
546 if (m_config_parse_config_file(conf, conffile) < 0)
547 exit(1);
548 free(conffile);
553 void load_per_file_config (m_config_t* conf, const char *const file)
555 char *confpath;
556 char cfg[strlen(file)+10];
557 struct stat st;
558 char *name;
560 sprintf (cfg, "%s.conf", file);
562 if (!stat (cfg, &st))
564 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Loading config '%s'\n", cfg);
565 m_config_parse_config_file (conf, cfg);
566 return;
569 if ((name = strrchr (cfg, '/')) == NULL)
570 name = cfg;
571 else
572 name++;
574 if ((confpath = get_path (name)) != NULL)
576 if (!stat (confpath, &st))
578 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Loading config '%s'\n", confpath);
579 m_config_parse_config_file (conf, confpath);
582 free (confpath);
586 // When libmpdemux perform a blocking operation (network connection or cache filling)
587 // if the operation fail we use this function to check if it was interrupted by the user.
588 // The function return a new value for eof.
589 static int libmpdemux_was_interrupted(int eof) {
590 mp_cmd_t* cmd;
591 if((cmd = mp_input_get_cmd(0,0)) != NULL) {
592 switch(cmd->id) {
593 case MP_CMD_QUIT:
594 exit_player_with_rc(MSGTR_Exit_quit, 0);
595 case MP_CMD_PLAY_TREE_STEP: {
596 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
597 } break;
598 case MP_CMD_PLAY_TREE_UP_STEP: {
599 eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
600 } break;
601 case MP_CMD_PLAY_ALT_SRC_STEP: {
602 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
603 } break;
605 mp_cmd_free(cmd);
607 return eof;
610 #define mp_basename(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
612 int playtree_add_playlist(play_tree_t* entry)
614 play_tree_add_bpf(entry,filename);
616 #ifdef HAVE_NEW_GUI
617 if (use_gui) {
618 if (entry) {
619 import_playtree_playlist_into_gui(entry, mconfig);
620 play_tree_free_list(entry,1);
622 } else
623 #endif
625 if(!entry) {
626 entry = playtree_iter->tree;
627 if(play_tree_iter_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
628 return PT_NEXT_ENTRY;
630 if(playtree_iter->tree == entry ) { // Loop with a single file
631 if(play_tree_iter_up_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
632 return PT_NEXT_ENTRY;
635 play_tree_remove(entry,1,1);
636 return PT_NEXT_SRC;
638 play_tree_insert_entry(playtree_iter->tree,entry);
639 play_tree_set_params_from(entry,playtree_iter->tree);
640 entry = playtree_iter->tree;
641 if(play_tree_iter_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
642 return PT_NEXT_ENTRY;
644 play_tree_remove(entry,1,1);
646 return PT_NEXT_SRC;
649 static int play_tree_step = 1;
651 #ifdef USE_SUB
653 sub_data* subdata = NULL;
655 void add_subtitles(char *filename, float fps, int silent)
657 sub_data *subd;
659 if (filename == NULL) {
660 subd = (sub_data*)malloc(sizeof(sub_data));
661 subd->filename = strdup("none");
662 subd->subtitles = NULL;
663 subd->sub_uses_time = 1;
664 subd->sub_num = 0;
665 subd->sub_errs = 0;
666 set_of_subtitles[set_of_sub_size] = subd;
667 ++set_of_sub_size;
668 return;
671 subd = sub_read_file(filename, fps);
672 if(!subd && !silent)
673 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CantLoadSub, filename);
674 if (subd == NULL || set_of_sub_size >= MAX_SUBTITLE_FILES) return;
675 set_of_subtitles[set_of_sub_size] = subd;
676 ++set_of_sub_size;
677 printf("SUB: added subtitle file (%d): %s\n", set_of_sub_size, filename);
680 void update_set_of_subtitles()
681 // subdata was changed, set_of_sub... have to be updated.
683 int i;
684 if (set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted
685 for (i = set_of_sub_pos + 1; i < set_of_sub_size; ++i)
686 set_of_subtitles[i-1] = set_of_subtitles[i];
687 set_of_subtitles[set_of_sub_size-1] = NULL;
688 --set_of_sub_size;
689 if (set_of_sub_size > 0) subdata = set_of_subtitles[set_of_sub_pos=0];
691 else if (set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed
692 set_of_subtitles[set_of_sub_pos] = subdata;
694 else if (set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added
695 set_of_subtitles[set_of_sub_pos=set_of_sub_size] = subdata;
696 ++set_of_sub_size;
699 #endif
702 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
703 * make it all work is to use the builtin SDL-bootstrap code, which
704 * will be done automatically by replacing our main() if we include SDL.h.
706 #if defined(SYS_DARWIN) && defined(HAVE_SDL)
707 #include <SDL.h>
708 #endif
711 int main(int argc,char* argv[]){
715 static demux_stream_t *d_audio=NULL;
716 static demux_stream_t *d_video=NULL;
717 static demux_stream_t *d_dvdsub=NULL;
719 int file_format=DEMUXER_TYPE_UNKNOWN;
721 int delay_corrected=1;
723 // movie info:
724 int eof=0;
726 int osd_function=OSD_PLAY;
727 int osd_last_pts=-303;
728 int osd_show_av_delay = 0;
729 int osd_show_text = 0;
730 int osd_show_sub_delay = 0;
731 int osd_show_sub_pos = 0;
732 int osd_show_sub_visibility = 0;
733 int osd_show_sub_alignment = 0;
734 int osd_show_vobsub_changed = 0;
735 int osd_show_sub_changed = 0;
736 int osd_show_percentage = 0;
737 int osd_show_tv_channel = 25;
738 int osd_show_ontop = 0;
740 int rtc_fd=-1;
742 //float a_frame=0; // Audio
744 int i;
745 char *tmp;
747 int gui_no_filename=0;
750 srand((int) time(NULL));
752 mp_msg_init();
753 mp_msg_set_level(MSGL_STATUS);
755 mp_msg(MSGT_CPLAYER,MSGL_INFO, "MPlayer " VERSION " (C) 2000-2004 MPlayer Team\n\n");
756 /* Test for cpu capabilities (and corresponding OS support) for optimizing */
757 GetCpuCaps(&gCpuCaps);
758 #ifdef ARCH_X86
759 mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n",
760 gCpuCaps.hasMMX,gCpuCaps.hasMMX2,
761 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
762 gCpuCaps.hasSSE, gCpuCaps.hasSSE2);
763 #ifdef RUNTIME_CPUDETECT
764 mp_msg(MSGT_CPLAYER,MSGL_INFO, MSGTR_CompiledWithRuntimeDetection);
765 #else
766 mp_msg(MSGT_CPLAYER,MSGL_INFO, MSGTR_CompiledWithCPUExtensions);
767 #ifdef HAVE_MMX
768 mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX");
769 #endif
770 #ifdef HAVE_MMX2
771 mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX2");
772 #endif
773 #ifdef HAVE_3DNOW
774 mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNow");
775 #endif
776 #ifdef HAVE_3DNOWEX
777 mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNowEx");
778 #endif
779 #ifdef HAVE_SSE
780 mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE");
781 #endif
782 #ifdef HAVE_SSE2
783 mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE2");
784 #endif
785 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n\n");
786 #endif
787 #endif
789 #if defined(WIN32) && defined(USE_WIN32DLL)
790 { /*make our codec dirs available for LoadLibraryA()*/
791 char tmppath[MAX_PATH*2 + 1];
792 char win32path[MAX_PATH];
793 char realpath[MAX_PATH];
794 int WINAPI SetEnvironmentVariableA(char*,char*);
795 int WINAPI GetModuleFileNameA(void*,char*,int);
796 #ifdef __CYGWIN__
797 cygwin_conv_to_full_win32_path(WIN32_PATH,win32path);
798 strcpy(tmppath,win32path);
799 #ifdef USE_REALCODECS
800 cygwin_conv_to_full_win32_path(REALCODEC_PATH,realpath);
801 sprintf(tmppath,"%s;%s",win32path,realpath);
802 #endif /*USE_REALCODECS*/
803 #else
804 if(!strstr(WIN32_PATH,":")){
805 GetModuleFileNameA(NULL, win32path, MAX_PATH);
806 strcpy(win32path + strlen(win32path) - strlen("mplayer.exe"), WIN32_PATH);
808 else strcpy(win32path,WIN32_PATH);
809 strcpy(tmppath,win32path);
810 #ifdef USE_REALCODECS
811 if(!strstr(REALCODEC_PATH,":")){
812 GetModuleFileNameA(NULL, realpath, MAX_PATH);
813 strcpy(realpath + strlen(realpath) - strlen("mplayer.exe"), REALCODEC_PATH);
815 else strcpy(realpath,REALCODEC_PATH);
816 sprintf(tmppath,"%s;%s",win32path,realpath);
817 #endif /*USE_REALCODECS*/
818 #endif /*__CYGWIN__*/
819 SetEnvironmentVariableA("PATH", tmppath);
821 #endif /*WIN32 && USE_WIN32DLL*/
823 #ifdef USE_TV
824 tv_param_immediate = 1;
825 #endif
827 if ( argv[0] )
828 if(!strcmp(argv[0],"gmplayer") ||
829 (strrchr(argv[0],'/') && !strcmp(strrchr(argv[0],'/'),"/gmplayer") ) )
830 use_gui=1;
832 mconfig = m_config_new();
833 m_config_register_options(mconfig,mplayer_opts);
834 // TODO : add something to let modules register their options
835 mp_input_register_options(mconfig);
836 parse_cfgfiles(mconfig);
838 #ifdef HAVE_NEW_GUI
839 if ( use_gui ) cfg_read();
840 #endif
842 playtree = m_config_parse_mp_command_line(mconfig, argc, argv);
843 if(playtree == NULL)
844 exit(1);
846 playtree = play_tree_cleanup(playtree);
847 if(playtree) {
848 playtree_iter = play_tree_iter_new(playtree,mconfig);
849 if(playtree_iter) {
850 if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
851 play_tree_iter_free(playtree_iter);
852 playtree_iter = NULL;
854 filename = play_tree_iter_get_file(playtree_iter,1);
858 #ifndef HAVE_NEW_GUI
859 if(use_gui){
860 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui);
861 use_gui=0;
863 #else
864 if(use_gui && !vo_init()){
865 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX);
866 use_gui=0;
868 if (use_gui && playtree_iter){
869 char cwd[PATH_MAX+2];
870 // Remove Playtree and Playtree-Iter from memory as its not used by gui
871 play_tree_iter_free(playtree_iter);
872 playtree_iter=NULL;
874 if (getcwd(cwd, PATH_MAX) != (char *)NULL)
876 strcat(cwd, "/");
877 // Prefix relative paths with current working directory
878 play_tree_add_bpf(playtree, cwd);
880 // Import initital playtree into gui
881 import_initial_playtree_into_gui(playtree, mconfig, enqueue);
883 #endif
885 if(video_driver_list && strcmp(video_driver_list[0],"help")==0){
886 list_video_out();
887 exit(0);
890 if(audio_driver_list && strcmp(audio_driver_list[0],"help")==0){
891 list_audio_out();
892 exit(0);
895 // check codec.conf
896 if(!codecs_file || !parse_codec_cfg(codecs_file)){
897 if(!parse_codec_cfg(get_path("codecs.conf"))){
898 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
899 if(!parse_codec_cfg(NULL)){
900 mp_msg(MSGT_CPLAYER,MSGL_HINT,MSGTR_CopyCodecsConf);
901 exit(0);
903 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_BuiltinCodecsConf);
908 #if 0
909 if(video_codec_list){
910 int i;
911 video_codec=video_codec_list[0];
912 for(i=0;video_codec_list[i];i++)
913 printf("vc#%d: '%s'\n",i,video_codec_list[i]);
915 #endif
916 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
917 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs);
918 list_codecs(1);
919 printf("\n");
920 exit(0);
922 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
923 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs);
924 list_codecs(0);
925 printf("\n");
926 exit(0);
928 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
929 vfm_help();
930 printf("\n");
931 exit(0);
933 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
934 afm_help();
935 printf("\n");
936 exit(0);
938 #ifdef HAVE_X11
939 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
940 fstype_help();
941 printf("\n");
942 exit(0);
944 #endif
946 #ifdef USE_EDL
948 FILE* fd;
949 char line[ 100 ];
950 float start, stop, duration;
951 int action;
952 int next_edl_array_index = 0;
953 int lineCount = 0;
954 next_edl_record = edl_records;
955 if( edl_filename ) {
956 if( ( fd = fopen( edl_filename, "r" ) ) == NULL ) {
957 printf( "Error opening EDL file [%s]!\n", edl_filename );
958 next_edl_record->next = NULL;
959 } else {
960 while( fgets( line, 99, fd ) != NULL ) {
961 lineCount++;
962 if( ( sscanf( line, "%f %f %d", &start, &stop, &action ) ) == 0 ) {
963 printf( "Invalid EDL line: [%s]\n", line );
964 } else {
965 if( next_edl_array_index > 0 ) {
966 edl_records[ next_edl_array_index-1 ].next = &edl_records[ next_edl_array_index ];
967 if( start <= edl_records[ next_edl_array_index-1 ].stop_sec ) {
968 printf( "Invalid EDL line [%d]: [%s]\n", lineCount, line );
969 printf( "Last stop position was [%f]; next start is [%f]. Entries must be in chronological order and cannot overlap. Discarding EDL entry.\n", edl_records[ next_edl_array_index-1 ].stop_sec, start );
970 continue;
973 if( stop <= start ) {
974 printf( "Invalid EDL line [%d]: [%s]\n", lineCount, line );
975 printf( "Stop time must follow start time. Discarding EDL entry.\n" );
976 continue;
978 edl_records[ next_edl_array_index ].action = action;
979 if( action == EDL_MUTE ) {
980 edl_records[ next_edl_array_index ].length_sec = 0;
981 edl_records[ next_edl_array_index ].start_sec = start;
982 edl_records[ next_edl_array_index ].stop_sec = start;
983 next_edl_array_index++;
984 if( next_edl_array_index >= MAX_EDL_ENTRIES-1 ) {
985 break;
987 edl_records[ next_edl_array_index-1 ].next = &edl_records[ next_edl_array_index ];
988 edl_records[ next_edl_array_index ].action = EDL_MUTE;
989 edl_records[ next_edl_array_index ].length_sec = 0;
990 edl_records[ next_edl_array_index ].start_sec = stop;
991 edl_records[ next_edl_array_index ].stop_sec = stop;
992 } else {
993 edl_records[ next_edl_array_index ].length_sec = stop - start;
994 edl_records[ next_edl_array_index ].start_sec = start;
995 edl_records[ next_edl_array_index ].stop_sec = stop;
997 next_edl_array_index++;
998 if( next_edl_array_index >= MAX_EDL_ENTRIES-1 ) {
999 break;
1003 if( next_edl_array_index > 0 ) {
1004 edl_records[ next_edl_array_index-1 ].next = &edl_records[ next_edl_array_index ];
1006 edl_records[ next_edl_array_index ].start_sec = -1;
1007 edl_records[ next_edl_array_index ].next = NULL;
1008 num_edl_records = ( next_edl_array_index );
1010 fclose( fd );
1011 } else {
1012 next_edl_record->next = NULL;
1014 if( edl_output_filename ) {
1015 if( edl_filename ) {
1016 printf( "Sorry; EDL mode and EDL output mode are mutually exclusive! Disabling all EDL functions.\n" );
1017 edl_output_filename = NULL;
1018 edl_filename = NULL;
1019 next_edl_record->next = NULL;
1020 } else {
1021 if( ( edl_fd = fopen( edl_output_filename, "w" ) ) == NULL ) {
1022 printf( "Error opening file [%s] for writing!\n", edl_output_filename );
1023 edl_output_filename = NULL;
1024 next_edl_record->next = NULL;
1028 #ifdef DEBUG_EDL
1030 printf( "EDL Records:\n" );
1031 if( next_edl_record->next != NULL ) {
1032 while( next_edl_record->next != NULL ) {
1033 printf( "EDL: start [%f], stop [%f], action [%d]\n", next_edl_record->start_sec, next_edl_record->stop_sec, next_edl_record->action );
1034 next_edl_record = next_edl_record->next;
1036 next_edl_record = edl_records;
1039 #endif
1041 #endif
1043 if(!filename){
1044 if(!use_gui){
1045 // no file/vcd/dvd -> show HELP:
1046 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text);
1047 exit(0);
1048 } else gui_no_filename=1;
1051 // Many users forget to include command line in bugreports...
1052 if(verbose>0){
1053 mp_msg(MSGT_CPLAYER, MSGL_INFO, "CommandLine:");
1054 for(i=1;i<argc;i++)printf(" '%s'",argv[i]);
1055 printf("\n");
1058 mp_msg_set_level(verbose+MSGL_STATUS);
1060 //------ load global data first ------
1062 // check font
1063 #ifdef USE_OSD
1064 #ifdef HAVE_FREETYPE
1065 init_freetype();
1066 #endif
1067 #ifdef HAVE_FONTCONFIG
1068 if(!font_fontconfig)
1070 #endif
1071 if(font_name){
1072 vo_font=read_font_desc(font_name,font_factor,verbose>1);
1073 if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,font_name);
1074 } else {
1075 // try default:
1076 vo_font=read_font_desc(get_path("font/font.desc"),font_factor,verbose>1);
1077 if(!vo_font)
1078 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
1080 #ifdef HAVE_FONTCONFIG
1082 #endif
1083 #endif
1084 vo_init_osd();
1086 #ifdef HAVE_RTC
1087 if(!nortc)
1089 // seteuid(0); /* Can't hurt to try to get root here */
1090 if ((rtc_fd = open("/dev/rtc", O_RDONLY)) < 0)
1091 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Failed to open /dev/rtc: %s (mplayer should be setuid root or /dev/rtc should be readable by the user.)\n", strerror(errno));
1092 else {
1093 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
1095 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
1096 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Linux RTC init error in ioctl (rtc_irqp_set %lu): %s\n", irqp, strerror(errno));
1097 mp_msg(MSGT_CPLAYER, MSGL_HINT, "Try adding \"echo %lu > /proc/sys/dev/rtc/max-user-freq\" to your system startup scripts.\n", irqp);
1098 close (rtc_fd);
1099 rtc_fd = -1;
1100 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
1101 /* variable only by the root */
1102 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error in ioctl (rtc_pie_on): %s\n", strerror(errno));
1103 close (rtc_fd);
1104 rtc_fd = -1;
1105 } else
1106 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_UsingRTCTiming, irqp);
1109 #ifdef HAVE_NEW_GUI
1110 // breaks DGA and SVGAlib and VESA drivers: --A'rpi
1111 // and now ? -- Pontscho
1112 if(use_gui) setuid( getuid() ); // strongly test, please check this.
1113 #endif
1114 if(rtc_fd<0)
1115 #endif
1116 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Using %s timing\n",softsleep?"software":"usleep()");
1118 #ifdef USE_TERMCAP
1119 if ( !use_gui ) load_termcap(NULL); // load key-codes
1120 #endif
1122 // ========== Init keyboard FIFO (connection to libvo) ============
1124 // Init input system
1125 current_module = "init_input";
1126 mp_input_init();
1127 #ifndef HAVE_NO_POSIX_SELECT
1128 make_pipe(&keyb_fifo_get,&keyb_fifo_put);
1130 if(keyb_fifo_get > 0)
1131 mp_input_add_key_fd(keyb_fifo_get,1,NULL,NULL);
1132 #else
1133 mp_input_add_key_fd(-1,0,mplayer_get_key,NULL);
1134 #endif
1135 if(slave_mode)
1136 #ifndef __MINGW32__
1137 mp_input_add_cmd_fd(0,1,NULL,NULL);
1138 #else
1139 mp_input_add_cmd_fd(0,0,mp_input_win32_slave_cmd_func,NULL);
1140 #endif
1141 else if(!use_stdin)
1142 #ifndef HAVE_NO_POSIX_SELECT
1143 mp_input_add_key_fd(0,1,NULL,NULL);
1144 #else
1145 mp_input_add_key_fd(0,0,NULL,NULL);
1146 #endif
1148 inited_flags|=INITED_INPUT;
1149 current_module = NULL;
1151 #ifdef HAVE_MENU
1152 if(use_menu) {
1153 if(menu_cfg && menu_init(menu_cfg))
1154 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu inited: %s\n", menu_cfg);
1155 else {
1156 menu_cfg = get_path("menu.conf");
1157 if(menu_init(menu_cfg))
1158 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu inited: %s\n", menu_cfg);
1159 else {
1160 if(menu_init(MPLAYER_CONFDIR "/menu.conf"))
1161 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu inited: %s\n", MPLAYER_CONFDIR"/menu.conf");
1162 else {
1163 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Menu init failed\n");
1164 use_menu = 0;
1169 #endif
1173 //========= Catch terminate signals: ================
1174 // terminate requests:
1175 signal(SIGTERM,exit_sighandler); // kill
1176 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
1178 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
1180 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
1181 #ifdef ENABLE_SIGHANDLER
1182 // fatal errors:
1183 signal(SIGBUS,exit_sighandler); // bus error
1184 signal(SIGSEGV,exit_sighandler); // segfault
1185 signal(SIGILL,exit_sighandler); // illegal instruction
1186 signal(SIGFPE,exit_sighandler); // floating point exc.
1187 signal(SIGABRT,exit_sighandler); // abort()
1188 #endif
1190 #ifdef HAVE_NEW_GUI
1191 if(use_gui){
1192 guiInit();
1193 inited_flags|=INITED_GUI;
1194 guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) );
1196 #endif
1198 // ******************* Now, let's see the per-file stuff ********************
1200 play_next_file:
1202 if (filename) load_per_file_config (mconfig, filename);
1204 // We must enable getch2 here to be able to interrupt network connection
1205 // or cache filling
1206 if(!use_stdin && !slave_mode){
1207 if(inited_flags&INITED_GETCH2)
1208 mp_msg(MSGT_CPLAYER,MSGL_WARN,"WARNING: getch2_init called twice!\n");
1209 else
1210 getch2_enable(); // prepare stdin for hotkeys...
1211 inited_flags|=INITED_GETCH2;
1212 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
1215 // =================== GUI idle loop (STOP state) ===========================
1216 #ifdef HAVE_NEW_GUI
1217 if ( use_gui ) {
1218 file_format=DEMUXER_TYPE_UNKNOWN;
1219 guiGetEvent( guiSetDefaults,0 );
1220 while ( guiIntfStruct.Playing != 1 )
1222 mp_cmd_t* cmd;
1223 usec_sleep(20000);
1224 guiEventHandling();
1225 guiGetEvent( guiReDraw,NULL );
1226 if ( (cmd = mp_input_get_cmd(0,0)) != NULL) guiGetEvent( guiIEvent,(char *)cmd->id );
1228 guiGetEvent( guiSetParameters,NULL );
1229 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM )
1231 play_tree_t * entry = play_tree_new();
1232 play_tree_add_file( entry,guiIntfStruct.Filename );
1233 if ( playtree ) play_tree_free_list( playtree->child,1 );
1234 else playtree=play_tree_new();
1235 play_tree_set_child( playtree,entry );
1236 if(playtree)
1238 playtree_iter = play_tree_iter_new(playtree,mconfig);
1239 if(playtree_iter)
1241 if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY)
1243 play_tree_iter_free(playtree_iter);
1244 playtree_iter = NULL;
1246 filename = play_tree_iter_get_file(playtree_iter,1);
1251 #endif
1252 //---------------------------------------------------------------------------
1254 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
1255 if(filename) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing, filename);
1257 //==================== Open VOB-Sub ============================
1259 current_module="vobsub";
1260 if (vobsub_name){
1261 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
1262 if(vo_vobsub==NULL)
1263 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,vobsub_name);
1264 }else if(sub_auto && filename && (strlen(filename)>=5)){
1265 /* try to autodetect vobsub from movie filename ::atmos */
1266 char *buf = malloc((strlen(filename)-3) * sizeof(char));
1267 memset(buf,0,strlen(filename)-3); // make sure string is terminated
1268 strncpy(buf, filename, strlen(filename)-4);
1269 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
1270 free(buf);
1272 if(vo_vobsub){
1273 sub_auto=0; // don't do autosub for textsubs if vobsub found
1274 inited_flags|=INITED_VOBSUB;
1275 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
1276 // check if vobsub requested only to display forced subtitles
1277 forced_subs_only=vobsub_get_forced_subs_flag(vo_vobsub);
1280 //============ Open & Sync STREAM --- fork cache2 ====================
1282 stream=NULL;
1283 demuxer=NULL;
1284 if (d_audio) {
1285 //free_demuxer_stream(d_audio);
1286 d_audio=NULL;
1288 if (d_video) {
1289 //free_demuxer_stream(d_video);
1290 d_video=NULL;
1292 sh_audio=NULL;
1293 sh_video=NULL;
1295 current_module="open_stream";
1296 stream=open_stream(filename,0,&file_format);
1297 if(!stream) { // error...
1298 eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY);
1299 goto goto_next_file;
1301 inited_flags|=INITED_STREAM;
1303 #ifdef HAVE_NEW_GUI
1304 if ( use_gui ) guiGetEvent( guiSetStream,(char *)stream );
1305 #endif
1307 if(file_format == DEMUXER_TYPE_PLAYLIST) {
1308 play_tree_t* entry;
1309 // Handle playlist
1310 current_module="handle_playlist";
1311 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",filename);
1312 entry = parse_playtree(stream,0);
1313 eof=playtree_add_playlist(entry);
1314 goto goto_next_file;
1316 stream->start_pos+=seek_to_byte;
1318 if(stream_dump_type==5){
1319 unsigned char buf[4096];
1320 int len;
1321 FILE *f;
1322 current_module="dumpstream";
1323 if(stream->type==STREAMTYPE_STREAM && stream->fd<0){
1324 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Cannot dump this stream - no 'fd' available\n");
1325 exit_player(MSGTR_Exit_error);
1327 stream_reset(stream);
1328 stream_seek(stream,stream->start_pos);
1329 f=fopen(stream_dump_name,"wb");
1330 if(!f){
1331 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
1332 exit_player(MSGTR_Exit_error);
1334 while(!stream->eof){
1335 len=stream_read(stream,buf,4096);
1336 if(len>0) {
1337 if(fwrite(buf,len,1,f) != 1) {
1338 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
1339 exit_player(MSGTR_Exit_error);
1343 if(fclose(f)) {
1344 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
1345 exit_player(MSGTR_Exit_error);
1347 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
1348 exit_player_with_rc(MSGTR_Exit_eof, 0);
1351 #ifdef USE_DVDREAD
1352 if(stream->type==STREAMTYPE_DVD){
1353 current_module="dvd lang->id";
1354 if(audio_id==-1) audio_id=dvd_aid_from_lang(stream,audio_lang);
1355 if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvd_sid_from_lang(stream,dvdsub_lang);
1356 current_module=NULL;
1358 #endif
1360 #ifdef USE_DVDNAV
1361 if (stream->type==STREAMTYPE_DVDNAV) stream_cache_size=0; // must disable caching...
1362 #endif
1364 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
1365 #ifdef HAS_DVBIN_SUPPORT
1366 goto_enable_cache:
1367 #endif
1368 if(stream_cache_size>0){
1369 current_module="enable_cache";
1370 if(!stream_enable_cache(stream,stream_cache_size*1024,stream_cache_size*1024/5,stream_cache_size*1024/20))
1371 if((eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) goto goto_next_file;
1374 //============ Open DEMUXERS --- DETECT file type =======================
1375 current_module="demux_open";
1377 demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id,filename);
1379 // HACK to get MOV Reference Files working
1381 if (demuxer && demuxer->type==DEMUXER_TYPE_PLAYLIST)
1383 unsigned char* playlist_entry;
1384 play_tree_t *list = NULL, *entry = NULL;
1386 current_module="handle_demux_playlist";
1387 while (ds_get_packet(demuxer->video,&playlist_entry)>0)
1389 char *temp, *bname;
1391 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry\n",playlist_entry);
1393 bname=mp_basename(playlist_entry);
1394 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
1395 continue;
1397 if (!strncmp(bname,mp_basename(filename),strlen(bname))) // ignoring self-reference
1398 continue;
1400 entry = play_tree_new();
1402 if (filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
1404 temp=malloc((strlen(filename)-strlen(mp_basename(filename))+strlen(playlist_entry)+1)*sizeof(char));
1405 if (temp)
1407 strncpy(temp, filename, strlen(filename)-strlen(mp_basename(filename)));
1408 temp[strlen(filename)-strlen(mp_basename(filename))]='\0';
1409 strcat(temp, playlist_entry);
1410 play_tree_add_file(entry,temp);
1411 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s\n",temp);
1412 free(temp);
1415 else
1416 play_tree_add_file(entry,playlist_entry);
1418 if(!list)
1419 list = entry;
1420 else
1421 play_tree_append_entry(list,entry);
1423 free_demuxer(demuxer);
1424 demuxer = NULL;
1426 if (list)
1428 entry = play_tree_new();
1429 play_tree_set_child(entry,list);
1430 eof=playtree_add_playlist(entry);
1431 goto goto_next_file;
1435 if(!demuxer)
1437 #if 0
1438 play_tree_t* entry;
1439 // Handle playlist
1440 current_module="handle_playlist";
1441 switch(stream->type){
1442 case STREAMTYPE_VCD:
1443 case STREAMTYPE_DVD:
1444 case STREAMTYPE_DVDNAV:
1445 case STREAMTYPE_CDDA:
1446 case STREAMTYPE_VCDBINCUE:
1447 // don't try to parse raw media as playlist, it's unlikely
1448 goto goto_next_file;
1450 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Falling back on trying to parse playlist %s...\n",filename);
1451 stream_reset(stream);
1452 stream_seek(stream,stream->start_pos);
1453 entry = parse_playtree(stream,0);
1454 if(!entry)
1455 mp_msg(MSGT_DEMUXER,MSGL_ERR,MSGTR_FormatNotRecognized);
1456 else
1457 eof=playtree_add_playlist(entry);
1458 #endif
1459 goto goto_next_file;
1461 inited_flags|=INITED_DEMUXER;
1463 current_module="demux_open2";
1465 //file_format=demuxer->file_format;
1467 d_audio=demuxer->audio;
1468 d_video=demuxer->video;
1469 d_dvdsub=demuxer->sub;
1471 // DUMP STREAMS:
1472 if((stream_dump_type)&&(stream_dump_type<4)){
1473 FILE *f;
1474 demux_stream_t *ds=NULL;
1475 current_module="dump";
1476 // select stream to dump
1477 switch(stream_dump_type){
1478 case 1: ds=d_audio;break;
1479 case 2: ds=d_video;break;
1480 case 3: ds=d_dvdsub;break;
1482 if(!ds){
1483 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedStreamMissing);
1484 exit_player(MSGTR_Exit_error);
1486 // disable other streams:
1487 if(d_audio && d_audio!=ds) {ds_free_packs(d_audio); d_audio->id=-2; }
1488 if(d_video && d_video!=ds) {ds_free_packs(d_video); d_video->id=-2; }
1489 if(d_dvdsub && d_dvdsub!=ds) {ds_free_packs(d_dvdsub); d_dvdsub->id=-2; }
1490 // let's dump it!
1491 f=fopen(stream_dump_name,"wb");
1492 if(!f){
1493 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
1494 exit_player(MSGTR_Exit_error);
1496 while(!ds->eof){
1497 unsigned char* start;
1498 int in_size=ds_get_packet(ds,&start);
1499 if( (demuxer->file_format==DEMUXER_TYPE_AVI || demuxer->file_format==DEMUXER_TYPE_ASF || demuxer->file_format==DEMUXER_TYPE_MOV)
1500 && stream_dump_type==2) fwrite(&in_size,1,4,f);
1501 if(in_size>0) fwrite(start,in_size,1,f);
1503 fclose(f);
1504 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
1505 exit_player_with_rc(MSGTR_Exit_eof, 0);
1508 sh_audio=d_audio->sh;
1509 sh_video=d_video->sh;
1511 if(sh_video){
1513 current_module="video_read_properties";
1514 if(!video_read_properties(sh_video)) {
1515 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
1516 sh_video=d_video->sh=NULL;
1517 } else {
1518 mp_msg(MSGT_CPLAYER,MSGL_V,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n",
1519 demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h,
1520 sh_video->fps,sh_video->frametime
1523 /* need to set fps here for output encoders to pick it up in their init */
1524 if(force_fps){
1525 sh_video->fps=force_fps;
1526 sh_video->frametime=1.0f/sh_video->fps;
1528 vo_fps = sh_video->fps;
1529 #ifdef HAVE_X11
1530 vo_mouse_timer_const=(int)sh_video->fps;
1531 #endif
1533 if(!sh_video->fps && !force_fps){
1534 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
1535 sh_video=d_video->sh=NULL;
1541 fflush(stdout);
1543 if(!sh_video && !sh_audio){
1544 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NoStreamFound);
1545 #ifdef HAS_DVBIN_SUPPORT
1546 if((stream->type == STREAMTYPE_DVB) && stream->priv)
1548 dvb_priv_t *priv = (dvb_priv_t*) stream->priv;
1549 if(priv->is_on)
1551 int dir;
1552 int v = last_dvb_step;
1553 if(v > 0)
1554 dir = DVB_CHANNEL_HIGHER;
1555 else
1556 dir = DVB_CHANNEL_LOWER;
1558 if(dvb_step_channel(priv, dir))
1560 uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
1561 cache_uninit(stream);
1562 goto goto_enable_cache;
1566 #endif
1567 goto goto_next_file; // exit_player(MSGTR_Exit_error);
1570 /* display clip info */
1571 demux_info_print(demuxer);
1573 //================== Read SUBTITLES (DVD & TEXT) ==========================
1574 if(d_dvdsub->id >= 0 && vo_spudec==NULL && sh_video){
1576 if (spudec_ifo) {
1577 unsigned int palette[16], width, height;
1578 current_module="spudec_init_vobsub";
1579 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1580 vo_spudec=spudec_new_scaled(palette, width, height);
1583 #ifdef USE_DVDNAV
1584 if (vo_spudec==NULL && stream->type==STREAMTYPE_DVDNAV) {
1585 current_module="spudec_init_dvdnav";
1586 vo_spudec=spudec_new_scaled(dvdnav_stream_get_palette((dvdnav_priv_t*)(stream->priv)),
1587 sh_video->disp_w, sh_video->disp_h);
1589 #endif
1591 #ifdef USE_DVDREAD
1592 if (vo_spudec==NULL && stream->type==STREAMTYPE_DVD) {
1593 current_module="spudec_init_dvdread";
1594 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(stream->priv))->cur_pgc->palette,
1595 sh_video->disp_w, sh_video->disp_h);
1597 #endif
1599 #ifdef HAVE_MATROSKA
1600 if ((vo_spudec == NULL) && (demuxer->type == DEMUXER_TYPE_MATROSKA) &&
1601 (d_dvdsub->sh != NULL) && (((mkv_sh_sub_t *)d_dvdsub->sh)->type == 'v')) {
1602 current_module = "spudec_init_matroska";
1603 vo_spudec = spudec_new_scaled(((mkv_sh_sub_t *)d_dvdsub->sh)->palette,
1604 ((mkv_sh_sub_t *)d_dvdsub->sh)->width,
1605 ((mkv_sh_sub_t *)d_dvdsub->sh)->height);
1607 #endif
1609 if (vo_spudec==NULL) {
1610 current_module="spudec_init_normal";
1611 vo_spudec=spudec_new_scaled(NULL, sh_video->disp_w, sh_video->disp_h);
1612 spudec_set_font_factor(vo_spudec,font_factor);
1615 if (vo_spudec!=NULL)
1616 inited_flags|=INITED_SPUDEC;
1620 // Apply current settings for forced subs
1621 if (vo_spudec!=NULL)
1622 spudec_set_forced_subs_only(vo_spudec,forced_subs_only);
1624 #ifdef USE_SUB
1625 if(sh_video) {
1626 // after reading video params we should load subtitles because
1627 // we know fps so now we can adjust subtitles time to ~6 seconds AST
1628 // check .sub
1629 current_module="read_subtitles_file";
1630 if(sub_name){
1631 for (i = 0; sub_name[i] != NULL; ++i)
1632 add_subtitles (sub_name[i], sh_video->fps, 0);
1634 if(sub_auto) { // auto load sub file ...
1635 char *psub = get_path( "sub/" );
1636 char **tmp = sub_filenames((psub ? psub : ""), filename);
1637 char **tmp2 = tmp;
1638 while (*tmp2)
1639 add_subtitles (*tmp2++, sh_video->fps, 0);
1640 free(tmp);
1641 if (set_of_sub_size == 0)
1642 add_subtitles (get_path("default.sub"), sh_video->fps, 1);
1643 if (set_of_sub_size > 0)
1644 add_subtitles (NULL, sh_video->fps, 1);
1646 if (set_of_sub_size > 0) {
1647 //osd_show_sub_changed = sh_video->fps;
1648 subdata = set_of_subtitles[set_of_sub_pos=0];
1650 if(stream_dump_type==3) list_sub_file(subdata);
1651 if(stream_dump_type==4) dump_mpsub(subdata, sh_video->fps);
1652 if(stream_dump_type==6) dump_srt(subdata, sh_video->fps);
1653 if(stream_dump_type==7) dump_microdvd(subdata, sh_video->fps);
1654 if(stream_dump_type==8) dump_jacosub(subdata, sh_video->fps);
1655 if(stream_dump_type==9) dump_sami(subdata, sh_video->fps);
1658 #endif
1660 //================== Init AUDIO (codec) ==========================
1661 if(sh_audio){
1662 // Go through the codec.conf and find the best codec...
1663 current_module="init_audio_codec";
1664 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1665 if(!init_best_audio_codec(sh_audio,audio_codec_list,audio_fm_list)){
1666 sh_audio=d_audio->sh=NULL; // failed to init :(
1667 } else
1668 inited_flags|=INITED_ACODEC;
1669 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1672 if(identify) {
1673 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_FILENAME=%s\n", filename);
1674 if (sh_video) {
1675 /* Assume FOURCC if all bytes >= 0x20 (' ') */
1676 if (sh_video->format >= 0x20202020)
1677 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", &sh_video->format);
1678 else
1679 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", sh_video->format);
1680 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", sh_video->i_bps*8);
1681 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", sh_video->disp_w);
1682 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", sh_video->disp_h);
1683 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", sh_video->fps);
1684 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", sh_video->aspect);
1686 if (sh_audio) {
1687 if (sh_audio->codec)
1688 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", sh_audio->codec->name);
1689 /* Assume FOURCC if all bytes >= 0x20 (' ') */
1690 if (sh_audio->format >= 0x20202020)
1691 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", &sh_audio->format);
1692 else
1693 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", sh_audio->format);
1694 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", sh_audio->i_bps*8);
1695 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_RATE=%d\n", sh_audio->samplerate);
1696 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_NCH=%d\n", sh_audio->channels);
1698 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_LENGTH=%ld\n", demuxer_get_time_length(demuxer));
1701 if(!sh_video) goto main; // audio-only
1703 //================== Init VIDEO (codec & libvo) ==========================
1704 if(!fixed_vo || !(inited_flags&INITED_VO)){
1705 current_module="preinit_libvo";
1707 vo_config_count=0;
1708 //if((video_out->preinit(vo_subdevice))!=0){
1709 if(!(video_out=init_best_video_out(video_driver_list))){
1710 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorInitializingVODevice);
1711 goto goto_next_file; // exit_player(MSGTR_Exit_error);
1713 sh_video->video_out=video_out;
1714 inited_flags|=INITED_VO;
1717 current_module="init_video_filters";
1719 char* vf_arg[] = { "_oldargs_", (char*)video_out , NULL };
1720 sh_video->vfilter=(void*)vf_open_filter(NULL,"vo",vf_arg);
1722 #ifdef HAVE_MENU
1723 if(use_menu) {
1724 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
1725 vf_menu = vf_open_plugin(libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
1726 if(!vf_menu) {
1727 mp_msg(MSGT_CPLAYER,MSGL_ERR,"Can't open libmenu video filter with root menu %s\n",menu_root);
1728 use_menu = 0;
1731 if(vf_menu)
1732 sh_video->vfilter=(void*)append_filters(vf_menu);
1733 else
1734 #endif
1735 sh_video->vfilter=(void*)append_filters(sh_video->vfilter);
1737 current_module="init_video_codec";
1739 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1740 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
1741 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1743 if(!sh_video->inited){
1744 if(!fixed_vo) uninit_player(INITED_VO);
1745 if(!sh_audio) goto goto_next_file;
1746 sh_video = d_video->sh = NULL;
1747 goto main; // exit_player(MSGTR_Exit_error);
1750 inited_flags|=INITED_VCODEC;
1752 if(auto_quality>0){
1753 // Auto quality option enabled
1754 output_quality=get_video_quality_max(sh_video);
1755 if(auto_quality>output_quality) auto_quality=output_quality;
1756 else output_quality=auto_quality;
1757 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d\n",output_quality);
1758 set_video_quality(sh_video,output_quality);
1761 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
1763 current_module="init_vo";
1764 if (sh_video)
1766 if (vo_gamma_gamma != 1000)
1767 set_video_colors (sh_video, "gamma", vo_gamma_gamma);
1768 if (vo_gamma_brightness != 1000)
1769 set_video_colors(sh_video, "brightness", vo_gamma_brightness);
1770 if (vo_gamma_contrast != 1000)
1771 set_video_colors(sh_video, "contrast", vo_gamma_contrast);
1772 if (vo_gamma_saturation != 1000)
1773 set_video_colors(sh_video, "saturation", vo_gamma_saturation);
1774 if (vo_gamma_hue != 1000)
1775 set_video_colors(sh_video, "hue", vo_gamma_hue);
1778 if(vo_flags & 0x08 && vo_spudec)
1779 spudec_set_hw_spu(vo_spudec,video_out);
1781 #ifdef HAVE_FREETYPE
1782 force_load_font = 1;
1783 #endif
1785 //================== MAIN: ==========================
1786 main:
1787 current_module="main";
1789 // If there is no video OSD has to be disabled.
1790 // In case of playing a playtree we have to restore the
1791 // old OSD level after playing one or more audio-only files.
1792 if(!sh_video && osd_level >= 0) { // save OSD level only once
1793 osd_level_saved = osd_level;
1794 osd_level = 0;
1795 } else if (osd_level_saved > -1) { // if there is a saved OSD level, restore it
1796 osd_level = osd_level_saved;
1797 osd_level_saved = -1;
1800 fflush(stdout);
1802 #ifdef HAVE_NEW_GUI
1803 if ( use_gui )
1805 if ( sh_audio ) guiIntfStruct.AudioType=sh_audio->channels; else guiIntfStruct.AudioType=0;
1806 if ( !sh_video && sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
1807 guiGetEvent( guiSetFileFormat,(char *)demuxer->file_format );
1808 if ( guiGetEvent( guiSetValues,(char *)sh_video ) ) goto goto_next_file;
1809 guiGetEvent( guiSetDemuxer,(char *)demuxer );
1811 #endif
1814 //int frame_corr_num=0; //
1815 //float v_frame=0; // Video
1816 float time_frame=0; // Timer
1817 //float num_frames=0; // number of frames played
1818 int grab_frames=0;
1819 char osd_text_buffer[64];
1820 char osd_show_text_buffer[64];
1821 int drop_frame=0; // current dropping status
1822 int dropped_frames=0; // how many frames dropped since last non-dropped frame
1823 int too_slow_frame_cnt=0;
1824 int too_fast_frame_cnt=0;
1825 // for auto-quality:
1826 float AV_delay=0; // average of A-V timestamp differences
1827 double vdecode_time;
1828 unsigned int lastframeout_ts=0;
1829 /*float time_frame_corr_avg=0;*/ /* unused */
1831 float next_frame_time=0;
1832 int frame_time_remaining=0; // flag
1833 int blit_frame=0;
1835 osd_text_buffer[0]=0;
1837 //================ SETUP AUDIO ==========================
1839 if(sh_audio){
1840 //const ao_info_t *info=audio_out->info;
1841 current_module="af_preinit";
1842 ao_data.samplerate=force_srate?force_srate:sh_audio->samplerate*playback_speed;
1843 ao_data.channels=audio_output_channels?audio_output_channels:sh_audio->channels;
1844 ao_data.format=audio_output_format?audio_output_format:sh_audio->sample_format;
1845 #if 1
1846 if(!preinit_audio_filters(sh_audio,
1847 // input:
1848 (int)(sh_audio->samplerate*playback_speed),
1849 sh_audio->channels, sh_audio->sample_format, sh_audio->samplesize,
1850 // output:
1851 &ao_data.samplerate, &ao_data.channels, &ao_data.format,
1852 audio_out_format_bits(ao_data.format)/8)){
1853 mp_msg(MSGT_CPLAYER,MSGL_ERR,"Error at audio filter chain pre-init!\n");
1854 } else {
1855 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AF_pre: %dHz %dch %s\n",
1856 ao_data.samplerate, ao_data.channels,
1857 audio_out_format_name(ao_data.format));
1859 #endif
1860 current_module="ao2_init";
1861 if(!(audio_out=init_best_audio_out(audio_driver_list,
1862 (ao_plugin_cfg.plugin_list!=NULL), // plugin flag
1863 force_srate?force_srate:ao_data.samplerate,
1864 audio_output_channels?audio_output_channels:ao_data.channels,
1865 audio_output_format?audio_output_format:ao_data.format,0))){
1866 // FAILED:
1867 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
1868 uninit_player(INITED_ACODEC); // close codec
1869 sh_audio=d_audio->sh=NULL; // -> nosound
1870 } else {
1871 // SUCCESS:
1872 inited_flags|=INITED_AO;
1873 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bps)\n",
1874 audio_out->info->short_name,
1875 ao_data.samplerate, ao_data.channels,
1876 audio_out_format_name(ao_data.format),
1877 audio_out_format_bits(ao_data.format)/8 );
1878 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_AODescription_AOAuthor,
1879 audio_out->info->name, audio_out->info->author);
1880 if(strlen(audio_out->info->comment) > 0)
1881 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_AOComment, audio_out->info->comment);
1882 // init audio filters:
1883 #if 1
1884 current_module="af_init";
1885 if(!init_audio_filters(sh_audio,
1886 (int)(sh_audio->samplerate*playback_speed),
1887 sh_audio->channels, sh_audio->sample_format, sh_audio->samplesize,
1888 ao_data.samplerate, ao_data.channels, ao_data.format,
1889 audio_out_format_bits(ao_data.format)/8, /* ao_data.bps, */
1890 ao_data.outburst*4, ao_data.buffersize)){
1891 mp_msg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter / ao format!\n");
1892 // mp_msg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter / ao format! -> NOSOUND\n");
1893 // uninit_player(INITED_ACODEC|INITED_AO); // close codec & ao
1894 // sh_audio=d_audio->sh=NULL; // -> nosound
1896 #endif
1900 current_module="av_init";
1902 if(sh_video) sh_video->timer=0;
1903 if(sh_audio) sh_audio->delay=-audio_delay;
1905 if(!sh_audio){
1906 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
1907 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks\n",d_audio->packs);
1908 ds_free_packs(d_audio); // free buffered chunks
1909 d_audio->id=-2; // do not read audio chunks
1910 //uninit_player(INITED_AO); // close device
1912 if(!sh_video){
1913 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
1914 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks\n",d_video->packs);
1915 ds_free_packs(d_video);
1916 d_video->id=-2;
1917 //if(!fixed_vo) uninit_player(INITED_VO);
1920 if (!sh_video && !sh_audio)
1921 goto goto_next_file;
1923 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
1924 if(force_fps && sh_video){
1925 vo_fps = sh_video->fps=force_fps;
1926 sh_video->frametime=1.0f/sh_video->fps;
1927 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,sh_video->fps,sh_video->frametime);
1930 //==================== START PLAYING =======================
1932 if(loop_times>1) loop_times--; else
1933 if(loop_times==1) loop_times = -1;
1935 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);fflush(stdout);
1937 InitTimer();
1939 #ifdef USE_DVDNAV
1940 if (stream->type==STREAMTYPE_DVDNAV) {
1941 dvdnav_stream_fullstart((dvdnav_priv_t *)stream->priv);
1943 #endif
1945 total_time_usage_start=GetTimer();
1946 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
1947 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
1948 play_n_frames=play_n_frames_mf;
1950 if(play_n_frames==0){
1951 eof=PT_NEXT_ENTRY; goto goto_next_file;
1954 while(!eof){
1955 float aq_sleep_time=0;
1957 if(play_n_frames>=0){
1958 --play_n_frames;
1959 if(play_n_frames<0) eof = PT_NEXT_ENTRY;
1962 /*========================== PLAY AUDIO ============================*/
1964 while(sh_audio){
1965 unsigned int t;
1966 double tt;
1967 int playsize;
1969 current_module="play_audio";
1971 ao_data.pts=((sh_video?sh_video->timer:0)+sh_audio->delay)*90000.0;
1972 playsize=audio_out->get_space();
1974 // handle audio-only case:
1975 if(!playsize && !sh_video) { // buffer is full, do not block here!!!
1976 usec_sleep(10000); // Wait a tick before retry
1977 continue;
1980 if(playsize>MAX_OUTBURST) playsize=MAX_OUTBURST; // we shouldn't exceed it!
1982 // Fill buffer if needed:
1983 current_module="decode_audio"; // Enter AUDIO decoder module
1984 t=GetTimer();
1985 while(sh_audio->a_out_buffer_len<playsize && !d_audio->eof){
1986 int ret=decode_audio(sh_audio,&sh_audio->a_out_buffer[sh_audio->a_out_buffer_len],
1987 playsize-sh_audio->a_out_buffer_len,sh_audio->a_out_buffer_size-sh_audio->a_out_buffer_len);
1988 if(ret<=0) break; // EOF?
1989 sh_audio->a_out_buffer_len+=ret;
1991 t=GetTimer()-t;
1992 tt = t*0.000001f; audio_time_usage+=tt;
1993 if(playsize>sh_audio->a_out_buffer_len) playsize=sh_audio->a_out_buffer_len;
1995 // play audio:
1996 current_module="play_audio";
1997 playsize=audio_out->play(sh_audio->a_out_buffer,playsize,0);
1999 if(playsize>0){
2000 sh_audio->a_out_buffer_len-=playsize;
2001 memmove(sh_audio->a_out_buffer,&sh_audio->a_out_buffer[playsize],sh_audio->a_out_buffer_len);
2002 sh_audio->delay+=playback_speed*playsize/((float)((ao_data.bps && sh_audio->afilter) ?
2003 ao_data.bps : sh_audio->o_bps));
2006 break;
2007 } // while(sh_audio)
2009 if(!sh_video) {
2010 // handle audio-only case:
2011 if(!quiet) {
2013 // convert time to HH:MM:SS.F format
2015 long tenths = 10 * sh_audio->delay-audio_out->get_delay();
2016 int hh = (tenths / 36000) % 100;
2017 int mm = (tenths / 600) % 60;
2018 int ss = (tenths / 10) % 60;
2019 int f1 = tenths % 10;
2020 char hhmmssf[16]; // only really need 11, but just in case...
2021 sprintf( hhmmssf, "%2d:%2d:%2d.%1d", hh, mm, ss, f1);
2022 if (0 == hh) {
2023 hhmmssf[1] = ' ';
2024 hhmmssf[2] = ' ';
2026 // uncomment the next three lines to show leading zero ten-hours
2027 // else if (' ' == hhmmssf[0]) {
2028 // hhmmssf[0] = '0';
2029 // }
2030 if ((0 == hh) && (0 == mm)) {
2031 hhmmssf[4] = ' ';
2032 hhmmssf[5] = ' ';
2034 else if ((' ' == hhmmssf[3]) && (' ' != hhmmssf[2])) {
2035 hhmmssf[3] = '0';
2037 if ((' ' == hhmmssf[6]) && (' ' != hhmmssf[5])) {
2038 hhmmssf[6] = '0';
2040 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A: %s %4.1f%% %d%% \r"
2041 ,hhmmssf
2042 ,(sh_audio->delay>0.5)?100.0*audio_time_usage/(double)sh_audio->delay:0
2043 ,cache_fill_status
2046 if(d_audio->eof) eof = PT_NEXT_ENTRY;
2048 } else {
2050 /*========================== PLAY VIDEO ============================*/
2052 float frame_time=next_frame_time;
2054 vo_pts=sh_video->timer*90000.0;
2055 vo_fps=sh_video->fps;
2057 if(!frame_time_remaining){
2058 //-------------------- Decode a frame: -----------------------
2059 vdecode_time=video_time_usage;
2060 while(1)
2061 { unsigned char* start=NULL;
2062 int in_size;
2063 // get it!
2064 current_module="video_read_frame";
2065 in_size=video_read_frame(sh_video,&next_frame_time,&start,force_fps);
2066 if(in_size<0){ eof=1; break; }
2067 if(in_size>max_framesize) max_framesize=in_size; // stats
2068 sh_video->timer+=frame_time;
2069 if(sh_audio) sh_audio->delay-=frame_time;
2070 time_frame+=frame_time; // for nosound
2071 // check for frame-drop:
2072 current_module="check_framedrop";
2073 if(sh_audio && !d_audio->eof){
2074 float delay=playback_speed*audio_out->get_delay();
2075 float d=delay-sh_audio->delay;
2076 // we should avoid dropping to many frames in sequence unless we
2077 // are too late. and we allow 100ms A-V delay here:
2078 if(d<-dropped_frames*frame_time-0.100){
2079 drop_frame=frame_dropping;
2080 ++drop_frame_cnt;
2081 ++dropped_frames;
2082 } else {
2083 drop_frame=dropped_frames=0;
2085 ++total_frame_cnt;
2087 // decode:
2088 current_module="decode_video";
2089 // printf("Decode! %p %d \n",start,in_size);
2090 blit_frame=decode_video(sh_video,start,in_size,drop_frame);
2091 break;
2093 vdecode_time=video_time_usage-vdecode_time;
2094 //------------------------ frame decoded. --------------------
2096 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
2098 if(sh_video->vf_inited<0){
2099 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_NotInitializeVOPorVO);
2100 eof=1; goto goto_next_file;
2105 // ==========================================================================
2107 // current_module="draw_osd";
2108 // if(vo_config_count) video_out->draw_osd();
2110 #ifdef HAVE_NEW_GUI
2111 if(use_gui) guiEventHandling();
2112 #endif
2114 current_module="calc_sleep_time";
2116 #if 0
2117 { // debug frame dropping code
2118 float delay=audio_out->get_delay();
2119 mp_msg(MSGT_AVSYNC,MSGL_V,"\r[V] %5.3f [A] %5.3f => {%5.3f} (%5.3f) [%d] \n",
2120 sh_video->timer,sh_audio->timer-delay,
2121 sh_video->timer-(sh_audio->timer-delay),
2122 delay,drop_frame);
2124 #endif
2126 if(drop_frame && !frame_time_remaining && !autosync){
2128 * Note: time_frame should not be forced to 0 in autosync mode.
2129 * It is used as a cumulative counter to predict and correct the
2130 * delay measurements from the audio driver. time_frame is already
2131 * < 0, so the "time to sleep" code does not actually sleep. Also,
2132 * blit_frame is already 0 because drop_frame was true when
2133 * decode_video was called (which causes it to set blit_frame to 0.)
2134 * When autosync==0, the default behavior is still completely unchanged.
2137 time_frame=0; // don't sleep!
2138 blit_frame=0; // don't display!
2140 } else {
2142 // It's time to sleep...
2144 frame_time_remaining=0;
2145 time_frame-=GetRelativeTime(); // reset timer
2147 if(sh_audio && !d_audio->eof){
2148 float delay=playback_speed*audio_out->get_delay();
2149 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"delay=%f\n",delay);
2151 if (autosync){
2153 * Adjust this raw delay value by calculating the expected
2154 * delay for this frame and generating a new value which is
2155 * weighted between the two. The higher autosync is, the
2156 * closer to the delay value gets to that which "-nosound"
2157 * would have used, and the longer it will take for A/V
2158 * sync to settle at the right value (but it eventually will.)
2159 * This settling time is very short for values below 100.
2161 float predicted = sh_audio->delay+time_frame;
2162 float difference = delay - predicted;
2163 delay = predicted + difference / (float)autosync;
2166 time_frame=delay-sh_audio->delay;
2168 // delay = amount of audio buffered in soundcard/driver
2169 if(delay>0.25) delay=0.25; else
2170 if(delay<0.10) delay=0.10;
2171 if(time_frame>delay*0.6){
2172 // sleep time too big - may cause audio drops (buffer underrun)
2173 frame_time_remaining=1;
2174 time_frame=delay*0.5;
2177 } else {
2179 // NOSOUND:
2180 if( (time_frame<-3*frame_time || time_frame>3*frame_time) || benchmark)
2181 time_frame=0;
2185 // if(verbose>1)printf("sleep: %5.3f a:%6.3f v:%6.3f \n",time_frame,sh_audio->timer,sh_video->timer);
2187 aq_sleep_time+=time_frame;
2189 } // !drop_frame
2191 //============================== SLEEP: ===================================
2193 time_frame/=playback_speed;
2195 // flag 256 means: libvo driver does its timing (dvb card)
2196 if(time_frame>0.001 && !(vo_flags&256)){
2198 #ifdef HAVE_RTC
2199 if(rtc_fd>=0){
2200 // -------- RTC -----------
2201 current_module="sleep_rtc";
2202 while (time_frame > 0.000) {
2203 unsigned long rtc_ts;
2204 if (read (rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
2205 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC read error: %s\n", strerror(errno));
2206 time_frame-=GetRelativeTime();
2208 } else
2209 #endif
2211 // -------- USLEEP + SOFTSLEEP -----------
2212 float min=softsleep?0.021:0.005;
2213 current_module="sleep_usleep";
2214 while(time_frame>min){
2215 if(time_frame<=0.020)
2216 usec_sleep(0); // sleeps 1 clock tick (10ms)!
2217 else
2218 usec_sleep(1000000*(time_frame-0.020));
2219 time_frame-=GetRelativeTime();
2221 if(softsleep){
2222 current_module="sleep_soft";
2223 if(time_frame<0) mp_msg(MSGT_AVSYNC, MSGL_WARN, "Warning! Softsleep underflow!\n");
2224 while(time_frame>0) time_frame-=GetRelativeTime(); // burn the CPU
2230 //if(!frame_time_remaining){ // should we display the frame now?
2232 //====================== FLIP PAGE (VIDEO BLT): =========================
2234 current_module="vo_check_events";
2235 if(vo_config_count) video_out->check_events();
2237 current_module="flip_page";
2238 if (!frame_time_remaining) {
2239 if(blit_frame){
2240 unsigned int t2=GetTimer();
2241 double tt;
2242 float j;
2243 #define FRAME_LAG_WARN 0.2
2244 j = ((float)t2 - lastframeout_ts) / 1000000;
2245 lastframeout_ts = GetTimer();
2246 if (j < frame_time + frame_time * -FRAME_LAG_WARN)
2247 too_fast_frame_cnt++;
2248 /* printf ("PANIC: too fast frame (%.3f)!\n", j); */
2249 else if (j > frame_time + frame_time * FRAME_LAG_WARN)
2250 too_slow_frame_cnt++;
2251 /* printf ("PANIC: too slow frame (%.3f)!\n", j); */
2253 if(vo_config_count) video_out->flip_page();
2254 // usec_sleep(50000); // test only!
2255 t2=GetTimer()-t2;
2256 tt = t2*0.000001f;
2257 vout_time_usage+=tt;
2258 } else {
2260 Well, no blitting is needed, but some devices (such as yuv4mpeg) must output frame
2261 otherwise A/V desync will occur. -- Alvieboy
2263 if (vo_config_count)
2264 video_out->control(VOCTRL_DUPLICATE_FRAME, NULL);
2267 //====================== A-V TIMESTAMP CORRECTION: =========================
2269 current_module="av_sync";
2271 if(sh_audio){
2272 float a_pts=0;
2273 float v_pts=0;
2275 // unplayed bytes in our and soundcard/dma buffer:
2276 float delay=playback_speed*audio_out->get_delay()+(float)sh_audio->a_buffer_len/(float)sh_audio->o_bps;
2278 if (autosync){
2280 * If autosync is enabled, the value for delay must be calculated
2281 * a bit differently. It is set only to the difference between
2282 * the audio and video timers. Any attempt to include the real
2283 * or corrected delay causes the pts_correction code below to
2284 * try to correct for the changes in delay which autosync is
2285 * trying to measure. This keeps the two from competing, but still
2286 * allows the code to correct for PTS drift *only*. (Using a delay
2287 * value here, even a "corrected" one, would be incompatible with
2288 * autosync mode.)
2290 delay=sh_audio->delay;
2291 delay+=(float)sh_audio->a_buffer_len/(float)sh_audio->o_bps;
2294 #if 0
2295 if(pts_from_bps){
2296 // PTS = sample_no / samplerate
2297 unsigned int samples=
2298 // (sh_audio->audio.dwSampleSize)?
2299 // ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) :
2300 ds_tell_block(d_audio); // <- used for VBR audio
2301 samples+=sh_audio->audio.dwStart; // offset
2302 a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate;
2303 delay_corrected=1;
2304 a_pts-=(sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
2305 } else
2306 #endif
2308 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec)
2309 a_pts=d_audio->pts;
2310 if(!delay_corrected) if(a_pts) delay_corrected=1;
2311 #if 0
2312 printf("\n#X# pts=%5.3f ds_pts=%5.3f buff=%5.3f total=%5.3f\n",
2313 a_pts,
2314 ds_tell_pts(d_audio)/(float)sh_audio->i_bps,
2315 -sh_audio->a_in_buffer_len/(float)sh_audio->i_bps,
2316 a_pts+(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps);
2317 #endif
2318 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
2320 v_pts=sh_video ? sh_video->pts : d_video->pts;
2322 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"### 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);
2324 if(delay_corrected){
2325 static int drop_message=0;
2326 float x;
2327 AV_delay=(a_pts-delay-audio_delay)-v_pts;
2328 if(AV_delay>0.5 && drop_frame_cnt>50 && drop_message==0){
2329 ++drop_message;
2330 mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
2332 x=AV_delay*0.1f;
2333 if(x<-max_pts_correction) x=-max_pts_correction; else
2334 if(x> max_pts_correction) x= max_pts_correction;
2335 if(default_max_pts_correction>=0)
2336 max_pts_correction=default_max_pts_correction;
2337 else
2338 max_pts_correction=sh_video->frametime*0.10; // +-10% of time
2339 if(!frame_time_remaining){ sh_audio->delay+=x; c_total+=x;} // correction
2340 if(!quiet) mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A:%6.1f V:%6.1f A-V:%7.3f ct:%7.3f %3d/%3d %2d%% %2d%% %4.1f%% %d %d %d%%\r",
2341 a_pts-audio_delay-delay,v_pts,AV_delay,c_total,
2342 (int)sh_video->num_frames,(int)sh_video->num_frames_decoded,
2343 (sh_video->timer>0.5)?(int)(100.0*video_time_usage*playback_speed/(double)sh_video->timer):0,
2344 (sh_video->timer>0.5)?(int)(100.0*vout_time_usage*playback_speed/(double)sh_video->timer):0,
2345 (sh_video->timer>0.5)?(100.0*audio_time_usage*playback_speed/(double)sh_video->timer):0
2346 ,drop_frame_cnt
2347 ,output_quality
2348 ,cache_fill_status
2350 fflush(stdout);
2353 } else {
2354 // No audio:
2356 if(!quiet)
2357 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"V:%6.1f %3d %2d%% %2d%% %4.1f%% %d %d %d%%\r",sh_video->pts,
2358 (int)sh_video->num_frames,
2359 (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0,
2360 (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0,
2361 (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0
2362 ,drop_frame_cnt
2363 ,output_quality
2364 ,cache_fill_status
2367 fflush(stdout);
2371 //============================ Auto QUALITY ============================
2373 /*Output quality adjustments:*/
2374 if(auto_quality>0){
2375 current_module="autoq";
2376 // float total=0.000001f * (GetTimer()-aq_total_time);
2377 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
2378 if(output_quality<auto_quality && aq_sleep_time>0)
2379 ++output_quality;
2380 else
2381 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
2382 if(output_quality>1 && aq_sleep_time<0)
2383 --output_quality;
2384 else
2385 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
2386 output_quality=0;
2387 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
2388 set_video_quality(sh_video,output_quality);
2391 } // end if(sh_video)
2393 //============================ Handle PAUSE ===============================
2395 current_module="pause";
2397 #ifdef USE_OSD
2398 if(osd_visible){
2399 if (!--osd_visible){
2400 vo_osd_progbar_type=-1; // disable
2401 vo_osd_changed(OSDTYPE_PROGBAR);
2402 if (osd_function != OSD_PAUSE)
2403 osd_function = OSD_PLAY;
2406 #endif
2408 if(osd_function==OSD_PAUSE){
2409 mp_cmd_t* cmd;
2410 if(!quiet) {
2411 mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
2412 fflush(stdout);
2414 #ifdef HAVE_NEW_GUI
2415 if(use_gui) guiGetEvent( guiCEvent,(char *)guiSetPause );
2416 #endif
2417 if (video_out && sh_video && vo_config_count)
2418 video_out->control(VOCTRL_PAUSE, NULL);
2420 if (audio_out && sh_audio)
2421 audio_out->pause(); // pause audio, keep data if possible
2423 while( (cmd = mp_input_get_cmd(20,1)) == NULL) {
2424 if(sh_video && video_out && vo_config_count) video_out->check_events();
2425 #ifdef HAVE_NEW_GUI
2426 if(use_gui){
2427 guiEventHandling();
2428 guiGetEvent( guiReDraw,NULL );
2429 if(guiIntfStruct.Playing!=2 || (rel_seek_secs || abs_seek_pos)) break;
2431 #endif
2432 #ifdef HAVE_MENU
2433 if(vf_menu)
2434 vf_menu_pause_update(vf_menu);
2435 #endif
2436 usec_sleep(20000);
2438 mp_cmd_free(cmd);
2439 osd_function=OSD_PLAY;
2440 if (audio_out && sh_audio)
2441 audio_out->resume(); // resume audio
2442 if (video_out && sh_video && vo_config_count)
2443 video_out->control(VOCTRL_RESUME, NULL); // resume video
2444 (void)GetRelativeTime(); // keep TF around FT in next cycle
2445 #ifdef HAVE_NEW_GUI
2446 if (use_gui)
2448 if ( guiIntfStruct.Playing == guiSetStop ) goto goto_next_file;
2449 guiGetEvent( guiCEvent,(char *)guiSetPlay );
2451 #endif
2454 // handle -sstep
2455 if(step_sec>0) {
2456 osd_function=OSD_FFW;
2457 rel_seek_secs+=step_sec;
2460 #ifdef USE_DVDNAV
2461 if (stream->type==STREAMTYPE_DVDNAV && dvd_nav_still)
2462 dvdnav_stream_sleeping((dvdnav_priv_t*)stream->priv);
2463 #endif
2465 //================= EDL =========================================
2467 #ifdef USE_EDL
2468 if( next_edl_record->next ) { // Are we (still?) doing EDL?
2469 if( sh_video->pts >= next_edl_record->start_sec ) {
2470 if( next_edl_record->action == EDL_SKIP ) {
2471 osd_function = OSD_FFW;
2472 abs_seek_pos = 0;
2473 rel_seek_secs = next_edl_record->length_sec;
2474 #ifdef DEBUG_EDL
2475 printf( "\nEDL_SKIP: start [%f], stop [%f], length [%f]\n", next_edl_record->start_sec, next_edl_record->stop_sec, next_edl_record->length_sec );
2476 #endif
2477 edl_decision = 1;
2478 next_edl_record = next_edl_record->next;
2479 } else if( next_edl_record->action == EDL_MUTE ) {
2480 mixer_mute();
2481 #ifdef DEBUG_EDL
2482 printf( "\nEDL_MUTE: [%f]\n", next_edl_record->start_sec );
2483 #endif
2484 edl_decision = 1;
2485 next_edl_record = next_edl_record->next;
2489 #endif
2491 //================= Keyboard events, SEEKing ====================
2493 current_module="key_events";
2496 mp_cmd_t* cmd;
2497 int brk_cmd = 0;
2498 while( !brk_cmd && (cmd = mp_input_get_cmd(0,0)) != NULL) {
2499 switch(cmd->id) {
2500 case MP_CMD_SEEK : {
2501 int v,abs;
2502 osd_show_percentage = 25;
2503 v = cmd->args[0].v.i;
2504 abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
2505 if(abs==2) { /* Absolute seek to a specific timestamp in seconds */
2506 abs_seek_pos = 1;
2507 if(sh_video)
2508 osd_function= (v > sh_video->timer) ? OSD_FFW : OSD_REW;
2509 rel_seek_secs = v;
2511 else if(abs) { /* Absolute seek by percentage */
2512 abs_seek_pos = 3;
2513 if(sh_video)
2514 osd_function= (v > sh_video->timer) ? OSD_FFW : OSD_REW;
2515 rel_seek_secs = v/100.0;
2517 else {
2518 rel_seek_secs+= v;
2519 osd_function= (v > 0) ? OSD_FFW : OSD_REW;
2521 brk_cmd = 1;
2522 } break;
2523 #ifdef USE_EDL
2524 case MP_CMD_EDL_MARK:
2525 if( edl_fd ) {
2526 float v = sh_video->pts;
2527 fprintf( edl_fd, "%f %f %d\n", v-2, v, 0 );
2529 break;
2530 #endif
2531 case MP_CMD_AUDIO_DELAY : {
2532 float v = cmd->args[0].v.f;
2533 audio_delay += v;
2534 osd_show_av_delay = 9;
2535 if(sh_audio) sh_audio->delay+= v;
2536 } break;
2537 case MP_CMD_PAUSE : {
2538 osd_function=OSD_PAUSE;
2539 brk_cmd = 1;
2540 } break;
2541 case MP_CMD_QUIT : {
2542 exit_player_with_rc(MSGTR_Exit_quit, 0);
2544 case MP_CMD_GRAB_FRAMES : {
2545 grab_frames=2;
2546 } break;
2547 case MP_CMD_PLAY_TREE_STEP : {
2548 int n = cmd->args[0].v.i == 0 ? 1 : cmd->args[0].v.i;
2549 int force = cmd->args[1].v.i;
2551 #ifdef HAVE_NEW_GUI
2552 if (use_gui) {
2553 int i=0;
2554 if (n>0)
2555 for (i=0;i<n;i++)
2556 mplNext();
2557 else
2558 for (i=0;i<-1*n;i++)
2559 mplPrev();
2560 } else
2561 #endif
2563 if(!force && playtree_iter) {
2564 play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter);
2566 if(play_tree_iter_step(i,n,0) == PLAY_TREE_ITER_ENTRY)
2567 eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2568 play_tree_iter_free(i);
2569 } else
2570 eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2571 if(eof)
2572 play_tree_step = n;
2573 brk_cmd = 1;
2575 } break;
2576 case MP_CMD_PLAY_TREE_UP_STEP : {
2577 int n = cmd->args[0].v.i > 0 ? 1 : -1;
2578 int force = cmd->args[1].v.i;
2580 if(!force && playtree_iter) {
2581 play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter);
2582 if(play_tree_iter_up_step(i,n,0) == PLAY_TREE_ITER_ENTRY)
2583 eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2584 play_tree_iter_free(i);
2585 } else
2586 eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2587 brk_cmd = 1;
2588 } break;
2589 case MP_CMD_PLAY_ALT_SRC_STEP : {
2590 if(playtree_iter && playtree_iter->num_files > 1) {
2591 int v = cmd->args[0].v.i;
2592 if(v > 0 && playtree_iter->file < playtree_iter->num_files)
2593 eof = PT_NEXT_SRC;
2594 else if(v < 0 && playtree_iter->file > 1)
2595 eof = PT_PREV_SRC;
2597 brk_cmd = 1;
2598 } break;
2599 case MP_CMD_SUB_DELAY : {
2600 #ifdef USE_SUB
2601 if (sh_video) {
2602 int abs= cmd->args[1].v.i;
2603 float v = cmd->args[0].v.f;
2604 if(abs)
2605 sub_delay = v;
2606 else
2607 sub_delay += v;
2608 osd_show_sub_delay = 9; // show the subdelay in OSD
2610 #endif
2611 } break;
2612 case MP_CMD_SUB_STEP : {
2613 #ifdef USE_SUB
2614 if (sh_video) {
2615 int movement = cmd->args[0].v.i;
2616 step_sub(subdata, sh_video->pts, movement);
2617 osd_show_sub_delay = 9; // show the subdelay in OSD
2619 #endif
2620 } break;
2621 case MP_CMD_OSD : {
2622 #ifdef USE_OSD
2623 if(sh_video) {
2624 int v = cmd->args[0].v.i;
2625 if(v < 0)
2626 osd_level=(osd_level+1)%(MAX_OSD_LEVEL+1);
2627 else
2628 osd_level= v > MAX_OSD_LEVEL ? MAX_OSD_LEVEL : v;
2630 #endif
2631 } break;
2632 case MP_CMD_OSD_SHOW_TEXT : {
2633 #ifdef USE_OSD
2634 if(osd_level && sh_video){
2635 osd_show_text=sh_video->fps; // 1 sec
2636 strncpy(osd_show_text_buffer, cmd->args[0].v.s, 64);
2638 #endif
2639 } break;
2640 case MP_CMD_VOLUME : {
2641 int v = cmd->args[0].v.i;
2643 // start change for absolute volume value
2644 int abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
2646 if( abs )
2648 mixer_setvolume( (float)v, (float)v );
2649 } else {
2650 if(v > 0)
2651 mixer_incvolume();
2652 else
2653 mixer_decvolume();
2656 #ifdef USE_OSD
2657 if(osd_level && sh_video){
2658 osd_visible=sh_video->fps; // 1 sec
2659 vo_osd_progbar_type=OSD_VOLUME;
2660 vo_osd_progbar_value=(mixer_getbothvolume()*256.0)/100.0;
2661 vo_osd_changed(OSDTYPE_PROGBAR);
2663 #endif
2664 } break;
2665 case MP_CMD_MUTE:
2666 mixer_mute();
2667 break;
2668 case MP_CMD_LOADFILE : {
2669 play_tree_t* e = play_tree_new();
2670 play_tree_add_file(e,cmd->args[0].v.s);
2672 // Go back to the start point
2673 while(play_tree_iter_up_step(playtree_iter,0,1) != PLAY_TREE_ITER_END)
2674 /* NOP */;
2675 play_tree_free_list(playtree->child,1);
2676 play_tree_set_child(playtree,e);
2677 play_tree_iter_step(playtree_iter,0,0);
2678 eof = PT_NEXT_SRC;
2679 brk_cmd = 1;
2680 } break;
2681 case MP_CMD_LOADLIST : {
2682 play_tree_t* e = parse_playlist_file(cmd->args[0].v.s);
2683 if(!e)
2684 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_PlaylistLoadUnable,cmd->args[0].v.s);
2685 else {
2686 // Go back to the start point
2687 while(play_tree_iter_up_step(playtree_iter,0,1) != PLAY_TREE_ITER_END)
2688 /* NOP */;
2689 play_tree_free_list(playtree->child,1);
2690 play_tree_set_child(playtree,e);
2691 play_tree_iter_step(playtree_iter,0,0);
2692 eof = PT_NEXT_SRC;
2694 brk_cmd = 1;
2695 } break;
2696 case MP_CMD_GAMMA : {
2697 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
2699 if (!sh_video)
2700 break;
2702 if (vo_gamma_gamma == 1000)
2704 vo_gamma_gamma = 0;
2705 get_video_colors (sh_video, "gamma", &vo_gamma_gamma);
2708 if (abs)
2709 vo_gamma_gamma = v;
2710 else
2711 vo_gamma_gamma += v;
2713 if (vo_gamma_gamma > 100)
2714 vo_gamma_gamma = 100;
2715 else if (vo_gamma_gamma < -100)
2716 vo_gamma_gamma = -100;
2717 set_video_colors(sh_video, "gamma", vo_gamma_gamma);
2718 #ifdef USE_OSD
2719 if(osd_level){
2720 osd_visible=sh_video->fps; // 1 sec
2721 vo_osd_progbar_type=OSD_BRIGHTNESS;
2722 vo_osd_progbar_value=(vo_gamma_gamma<<7)/100 + 128;
2723 vo_osd_changed(OSDTYPE_PROGBAR);
2725 #endif // USE_OSD
2726 } break;
2727 case MP_CMD_BRIGHTNESS : {
2728 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
2730 if (!sh_video)
2731 break;
2733 if (vo_gamma_brightness == 1000)
2735 vo_gamma_brightness = 0;
2736 get_video_colors(sh_video, "brightness", &vo_gamma_brightness);
2739 if (abs)
2740 vo_gamma_brightness = v;
2741 else
2742 vo_gamma_brightness += v;
2744 if (vo_gamma_brightness > 100)
2745 vo_gamma_brightness = 100;
2746 else if (vo_gamma_brightness < -100)
2747 vo_gamma_brightness = -100;
2748 if(set_video_colors(sh_video, "brightness", vo_gamma_brightness)){
2749 #ifdef USE_OSD
2750 if(osd_level){
2751 osd_visible=sh_video->fps; // 1 sec
2752 vo_osd_progbar_type=OSD_BRIGHTNESS;
2753 vo_osd_progbar_value=(vo_gamma_brightness<<7)/100 + 128;
2754 vo_osd_changed(OSDTYPE_PROGBAR);
2756 #endif // USE_OSD
2758 } break;
2759 case MP_CMD_CONTRAST : {
2760 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
2762 if (!sh_video)
2763 break;
2765 if (vo_gamma_contrast == 1000)
2767 vo_gamma_contrast = 0;
2768 get_video_colors(sh_video, "contrast", &vo_gamma_contrast);
2771 if (abs)
2772 vo_gamma_contrast = v;
2773 else
2774 vo_gamma_contrast += v;
2776 if (vo_gamma_contrast > 100)
2777 vo_gamma_contrast = 100;
2778 else if (vo_gamma_contrast < -100)
2779 vo_gamma_contrast = -100;
2780 if(set_video_colors(sh_video, "contrast", vo_gamma_contrast)){
2781 #ifdef USE_OSD
2782 if(osd_level){
2783 osd_visible=sh_video->fps; // 1 sec
2784 vo_osd_progbar_type=OSD_CONTRAST;
2785 vo_osd_progbar_value=(vo_gamma_contrast<<7)/100 + 128;
2786 vo_osd_changed(OSDTYPE_PROGBAR);
2788 #endif // USE_OSD
2790 } break;
2791 case MP_CMD_SATURATION : {
2792 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
2794 if (!sh_video)
2795 break;
2797 if (vo_gamma_saturation == 1000)
2799 vo_gamma_saturation = 0;
2800 get_video_colors(sh_video, "saturation", &vo_gamma_saturation);
2803 if (abs)
2804 vo_gamma_saturation = v;
2805 else
2806 vo_gamma_saturation += v;
2808 if (vo_gamma_saturation > 100)
2809 vo_gamma_saturation = 100;
2810 else if (vo_gamma_saturation < -100)
2811 vo_gamma_saturation = -100;
2812 if(set_video_colors(sh_video, "saturation", vo_gamma_saturation)){
2813 #ifdef USE_OSD
2814 if(osd_level){
2815 osd_visible=sh_video->fps; // 1 sec
2816 vo_osd_progbar_type=OSD_SATURATION;
2817 vo_osd_progbar_value=(vo_gamma_saturation<<7)/100 + 128;
2818 vo_osd_changed(OSDTYPE_PROGBAR);
2820 #endif // USE_OSD
2822 } break;
2823 case MP_CMD_HUE : {
2824 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
2826 if (!sh_video)
2827 break;
2829 if (vo_gamma_hue == 1000)
2831 vo_gamma_hue = 0;
2832 get_video_colors(sh_video, "hue", &vo_gamma_hue);
2835 if (abs)
2836 vo_gamma_hue = v;
2837 else
2838 vo_gamma_hue += v;
2840 if (vo_gamma_hue > 100)
2841 vo_gamma_hue = 100;
2842 else if (vo_gamma_hue < -100)
2843 vo_gamma_hue = -100;
2844 if(set_video_colors(sh_video, "hue", vo_gamma_hue)){
2845 #ifdef USE_OSD
2846 if(osd_level){
2847 osd_visible=sh_video->fps; // 1 sec
2848 vo_osd_progbar_type=OSD_HUE;
2849 vo_osd_progbar_value=(vo_gamma_hue<<7)/100 + 128;
2850 vo_osd_changed(OSDTYPE_PROGBAR);
2852 #endif // USE_OSD
2854 } break;
2855 case MP_CMD_FRAMEDROPPING : {
2856 int v = cmd->args[0].v.i;
2857 if(v < 0)
2858 frame_dropping = (frame_dropping+1)%3;
2859 else
2860 frame_dropping = v > 2 ? 2 : v;
2861 } break;
2862 #ifdef USE_TV
2863 case MP_CMD_TV_SET_FREQ : {
2864 if (file_format == DEMUXER_TYPE_TV)
2865 tv_set_freq((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.f * 16.0);
2866 } break;
2867 case MP_CMD_TV_SET_NORM : {
2868 if (file_format == DEMUXER_TYPE_TV)
2869 tv_set_norm((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.s);
2870 } break;
2871 case MP_CMD_TV_SET_BRIGHTNESS : {
2872 if (file_format == DEMUXER_TYPE_TV)
2873 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_BRIGHTNESS, cmd->args[0].v.i);
2874 } break;
2875 case MP_CMD_TV_SET_HUE : {
2876 if (file_format == DEMUXER_TYPE_TV)
2877 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_HUE, cmd->args[0].v.i);
2878 } break;
2879 case MP_CMD_TV_SET_SATURATION : {
2880 if (file_format == DEMUXER_TYPE_TV)
2881 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_SATURATION, cmd->args[0].v.i);
2882 } break;
2883 case MP_CMD_TV_SET_CONTRAST : {
2884 if (file_format == DEMUXER_TYPE_TV)
2885 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_CONTRAST, cmd->args[0].v.i);
2886 } break;
2887 case MP_CMD_TV_STEP_CHANNEL : {
2888 if (file_format == DEMUXER_TYPE_TV) {
2889 int v = cmd->args[0].v.i;
2890 if(v > 0){
2891 tv_step_channel((tvi_handle_t*)(demuxer->priv), TV_CHANNEL_HIGHER);
2892 #ifdef USE_OSD
2893 if (tv_channel_list) {
2894 osd_show_tv_channel = sh_video->fps;
2895 vo_osd_changed(OSDTYPE_SUBTITLE);
2897 #endif
2898 } else {
2899 tv_step_channel((tvi_handle_t*)(demuxer->priv), TV_CHANNEL_LOWER);
2900 #ifdef USE_OSD
2901 if (tv_channel_list) {
2902 osd_show_tv_channel = sh_video->fps;
2903 vo_osd_changed(OSDTYPE_SUBTITLE);
2905 #endif
2909 #ifdef HAS_DVBIN_SUPPORT
2910 if((stream->type == STREAMTYPE_DVB) && stream->priv)
2912 dvb_priv_t *priv = (dvb_priv_t*) stream->priv;
2913 if(priv->is_on)
2915 int dir;
2916 int v = cmd->args[0].v.i;
2918 last_dvb_step = v;
2919 if(v > 0)
2920 dir = DVB_CHANNEL_HIGHER;
2921 else
2922 dir = DVB_CHANNEL_LOWER;
2925 if(dvb_step_channel(priv, dir))
2927 uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
2928 cache_uninit(stream);
2929 goto goto_enable_cache;
2933 #endif
2934 break;
2935 case MP_CMD_TV_SET_CHANNEL : {
2936 if (file_format == DEMUXER_TYPE_TV) {
2937 tv_set_channel((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.s);
2938 #ifdef USE_OSD
2939 if (tv_channel_list) {
2940 osd_show_tv_channel = sh_video->fps;
2941 vo_osd_changed(OSDTYPE_SUBTITLE);
2943 #endif
2945 } break;
2946 #ifdef HAS_DVBIN_SUPPORT
2947 case MP_CMD_DVB_SET_CHANNEL:
2949 if((stream->type == STREAMTYPE_DVB) && stream->priv)
2951 dvb_priv_t *priv = (dvb_priv_t*) stream->priv;
2952 if(priv->is_on)
2954 if(priv->list->current <= cmd->args[0].v.i)
2955 last_dvb_step = 1;
2956 else
2957 last_dvb_step = -1;
2959 if(dvb_set_channel(priv, cmd->args[0].v.i))
2961 uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
2962 cache_uninit(stream);
2963 goto goto_enable_cache;
2968 #endif
2969 case MP_CMD_TV_LAST_CHANNEL : {
2970 if (file_format == DEMUXER_TYPE_TV) {
2971 tv_last_channel((tvi_handle_t*)(demuxer->priv));
2972 #ifdef USE_OSD
2973 if (tv_channel_list) {
2974 osd_show_tv_channel = sh_video->fps;
2975 vo_osd_changed(OSDTYPE_SUBTITLE);
2977 #endif
2979 } break;
2980 case MP_CMD_TV_STEP_NORM : {
2981 if (file_format == DEMUXER_TYPE_TV)
2982 tv_step_norm((tvi_handle_t*)(demuxer->priv));
2983 } break;
2984 case MP_CMD_TV_STEP_CHANNEL_LIST : {
2985 if (file_format == DEMUXER_TYPE_TV)
2986 tv_step_chanlist((tvi_handle_t*)(demuxer->priv));
2987 } break;
2988 #endif
2989 case MP_CMD_VO_FULLSCREEN:
2991 #ifdef HAVE_NEW_GUI
2992 if ( use_gui ) guiGetEvent( guiIEvent,(char *)MP_CMD_GUI_FULLSCREEN );
2993 else
2994 #endif
2995 if(video_out && vo_config_count) video_out->control(VOCTRL_FULLSCREEN, 0);
2996 } break;
2997 case MP_CMD_VO_ONTOP:
2999 if(video_out && vo_config_count) {
3000 video_out->control(VOCTRL_ONTOP, 0);
3001 #ifdef USE_OSD
3002 osd_show_ontop=10;
3003 vo_osd_changed(OSDTYPE_SUBTITLE);
3004 #endif
3007 } break;
3008 case MP_CMD_PANSCAN : {
3009 if ( !video_out ) break;
3010 if ( video_out->control( VOCTRL_GET_PANSCAN,NULL ) == VO_TRUE )
3012 int abs= cmd->args[1].v.i;
3013 float v = cmd->args[0].v.f;
3014 float res;
3015 if(abs) res = v;
3016 else res = vo_panscan+v;
3017 vo_panscan = res > 1 ? 1 : res < 0 ? 0 : res;
3018 video_out->control( VOCTRL_SET_PANSCAN,NULL );
3019 #ifdef USE_OSD
3020 if(osd_level && sh_video){
3021 osd_visible=sh_video->fps; // 1 sec
3022 vo_osd_progbar_type=OSD_PANSCAN;
3023 vo_osd_progbar_value=vo_panscan*256;
3024 vo_osd_changed(OSDTYPE_PROGBAR);
3025 #ifdef HAVE_FREETYPE
3026 if (subtitle_autoscale == 2 || subtitle_autoscale == 3)
3027 // force scaling font to movie width or diagonal
3028 force_load_font = 1;
3029 #endif
3031 #endif
3033 } break;
3034 case MP_CMD_SUB_POS:
3036 #ifdef USE_SUB
3037 if (sh_video) {
3038 int v;
3039 v = cmd->args[0].v.i;
3041 sub_pos+=v;
3042 if(sub_pos >100) sub_pos=100;
3043 if(sub_pos <0) sub_pos=0;
3044 vo_osd_changed(OSDTYPE_SUBTITLE);
3045 osd_show_sub_pos = 9;
3047 #endif
3048 } break;
3049 case MP_CMD_SUB_ALIGNMENT:
3051 #ifdef USE_SUB
3052 if (sh_video) {
3053 if (cmd->nargs >= 1)
3054 sub_alignment = cmd->args[0].v.i;
3055 else
3056 sub_alignment = (sub_alignment+1) % 3;
3057 osd_show_sub_alignment = 9;
3058 vo_osd_changed(OSDTYPE_SUBTITLE);
3060 #endif
3061 } break;
3062 case MP_CMD_SUB_VISIBILITY:
3064 #ifdef USE_SUB
3065 if (sh_video) {
3066 sub_visibility=1-sub_visibility;
3067 osd_show_sub_visibility = 9; // show state of subtitle visibility in OSD
3068 vo_osd_changed(OSDTYPE_SUBTITLE);
3070 #endif
3071 } break;
3072 case MP_CMD_GET_SUB_VISIBILITY:
3074 #ifdef USE_SUB
3075 if (sh_video) {
3076 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_SUB_VISIBILITY=%ld\n", sub_visibility);
3078 #endif
3079 } break;
3080 case MP_CMD_VOBSUB_LANG:
3081 if (vo_vobsub)
3083 int new_id = vobsub_id + 1;
3084 if (vobsub_id < 0)
3085 new_id = 0;
3086 if ((unsigned int) new_id >= vobsub_get_indexes_count(vo_vobsub))
3087 new_id = -1;
3088 if(new_id != vobsub_id)
3089 osd_show_vobsub_changed = 9;
3090 vobsub_id = new_id;
3092 #ifdef USE_SUB
3093 else if (set_of_sub_size > 0){ //change subtitle file
3094 set_of_sub_pos = (set_of_sub_pos + 1) % set_of_sub_size;
3095 subdata = set_of_subtitles[set_of_sub_pos];
3096 osd_show_sub_changed = sh_video->fps;
3097 vo_sub = NULL;
3098 vo_osd_changed(OSDTYPE_SUBTITLE);
3100 #endif
3101 break;
3102 case MP_CMD_SUB_FORCED_ONLY:
3103 if (vo_spudec) {
3104 forced_subs_only = forced_subs_only ? 0 : ~0; // toggle state
3105 spudec_set_forced_subs_only(vo_spudec,forced_subs_only);
3107 break;
3108 case MP_CMD_SCREENSHOT :
3109 if(vo_config_count) video_out->control(VOCTRL_SCREENSHOT, NULL);
3110 break;
3111 case MP_CMD_VF_CHANGE_RECTANGLE:
3112 set_rectangle(sh_video, cmd->args[0].v.i, cmd->args[1].v.i);
3113 break;
3115 case MP_CMD_GET_TIME_LENGTH : {
3116 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_LENGTH=%ld\n", demuxer_get_time_length(demuxer));
3117 } break;
3119 case MP_CMD_GET_VO_FULLSCREEN : {
3120 if(video_out && vo_config_count)
3121 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_VO_FULLSCREEN=%ld\n", vo_fs);
3122 } break;
3124 case MP_CMD_GET_PERCENT_POS : {
3125 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ANS_PERCENT_POSITION=%ld\n", demuxer_get_percent_pos(demuxer));
3126 } break;
3128 #ifdef USE_DVDNAV
3129 case MP_CMD_DVDNAV_EVENT: {
3130 dvdnav_priv_t * dvdnav_priv = (dvdnav_priv_t*)(stream->priv);
3131 dvdnav_event_t * dvdnav_event = (dvdnav_event_t *)(cmd->args[0].v.v);
3133 /* ignore these events if we're not in dvd_nav mode */
3134 if (stream->type != STREAMTYPE_DVDNAV) break;
3136 if (!dvdnav_event) {
3137 printf("DVDNAV Event NULL?!\n");
3138 break;
3141 //printf("mplayer: got event: %d\n",dvdnav_event->event);
3143 switch (dvdnav_event->event) {
3144 case DVDNAV_BLOCK_OK: {
3145 /* be silent about this one */
3146 break;
3148 case DVDNAV_HIGHLIGHT: {
3149 dvdnav_highlight_event_t *hevent = (dvdnav_highlight_event_t*)(dvdnav_event->details);
3150 if (!hevent) {
3151 printf("DVDNAV Event: Highlight event broken\n");
3152 break;
3155 if (hevent->display && hevent->buttonN>0)
3157 //dvdnav_priv->seen_root_menu=1; /* if we got a highlight, we're on a menu */
3158 sprintf( dvd_nav_text, "Highlight button %d (%u,%u)-(%u,%u) PTS %d (now is %5.2f)",
3159 hevent->buttonN,
3160 hevent->sx,hevent->sy,
3161 hevent->ex,hevent->ey,
3162 hevent->pts, d_video->pts);
3163 printf("DVDNAV Event: %s\n",dvd_nav_text);
3164 //osd_show_dvd_nav_delay = 60;
3166 osd_show_dvd_nav_highlight=1;
3167 osd_show_dvd_nav_sx=hevent->sx;
3168 osd_show_dvd_nav_ex=hevent->ex;
3169 osd_show_dvd_nav_sy=hevent->sy;
3170 osd_show_dvd_nav_ey=hevent->ey;
3172 else {
3173 osd_show_dvd_nav_highlight=0;
3174 printf("DVDNAV Event: Highlight Hide\n");
3176 break;
3178 case DVDNAV_STILL_FRAME: {
3179 dvdnav_still_event_t *still_event = (dvdnav_still_event_t*)(dvdnav_event->details);
3181 printf( "######################################## DVDNAV Event: Still Frame: %d sec(s)\n", still_event->length );
3182 while (dvdnav_stream_sleeping(dvdnav_priv)) {
3183 usec_sleep(1000); /* 1ms */
3185 dvdnav_stream_sleep(dvdnav_priv,still_event->length);
3186 break;
3188 case DVDNAV_STOP: {
3189 printf( "DVDNAV Event: Nav Stop\n" );
3190 break;
3192 case DVDNAV_NOP: {
3193 printf("DVDNAV Event: Nav NOP\n");
3194 break;
3196 case DVDNAV_SPU_STREAM_CHANGE: {
3197 #if DVDNAVVERSION > 012
3198 dvdnav_spu_stream_change_event_t *stream_change = (dvdnav_spu_stream_change_event_t*)(dvdnav_event->details);
3200 printf("DVDNAV Event: Nav SPU Stream Change: phys: %d/%d/%d logical: %d\n",
3201 stream_change->physical_wide,
3202 stream_change->physical_letterbox,
3203 stream_change->physical_pan_scan,
3204 stream_change->logical);
3206 if (vo_spudec && dvdsub_id!=stream_change->physical_wide) {
3207 mp_msg(MSGT_INPUT,MSGL_DBG2,"d_dvdsub->id change: was %d is now %d\n",
3208 d_dvdsub->id,stream_change->physical_wide);
3209 // FIXME: need a better way to change SPU id
3210 d_dvdsub->id=dvdsub_id=stream_change->physical_wide;
3211 if (vo_spudec) spudec_reset(vo_spudec);
3213 #else
3214 dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details);
3216 printf("DVDNAV Event: Nav SPU Stream Change: phys: %d logical: %d\n",
3217 stream_change->physical,
3218 stream_change->logical);
3220 if (vo_spudec && dvdsub_id!=stream_change->physical) {
3221 mp_msg(MSGT_INPUT,MSGL_DBG2,"d_dvdsub->id change: was %d is now %d\n",
3222 d_dvdsub->id,stream_change->physical);
3223 // FIXME: need a better way to change SPU id
3224 d_dvdsub->id=dvdsub_id=stream_change->physical;
3225 if (vo_spudec) spudec_reset(vo_spudec);
3227 #endif
3228 break;
3230 case DVDNAV_AUDIO_STREAM_CHANGE: {
3231 int aid_temp;
3232 #if DVDNAVVERSION > 012
3233 dvdnav_audio_stream_change_event_t *stream_change = (dvdnav_audio_stream_change_event_t*)(dvdnav_event->details);
3234 #else
3235 dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details);
3236 #endif
3238 printf("DVDNAV Event: Nav Audio Stream Change: phys: %d logical: %d\n",
3239 stream_change->physical,
3240 stream_change->logical);
3242 aid_temp=stream_change->physical;
3243 if (aid_temp>=0) aid_temp+=128; // FIXME: is this sane?
3244 if (d_audio && audio_id!=aid_temp) {
3245 mp_msg(MSGT_INPUT,MSGL_DBG2,"d_audio->id change: was %d is now %d\n",
3246 d_audio->id,aid_temp);
3247 // FIXME: need a bettery way to change audio stream id
3248 d_audio->id=dvdsub_id=aid_temp;
3249 if(sh_audio) resync_audio_stream(sh_audio);
3252 break;
3254 case DVDNAV_VTS_CHANGE: {
3255 printf("DVDNAV Event: Nav VTS Change\n");
3256 break;
3258 case DVDNAV_CELL_CHANGE: {
3259 dvdnav_cell_change_event_t *cell_change = (dvdnav_cell_change_event_t*)(dvdnav_event->details);
3260 cell_playback_t * cell_playback = cell_change->new_cell;
3262 printf("DVDNAV Event: Nav Cell Change\n");
3263 osd_show_dvd_nav_highlight=0; /* screen changed, disable menu */
3265 printf("new still time: %d\n",cell_playback->still_time);
3266 printf("new cell_cmd_nr: %d\n",cell_playback->cell_cmd_nr);
3267 printf("new playback_time: %02d:%02d:%02d.%02d\n",
3268 cell_playback->playback_time.hour,
3269 cell_playback->playback_time.minute,
3270 cell_playback->playback_time.second,
3271 cell_playback->playback_time.frame_u);
3274 //rel_seek_secs=1; // not really: we can't seek, but it'll reset the muxer
3275 //abs_seek_pos=0;
3276 break;
3278 case DVDNAV_NAV_PACKET: {
3279 // printf("DVDNAV Event: Nav Packet\n");
3280 break;
3282 case DVDNAV_SPU_CLUT_CHANGE: {
3283 uint32_t * new_clut = (uint32_t *)(dvdnav_event->details);
3285 printf("DVDNAV Event: Nav SPU CLUT Change\n");
3286 // send new palette to SPU decoder
3287 if (vo_spudec) spudec_update_palette(vo_spudec,new_clut);
3289 break;
3291 case DVDNAV_SEEK_DONE: {
3292 printf("DVDNAV Event: Nav Seek Done\n");
3293 break;
3297 // free the dvdnav event
3298 free(dvdnav_event->details);
3299 free(dvdnav_event);
3300 cmd->args[0].v.v=NULL;
3302 case MP_CMD_DVDNAV: {
3303 dvdnav_priv_t * dvdnav_priv=(dvdnav_priv_t*)stream->priv;
3305 /* ignore these events if we're not in dvd_nav mode */
3306 if (stream->type != STREAMTYPE_DVDNAV) break;
3308 switch (cmd->args[0].v.i) {
3309 case MP_CMD_DVDNAV_UP:
3310 dvdnav_upper_button_select(dvdnav_priv->dvdnav);
3311 break;
3312 case MP_CMD_DVDNAV_DOWN:
3313 dvdnav_lower_button_select(dvdnav_priv->dvdnav);
3314 break;
3315 case MP_CMD_DVDNAV_LEFT:
3316 dvdnav_left_button_select(dvdnav_priv->dvdnav);
3317 break;
3318 case MP_CMD_DVDNAV_RIGHT:
3319 dvdnav_right_button_select(dvdnav_priv->dvdnav);
3320 break;
3321 case MP_CMD_DVDNAV_MENU:
3322 printf("Menu call\n");
3323 dvdnav_menu_call(dvdnav_priv->dvdnav,DVD_MENU_Root);
3324 break;
3325 case MP_CMD_DVDNAV_SELECT:
3326 dvdnav_button_activate(dvdnav_priv->dvdnav);
3327 break;
3328 default:
3329 mp_msg(MSGT_CPLAYER, MSGL_V, "Weird DVD Nav cmd %d\n",cmd->args[0].v.i);
3330 break;
3332 break;
3334 #endif
3335 default : {
3336 #ifdef HAVE_NEW_GUI
3337 if ( ( use_gui )&&( cmd->id > MP_CMD_GUI_EVENTS ) ) guiGetEvent( guiIEvent,(char *)cmd->id );
3338 else
3339 #endif
3340 mp_msg(MSGT_CPLAYER, MSGL_V, "Received unknown cmd %s\n",cmd->name);
3343 mp_cmd_free(cmd);
3347 if (seek_to_sec) {
3348 int a,b; float d;
3350 if (sscanf(seek_to_sec, "%d:%d:%f", &a,&b,&d)==3)
3351 rel_seek_secs += 3600*a +60*b +d ;
3352 else if (sscanf(seek_to_sec, "%d:%f", &a, &d)==2)
3353 rel_seek_secs += 60*a +d;
3354 else if (sscanf(seek_to_sec, "%f", &d)==1)
3355 rel_seek_secs += d;
3357 seek_to_sec = NULL;
3360 /* Looping. */
3361 if(eof==1 && loop_times>=0) {
3362 int l = loop_times;
3363 play_tree_iter_step(playtree_iter,0,0);
3364 loop_times = l;
3365 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d, eof = %d\n", loop_times,eof);
3367 if(loop_times>1) loop_times--; else
3368 if(loop_times==1) loop_times=-1;
3369 play_n_frames=play_n_frames_mf;
3370 eof=0;
3371 abs_seek_pos=3; rel_seek_secs=0; // seek to start of movie (0%)
3372 loop_seek = 1;
3375 if(rel_seek_secs || abs_seek_pos){
3376 current_module="seek";
3377 if(demux_seek(demuxer,rel_seek_secs,abs_seek_pos)){
3378 // success:
3379 /* FIXME there should be real seeking for vobsub */
3380 if(sh_video) sh_video->pts=d_video->pts;
3381 if (vo_vobsub)
3382 //vobsub_reset(vo_vobsub);
3383 vobsub_seek(vo_vobsub,sh_video->pts);
3384 #if 0
3385 if(sh_video && d_video->packs == 0)
3386 ds_fill_buffer(d_video);
3387 if(sh_audio){
3388 if(d_audio->packs == 0)
3389 ds_fill_buffer(d_audio);
3390 if(verbose>0){
3391 float a_pts=d_audio->pts;
3392 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
3393 mp_msg(MSGT_AVSYNC,MSGL_V,"SEEK: A: %5.3f V: %5.3f A-V: %5.3f \n",a_pts,d_video->pts,a_pts-d_video->pts);
3395 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A:%6.1f V:%6.1f A-V:%7.3f ct: ? \r",d_audio->pts,d_video->pts,0.0f);
3396 } else {
3397 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A: --- V:%6.1f \r",d_video->pts);
3399 #endif
3400 fflush(stdout);
3402 if(sh_video){
3403 current_module="seek_video_reset";
3404 if(vo_config_count) video_out->control(VOCTRL_RESET,NULL);
3407 if(sh_audio){
3408 current_module="seek_audio_reset";
3409 audio_out->reset(); // stop audio, throwing away buffered data
3411 #ifdef USE_OSD
3412 // Set OSD:
3413 if(osd_level && !loop_seek){
3414 #ifdef USE_EDL
3415 if( !edl_decision ) {
3416 #else
3417 if( 1 ) { // Let the compiler optimize this out
3418 #endif
3419 int len=((demuxer->movi_end-demuxer->movi_start)>>8);
3420 if (len>0 && sh_video){
3421 osd_visible=sh_video->fps; // 1 sec
3422 vo_osd_progbar_type=0;
3423 vo_osd_progbar_value=(demuxer->filepos-demuxer->movi_start)/len;
3424 vo_osd_changed(OSDTYPE_PROGBAR);
3428 #endif
3429 if(sh_video) {
3430 c_total=0;
3431 max_pts_correction=0.1;
3432 osd_visible=sh_video->fps; // to rewert to PLAY pointer after 1 sec
3433 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
3434 drop_frame_cnt=0;
3435 too_slow_frame_cnt=0;
3436 too_fast_frame_cnt=0;
3438 if(vo_spudec) spudec_reset(vo_spudec);
3441 #ifdef USE_EDL
3443 int x;
3444 if( !edl_decision ) {
3445 for( x = 0; x < num_edl_records; x++ ) { // FIXME: do binary search
3446 // Find first EDL entry where start follows current time
3447 if( edl_records[ x ].start_sec >= sh_video->pts && edl_records[ x ].action != EDL_MUTE ) {
3448 next_edl_record = &edl_records[ x ];
3449 break;
3452 } else {
3453 edl_decision = 0;
3456 #endif
3457 rel_seek_secs=0;
3458 abs_seek_pos=0;
3459 frame_time_remaining=0;
3460 current_module=NULL;
3461 loop_seek=0;
3464 #ifdef HAVE_NEW_GUI
3465 if(use_gui){
3466 guiEventHandling();
3467 if(demuxer->file_format==DEMUXER_TYPE_AVI && sh_video && sh_video->video.dwLength>2){
3468 // get pos from frame number / total frames
3469 guiIntfStruct.Position=(float)d_video->pack_no*100.0f/sh_video->video.dwLength;
3470 } else {
3471 off_t len = ( demuxer->movi_end - demuxer->movi_start );
3472 off_t pos = ( demuxer->file_format == DEMUXER_TYPE_AUDIO?stream->pos:demuxer->filepos );
3473 guiIntfStruct.Position=(len <= 0? 0.0f : ( pos - demuxer->movi_start ) * 100.0f / len );
3475 if ( sh_video ) guiIntfStruct.TimeSec=sh_video->pts;
3476 else if ( sh_audio ) guiIntfStruct.TimeSec=sh_audio->delay;
3477 guiIntfStruct.LengthInSec=demuxer_get_time_length(demuxer);
3478 guiGetEvent( guiReDraw,NULL );
3479 guiGetEvent( guiSetVolume,NULL );
3480 if(guiIntfStruct.Playing==0) break; // STOP
3481 if(guiIntfStruct.Playing==2) osd_function=OSD_PAUSE;
3482 if ( guiIntfStruct.DiskChanged || guiIntfStruct.NewPlay ) goto goto_next_file;
3483 #ifdef USE_DVDREAD
3484 if ( stream->type == STREAMTYPE_DVD )
3486 dvd_priv_t * dvdp = stream->priv;
3487 guiIntfStruct.DVD.current_chapter=dvd_chapter_from_cell(dvdp,guiIntfStruct.DVD.current_title-1, dvdp->cur_cell)+1;
3489 #endif
3491 #endif
3494 //================= Update OSD ====================
3495 #ifdef USE_OSD
3496 if(osd_level>=1 && sh_video){
3497 int pts=sh_video->pts;
3498 char osd_text_tmp[64];
3499 if(pts==osd_last_pts-1) ++pts; else osd_last_pts=pts;
3500 vo_osd_text=osd_text_buffer;
3501 #ifdef USE_DVDNAV
3502 if (osd_show_dvd_nav_delay) {
3503 snprintf(osd_text_tmp, 63, "DVDNAV: %s", dvd_nav_text);
3504 osd_show_dvd_nav_delay--;
3505 } else
3506 #endif
3507 #ifdef USE_TV
3508 if (osd_show_tv_channel && tv_channel_list) {
3509 snprintf(osd_text_tmp, 63, "Channel: %s", tv_channel_current->name);
3510 osd_show_tv_channel--;
3511 } else
3512 #endif
3513 if (osd_show_text) {
3514 snprintf(osd_text_tmp, 63, "%s", osd_show_text_buffer);
3515 osd_show_text--;
3516 } else
3517 if (osd_show_sub_visibility) {
3518 snprintf(osd_text_tmp, 63, "Subtitles: %sabled", sub_visibility?"en":"dis");
3519 osd_show_sub_visibility--;
3520 } else
3521 if (osd_show_vobsub_changed) {
3522 const char *language = "none";
3523 if (vo_vobsub && vobsub_id >= 0)
3524 language = vobsub_get_id(vo_vobsub, (unsigned int) vobsub_id);
3525 snprintf(osd_text_tmp, 63, "Subtitles: (%d) %s", vobsub_id, language ? language : "unknown");
3526 osd_show_vobsub_changed--;
3527 } else
3528 #ifdef USE_SUB
3529 if (osd_show_sub_changed) {
3530 char *tmp2;
3531 tmp = subdata->filename;
3532 if ((tmp2 = strrchr(tmp, '/'))) {
3533 tmp = tmp2+1;
3535 snprintf(osd_text_tmp, 63, "Sub: (%d) %s%s",
3536 set_of_sub_pos + 1,
3537 strlen(tmp) < 20 ? "" : "...",
3538 strlen(tmp) < 20 ? tmp : tmp+strlen(tmp)-19);
3539 osd_show_sub_changed--;
3540 } else
3541 #endif
3542 if (osd_show_sub_delay) {
3543 snprintf(osd_text_tmp, 63, "Sub delay: %d ms", ROUND(sub_delay*1000));
3544 osd_show_sub_delay--;
3545 } else
3546 if (osd_show_sub_pos) {
3547 snprintf(osd_text_tmp, 63, "Sub position: %d/100", sub_pos);
3548 osd_show_sub_pos--;
3549 } else
3550 if (osd_show_sub_alignment) {
3551 snprintf(osd_text_tmp, 63, "Sub alignment: %s",
3552 (sub_alignment == 2 ? "bottom" :
3553 (sub_alignment == 1 ? "center" : "top")));
3554 osd_show_sub_alignment--;
3555 } else
3556 if (osd_show_av_delay) {
3557 snprintf(osd_text_tmp, 63, "A-V delay: %d ms", ROUND(audio_delay*1000));
3558 osd_show_av_delay--;
3559 } else if (osd_show_ontop) {
3560 snprintf(osd_text_tmp, 63, "Stay on top: %sabled", vo_ontop?"en":"dis");
3561 osd_show_ontop--;
3562 } else if(osd_level>=2) {
3563 int len = demuxer_get_time_length(demuxer);
3564 int percentage = -1;
3565 char percentage_text[10];
3566 if (osd_show_percentage) {
3567 percentage = demuxer_get_percent_pos(demuxer);
3568 osd_show_percentage--;
3570 if (percentage >= 0)
3571 snprintf(percentage_text, 9, " (%d%%)", percentage);
3572 else
3573 percentage_text[0] = 0;
3574 if (osd_level == 3)
3575 snprintf(osd_text_tmp, 63, "%c %02d:%02d:%02d / %02d:%02d:%02d%s",osd_function,pts/3600,(pts/60)%60,pts%60,len/3600,(len/60)%60,len%60,percentage_text);
3576 else
3577 snprintf(osd_text_tmp, 63, "%c %02d:%02d:%02d%s",osd_function,pts/3600,(pts/60)%60,pts%60,percentage_text);
3578 } else osd_text_tmp[0]=0;
3580 if(strcmp(vo_osd_text, osd_text_tmp)) {
3581 strncpy(vo_osd_text, osd_text_tmp, 63);
3582 vo_osd_changed(OSDTYPE_OSD);
3584 } else {
3585 if(vo_osd_text) {
3586 vo_osd_text=NULL;
3587 vo_osd_changed(OSDTYPE_OSD);
3590 // for(i=1;i<=11;i++) osd_text_buffer[10+i]=i;osd_text_buffer[10+i]=0;
3591 // vo_osd_text=osd_text_buffer;
3592 #endif
3594 #ifdef USE_SUB
3595 // find sub
3596 if(subdata && sh_video->pts>0){
3597 float pts=sh_video->pts;
3598 if(sub_fps==0) sub_fps=sh_video->fps;
3599 current_module="find_sub";
3600 if (pts > sub_last_pts || pts < sub_last_pts-1.0 ) {
3601 find_sub(subdata, (pts+sub_delay) *
3602 (subdata->sub_uses_time ? 100. : sub_fps));
3603 // FIXME! frame counter...
3604 sub_last_pts = pts;
3606 current_module=NULL;
3608 #endif
3610 #ifdef HAVE_X11
3611 if (stop_xscreensaver && sh_video) {
3612 current_module="stop_xscreensaver";
3613 xscreensaver_heartbeat(sh_video->pts);
3614 current_module=NULL;
3616 #endif
3618 // DVD sub:
3619 if(vo_config_count && vo_spudec) {
3620 unsigned char* packet=NULL;
3621 int len,timestamp;
3622 current_module="spudec";
3623 spudec_heartbeat(vo_spudec,90000*sh_video->timer);
3624 // Get a sub packet from the dvd or a vobsub and make a timestamp relative to sh_video->timer
3625 while(1) {
3626 // Vobsub
3627 len = 0;
3628 if(vo_vobsub) {
3629 if(sh_video->pts+sub_delay>=0) {
3630 // The + next_frame_time is there because we'll display the sub at the next frame
3631 len = vobsub_get_packet(vo_vobsub,sh_video->pts+sub_delay+next_frame_time,(void**)&packet,&timestamp);
3632 if(len > 0) {
3633 timestamp -= (sh_video->pts + sub_delay - sh_video->timer)*90000;
3634 mp_dbg(MSGT_CPLAYER,MSGL_V,"\rVOB sub: len=%d v_pts=%5.3f v_timer=%5.3f sub=%5.3f ts=%d \n",len,sh_video->pts,sh_video->timer,timestamp / 90000.0,timestamp);
3637 } else {
3638 // DVD sub
3639 len = ds_get_packet_sub(d_dvdsub,(unsigned char**)&packet);
3640 if(len > 0) {
3641 float x = d_dvdsub->pts - sh_video->pts;
3642 if (x < -10 || x > 10) // prevent missing subs on pts reset
3643 timestamp = 90000*(sh_video->timer + d_dvdsub->pts + sub_delay - sh_video->pts);
3644 else timestamp = 90000*(sh_video->timer + sub_delay);
3645 mp_dbg(MSGT_CPLAYER,MSGL_V,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f ts=%d \n",len,sh_video->pts,d_dvdsub->pts,timestamp);
3648 if(len<=0 || !packet) break;
3649 if(timestamp < 0) timestamp = 0;
3650 else spudec_assemble(vo_spudec,packet,len,timestamp);
3653 /* detect wether the sub has changed or not */
3654 if(spudec_changed(vo_spudec))
3655 vo_osd_changed(OSDTYPE_SPU);
3656 current_module=NULL;
3659 } // while(!eof)
3661 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",eof);
3665 goto_next_file: // don't jump here after ao/vo/getch initialization!
3667 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
3669 if(benchmark){
3670 double tot=video_time_usage+vout_time_usage+audio_time_usage;
3671 double total_time_usage;
3672 total_time_usage_start=GetTimer()-total_time_usage_start;
3673 total_time_usage = (float)total_time_usage_start*0.000001;
3674 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
3675 video_time_usage,vout_time_usage,audio_time_usage,
3676 total_time_usage-tot,total_time_usage);
3677 if(total_time_usage>0.0)
3678 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
3679 100.0*video_time_usage/total_time_usage,
3680 100.0*vout_time_usage/total_time_usage,
3681 100.0*audio_time_usage/total_time_usage,
3682 100.0*(total_time_usage-tot)/total_time_usage,
3683 100.0);
3684 if(total_frame_cnt && frame_dropping)
3685 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
3686 total_frame_cnt-drop_frame_cnt,
3687 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
3688 drop_frame_cnt,
3689 100*drop_frame_cnt/total_frame_cnt,
3690 total_frame_cnt,
3691 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
3695 // time to uninit all, except global stuff:
3696 uninit_player(INITED_ALL-(INITED_GUI+INITED_INPUT+(fixed_vo?INITED_VO:0)));
3698 #ifdef USE_SUB
3699 if ( set_of_sub_size > 0 )
3701 current_module="sub_free";
3702 for (i = 0; i < set_of_sub_size; ++i)
3703 sub_free( set_of_subtitles[i] );
3704 set_of_sub_size = 0;
3705 vo_sub=NULL;
3706 subdata=NULL;
3708 #endif
3710 if(eof == PT_NEXT_ENTRY || eof == PT_PREV_ENTRY) {
3711 eof = eof == PT_NEXT_ENTRY ? 1 : -1;
3712 if(play_tree_iter_step(playtree_iter,play_tree_step,0) == PLAY_TREE_ITER_ENTRY) {
3713 eof = 1;
3714 } else {
3715 play_tree_iter_free(playtree_iter);
3716 playtree_iter = NULL;
3718 play_tree_step = 1;
3719 } else if (eof == PT_UP_NEXT || eof == PT_UP_PREV) {
3720 eof = eof == PT_UP_NEXT ? 1 : -1;
3721 if ( playtree_iter ) {
3722 if(play_tree_iter_up_step(playtree_iter,eof,0) == PLAY_TREE_ITER_ENTRY) {
3723 eof = 1;
3724 } else {
3725 play_tree_iter_free(playtree_iter);
3726 playtree_iter = NULL;
3729 } else { // NEXT PREV SRC
3730 eof = eof == PT_PREV_SRC ? -1 : 1;
3733 if(eof == 0) eof = 1;
3735 while(playtree_iter != NULL) {
3736 filename = play_tree_iter_get_file(playtree_iter,eof);
3737 if(filename == NULL) {
3738 if( play_tree_iter_step(playtree_iter,eof,0) != PLAY_TREE_ITER_ENTRY) {
3739 play_tree_iter_free(playtree_iter);
3740 playtree_iter = NULL;
3742 } else
3743 break;
3746 #ifdef HAVE_NEW_GUI
3747 if( use_gui && !playtree_iter )
3749 #ifdef USE_DVDREAD
3750 if ( !guiIntfStruct.DiskChanged )
3751 #endif
3752 mplEnd();
3754 #endif
3756 if(use_gui || playtree_iter != NULL){
3758 eof = 0;
3759 goto play_next_file;
3762 #ifdef HAVE_FREETYPE
3763 current_module="uninit_font";
3764 if (vo_font) free_font_desc(vo_font);
3765 vo_font = NULL;
3766 done_freetype();
3767 #endif
3769 exit_player_with_rc(MSGTR_Exit_eof, 0);
3771 return 1;