convert some printfs to mp_msg
[mplayer/glamo.git] / mplayer.c
blob4bf77a24223bc86aecdf4f606990ba59606518ef
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "config.h"
5 #ifdef WIN32
6 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/
7 #include <windows.h>
8 #endif
9 #include <string.h>
10 #include <unistd.h>
12 // #include <sys/mman.h>
13 #include <sys/types.h>
14 #ifndef __MINGW32__
15 #include <sys/ioctl.h>
16 #include <sys/wait.h>
17 #else
18 #define SIGHUP 1 /* hangup */
19 #define SIGQUIT 3 /* quit */
20 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
21 #define SIGBUS 10 /* bus error */
22 #define SIGPIPE 13 /* broken pipe */
23 extern int mp_input_win32_slave_cmd_func(int fd,char* dest,int size);
24 #endif
26 #include <sys/time.h>
27 #include <sys/stat.h>
29 #include <signal.h>
30 #include <time.h>
31 #include <fcntl.h>
32 #include <limits.h>
34 #include <errno.h>
36 #include "version.h"
38 #include "mp_msg.h"
40 #define HELP_MP_DEFINE_STATIC
41 #include "help_mp.h"
43 #include "m_option.h"
44 #include "m_config.h"
46 #include "cfg-mplayer-def.h"
48 #ifdef USE_SUB
49 #include "subreader.h"
50 #endif
52 #include "libvo/video_out.h"
54 #include "libvo/font_load.h"
55 #include "libvo/sub.h"
57 #ifdef HAVE_X11
58 #include "libvo/x11_common.h"
59 #endif
61 #include "libao2/audio_out.h"
63 #include "codec-cfg.h"
65 #ifdef USE_DVDNAV
66 #include <dvdnav.h>
67 #endif
69 #ifdef USE_EDL
70 #include "edl.h"
71 #endif
73 #include "spudec.h"
74 #include "vobsub.h"
76 #include "osdep/getch2.h"
77 #include "osdep/timer.h"
79 #include "cpudetect.h"
81 #ifdef HAVE_NEW_GUI
82 #include "Gui/interface.h"
83 #endif
85 #include "input/input.h"
87 int slave_mode=0;
88 int player_idle_mode=0;
89 extern int verbose;
90 int identify=0;
91 int quiet=0;
93 #ifdef WIN32
94 char * proc_priority=NULL;
95 #endif
97 #define ABS(x) (((x)>=0)?(x):(-(x)))
98 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
100 #ifdef HAVE_RTC
101 #ifdef __linux__
102 #include <linux/rtc.h>
103 #else
104 #include <rtc.h>
105 #define RTC_IRQP_SET RTCIO_IRQP_SET
106 #define RTC_PIE_ON RTCIO_PIE_ON
107 #endif /* __linux__ */
108 #endif /* HAVE_RTC */
110 #ifdef USE_TV
111 #include "libmpdemux/tv.h"
112 #endif
114 #ifdef HAS_DVBIN_SUPPORT
115 #include "libmpdemux/dvbin.h"
116 static int last_dvb_step = 1;
117 extern void cache_uninit(stream_t *s);
118 #endif
120 //**************************************************************************//
121 // Playtree
122 //**************************************************************************//
123 #include "playtree.h"
124 #include "playtreeparser.h"
126 #ifdef HAVE_NEW_GUI
127 extern int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config);
128 extern int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue);
129 #endif
131 play_tree_t* playtree;
132 play_tree_iter_t* playtree_iter = NULL;
134 #define PT_NEXT_ENTRY 1
135 #define PT_PREV_ENTRY -1
136 #define PT_NEXT_SRC 2
137 #define PT_PREV_SRC -2
138 #define PT_UP_NEXT 3
139 #define PT_UP_PREV -3
141 //**************************************************************************//
142 // Config
143 //**************************************************************************//
144 m_config_t* mconfig;
146 extern play_tree_t*
147 m_config_parse_mp_command_line(m_config_t *config, int argc, char **argv);
148 extern int
149 m_config_parse_config_file(m_config_t* config, char *conffile);
151 //**************************************************************************//
152 // Config file
153 //**************************************************************************//
155 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
157 static int cfg_include(m_option_t *conf, char *filename){
158 return m_config_parse_config_file(mconfig, filename);
161 #include "get_path.c"
163 //**************************************************************************//
164 // XScreensaver
165 //**************************************************************************//
167 #ifdef HAVE_X11
168 void xscreensaver_heartbeat(void);
169 #endif
171 //**************************************************************************//
172 //**************************************************************************//
173 // Input media streaming & demultiplexer:
174 //**************************************************************************//
176 static int max_framesize=0;
178 #include "libmpdemux/stream.h"
179 #include "libmpdemux/demuxer.h"
180 #include "libmpdemux/stheader.h"
181 //#include "parse_es.h"
182 #ifdef HAVE_MATROSKA
183 #include "libmpdemux/matroska.h"
184 #endif
186 #include "libmpcodecs/dec_audio.h"
187 #include "libmpcodecs/dec_video.h"
188 #include "libmpcodecs/mp_image.h"
189 #include "libmpcodecs/vf.h"
190 #include "libmpcodecs/vd.h"
192 extern void vf_list_plugins();
194 //**************************************************************************//
195 //**************************************************************************//
197 // Common FIFO functions, and keyboard/event FIFO code
198 #include "fifo.c"
199 int noconsolecontrols=0;
200 //**************************************************************************//
202 vo_functions_t *video_out=NULL;
203 ao_functions_t *audio_out=NULL;
205 int fixed_vo=0;
206 int eof=0;
208 // benchmark:
209 double video_time_usage=0;
210 double vout_time_usage=0;
211 static double audio_time_usage=0;
212 static int total_time_usage_start=0;
213 static int total_frame_cnt=0;
214 static int drop_frame_cnt=0; // total number of dropped frames
215 int benchmark=0;
217 // options:
218 int auto_quality=0;
219 static int output_quality=0;
221 float playback_speed=1.0;
223 int use_gui=0;
225 #ifdef HAVE_NEW_GUI
226 int enqueue=0;
227 #endif
229 #define MAX_OSD_LEVEL 3
230 #define MAX_TERM_OSD_LEVEL 1
232 int osd_level=1;
233 int osd_level_saved=-1;
234 int osd_visible=100;
235 static int osd_function=OSD_PLAY;
236 static int osd_show_percentage = 0;
237 static int osd_duration = 1000;
239 static int term_osd = 1;
240 static char* term_osd_esc = "\x1b[A\r\x1b[K";
241 // seek:
242 static char *seek_to_sec=NULL;
243 static off_t seek_to_byte=0;
244 static off_t step_sec=0;
245 static int loop_times=-1;
246 static int loop_seek=0;
248 // A/V sync:
249 int autosync=0; // 30 might be a good default value.
251 // may be changed by GUI: (FIXME!)
252 float rel_seek_secs=0;
253 int abs_seek_pos=0;
255 // codecs:
256 char **audio_codec_list=NULL; // override audio codec
257 char **video_codec_list=NULL; // override video codec
258 char **audio_fm_list=NULL; // override audio codec family
259 char **video_fm_list=NULL; // override video codec family
261 // demuxer:
262 extern char *demuxer_name; // override demuxer
263 extern char *audio_demuxer_name; // override audio demuxer
264 extern char *sub_demuxer_name; // override sub demuxer
266 // streaming:
267 int audio_id=-1;
268 int video_id=-1;
269 int dvdsub_id=-1;
270 int vobsub_id=-1;
271 char* audio_lang=NULL;
272 char* dvdsub_lang=NULL;
273 static char* spudec_ifo=NULL;
274 char* filename=NULL; //"MI2-Trailer.avi";
275 int forced_subs_only=0;
277 // cache2:
278 int stream_cache_size=-1;
279 #ifdef USE_STREAM_CACHE
280 extern int cache_fill_status;
282 float stream_cache_min_percent=20.0;
283 float stream_cache_seek_min_percent=50.0;
284 #else
285 #define cache_fill_status 0
286 #endif
288 // dump:
289 static char *stream_dump_name="stream.dump";
290 int stream_dump_type=0;
292 // A-V sync:
293 static float default_max_pts_correction=-1;//0.01f;
294 static float max_pts_correction=0;//default_max_pts_correction;
295 static float c_total=0;
296 float audio_delay=0;
298 static int softsleep=0;
300 float force_fps=0;
301 static int force_srate=0;
302 static int audio_output_format=0;
303 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
304 static int play_n_frames=-1;
305 static int play_n_frames_mf=-1;
307 // screen info:
308 char** video_driver_list=NULL;
309 char** audio_driver_list=NULL;
311 extern char *vo_subdevice;
312 extern char *ao_subdevice;
314 // codec outfmt flags (defined in libmpcodecs/vd.c)
315 extern int vo_flags;
317 // sub:
318 char *font_name=NULL;
319 #ifdef HAVE_FONTCONFIG
320 extern int font_fontconfig;
321 #endif
322 float font_factor=0.75;
323 char **sub_name=NULL;
324 float sub_delay=0;
325 float sub_fps=0;
326 int sub_auto = 1;
327 char *vobsub_name=NULL;
328 /*DSP!!char *dsp=NULL;*/
329 int subcc_enabled=0;
330 int suboverlap_enabled = 1;
331 #ifdef USE_SUB
332 sub_data* set_of_subtitles[MAX_SUBTITLE_FILES];
333 int set_of_sub_size = 0;
334 int set_of_sub_pos = -1;
335 float sub_last_pts = -303;
336 #endif
337 int global_sub_size = 0; // this encompasses all subtitle sources
338 int global_sub_pos = -1; // this encompasses all subtitle sources
339 #define SUB_SOURCE_SUBS 0
340 #define SUB_SOURCE_VOBSUB 1
341 #define SUB_SOURCE_DEMUX 2
342 #define SUB_SOURCES 3
343 int global_sub_indices[SUB_SOURCES];
344 int global_sub_quiet_osd_hack = 0;
346 extern int mp_msg_levels[MSGT_MAX];
347 extern int mp_msg_level_all;
349 static stream_t* stream=NULL;
350 static demuxer_t *demuxer=NULL;
351 static sh_audio_t *sh_audio=NULL;
352 static sh_video_t *sh_video=NULL;
354 char* current_module=NULL; // for debugging
356 extern int vo_gamma_gamma;
357 extern int vo_gamma_brightness;
358 extern int vo_gamma_contrast;
359 extern int vo_gamma_saturation;
360 extern int vo_gamma_hue;
362 // ---
364 #ifdef HAVE_MENU
365 #include "m_struct.h"
366 #include "libmenu/menu.h"
367 extern void vf_menu_pause_update(struct vf_instance_s* vf);
368 extern vf_info_t vf_info_menu;
369 static vf_info_t* libmenu_vfs[] = {
370 &vf_info_menu,
371 NULL
373 static vf_instance_t* vf_menu = NULL;
374 static int use_menu = 0;
375 static char* menu_cfg = NULL;
376 static char* menu_root = "main";
377 #endif
380 #ifdef HAVE_RTC
381 static int nortc;
382 static char* rtc_device;
383 #endif
385 #ifdef USE_EDL
386 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
387 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
388 short user_muted = 0; ///< Stores whether User wanted muted mode.
389 short edl_muted = 0; ///< Stores whether EDL is currently in muted mode.
390 short edl_decision = 0; ///< 1 when an EDL operation has been made
391 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode
392 #endif
394 static unsigned int inited_flags=0;
395 #define INITED_VO 1
396 #define INITED_AO 2
397 #define INITED_GUI 4
398 #define INITED_GETCH2 8
399 #define INITED_SPUDEC 32
400 #define INITED_STREAM 64
401 #define INITED_INPUT 128
402 #define INITED_VOBSUB 256
403 #define INITED_DEMUXER 512
404 #define INITED_ACODEC 1024
405 #define INITED_VCODEC 2048
406 #define INITED_ALL 0xFFFF
408 static void uninit_player(unsigned int mask){
409 mask=inited_flags&mask;
411 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
413 if(mask&INITED_ACODEC){
414 inited_flags&=~INITED_ACODEC;
415 current_module="uninit_acodec";
416 if(sh_audio) uninit_audio(sh_audio);
417 #ifdef HAVE_NEW_GUI
418 guiGetEvent(guiSetAfilter, (char *)NULL);
419 #endif
420 sh_audio=NULL;
423 if(mask&INITED_VCODEC){
424 inited_flags&=~INITED_VCODEC;
425 current_module="uninit_vcodec";
426 if(sh_video) uninit_video(sh_video);
427 sh_video=NULL;
428 #ifdef HAVE_MENU
429 vf_menu=NULL;
430 #endif
433 if(mask&INITED_DEMUXER){
434 inited_flags&=~INITED_DEMUXER;
435 current_module="free_demuxer";
436 if(demuxer){
437 stream=demuxer->stream;
438 free_demuxer(demuxer);
440 demuxer=NULL;
443 // kill the cache process:
444 if(mask&INITED_STREAM){
445 inited_flags&=~INITED_STREAM;
446 current_module="uninit_stream";
447 if(stream) free_stream(stream);
448 stream=NULL;
451 if(mask&INITED_VO){
452 inited_flags&=~INITED_VO;
453 current_module="uninit_vo";
454 video_out->uninit();
455 video_out=NULL;
458 // must be after libvo uninit, as few vo drivers (svgalib) has tty code
459 if(mask&INITED_GETCH2){
460 inited_flags&=~INITED_GETCH2;
461 current_module="uninit_getch2";
462 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
463 // restore terminal:
464 getch2_disable();
467 if(mask&INITED_VOBSUB){
468 inited_flags&=~INITED_VOBSUB;
469 current_module="uninit_vobsub";
470 if(vo_vobsub) vobsub_close(vo_vobsub);
471 vo_vobsub=NULL;
474 if (mask&INITED_SPUDEC){
475 inited_flags&=~INITED_SPUDEC;
476 current_module="uninit_spudec";
477 spudec_free(vo_spudec);
478 vo_spudec=NULL;
481 if(mask&INITED_AO){
482 inited_flags&=~INITED_AO;
483 current_module="uninit_ao";
484 audio_out->uninit(eof?0:1); audio_out=NULL;
487 #ifdef HAVE_NEW_GUI
488 if(mask&INITED_GUI){
489 inited_flags&=~INITED_GUI;
490 current_module="uninit_gui";
491 guiDone();
493 #endif
495 if(mask&INITED_INPUT){
496 inited_flags&=~INITED_INPUT;
497 current_module="uninit_input";
498 mp_input_uninit();
501 current_module=NULL;
504 static void exit_player_with_rc(char* how, int rc){
506 uninit_player(INITED_ALL);
507 #ifdef HAVE_X11
508 #ifdef HAVE_NEW_GUI
509 if ( !use_gui )
510 #endif
511 vo_uninit(); // close the X11 connection (if any opened)
512 #endif
514 #ifdef HAVE_FREETYPE
515 current_module="uninit_font";
516 if (vo_font) free_font_desc(vo_font);
517 vo_font = NULL;
518 done_freetype();
519 #endif
520 free_osd_list();
522 current_module="exit_player";
524 // free mplayer config
525 if(mconfig)
526 m_config_free(mconfig);
528 if(playtree)
529 play_tree_free(playtree, 1);
532 #ifdef USE_EDL
533 if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
534 #endif
535 if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,mp_gettext(how));
536 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
538 exit(rc);
541 void exit_player(char* how){
542 exit_player_with_rc(how, 1);
545 #ifndef __MINGW32__
546 static void child_sighandler(int x){
547 pid_t pid;
548 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
550 #endif
552 #ifdef CRASH_DEBUG
553 static char *prog_path;
554 static int crash_debug = 0;
555 #endif
557 static void exit_sighandler(int x){
558 static int sig_count=0;
559 #ifdef CRASH_DEBUG
560 if (!crash_debug || x != SIGTRAP)
561 #endif
562 ++sig_count;
563 if(inited_flags==0 && sig_count>1) exit(1);
564 if(sig_count==5)
566 /* We're crashing bad and can't uninit cleanly :(
567 * by popular request, we make one last (dirty)
568 * effort to restore the user's
569 * terminal. */
570 getch2_disable();
571 exit(1);
573 if(sig_count==6) exit(1);
574 if(sig_count>6){
575 // can't stop :(
576 #ifndef __MINGW32__
577 kill(getpid(),SIGKILL);
578 #endif
580 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x,
581 current_module?current_module:mp_gettext("unknown")
583 if (identify)
584 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SIGNAL=%d\n", x);
585 if(sig_count<=1)
586 switch(x){
587 case SIGINT:
588 case SIGQUIT:
589 case SIGTERM:
590 case SIGKILL:
591 break; // killed from keyboard (^C) or killed [-9]
592 case SIGILL:
593 #ifdef RUNTIME_CPUDETECT
594 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL_RTCpuSel);
595 #else
596 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL);
597 #endif
598 case SIGFPE:
599 case SIGSEGV:
600 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGSEGV_SIGFPE);
601 default:
602 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGCRASH);
603 #ifdef CRASH_DEBUG
604 if (crash_debug) {
605 int gdb_pid;
606 char spid[20];
607 snprintf(spid, 19, "%i", getpid());
608 spid[19] = 0;
609 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
610 gdb_pid = fork();
611 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
612 if (gdb_pid == 0) { // We are the child
613 if (execlp("gdb", "gdb", prog_path, spid, NULL) == -1)
614 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
615 } else if (gdb_pid < 0)
616 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
617 else {
618 waitpid(gdb_pid, NULL, 0);
620 if (x == SIGTRAP) return;
622 #endif
624 exit_player(NULL);
627 //extern void write_avi_header_1(FILE *f,int fcc,float fps,int width,int height);
629 extern void mp_input_register_options(m_config_t* cfg);
631 #include "mixer.h"
632 mixer_t mixer;
633 /// step size of mixer changes
634 int volstep = 3;
636 #include "cfg-mplayer.h"
638 void parse_cfgfiles( m_config_t* conf )
640 char *conffile;
641 int conffile_fd;
642 if (m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
643 exit_player(NULL);
644 if ((conffile = get_path("")) == NULL) {
645 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
646 } else {
647 #ifdef __MINGW32__
648 mkdir(conffile);
649 #else
650 mkdir(conffile, 0777);
651 #endif
652 free(conffile);
653 if ((conffile = get_path("config")) == NULL) {
654 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
655 } else {
656 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
657 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);
658 write(conffile_fd, default_config, strlen(default_config));
659 close(conffile_fd);
661 if (m_config_parse_config_file(conf, conffile) < 0)
662 exit_player(NULL);
663 free(conffile);
668 void load_per_file_config (m_config_t* conf, const char *const file)
670 char *confpath;
671 char cfg[strlen(file)+10];
672 struct stat st;
673 char *name;
675 sprintf (cfg, "%s.conf", file);
677 if (!stat (cfg, &st))
679 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, cfg);
680 m_config_parse_config_file (conf, cfg);
681 return;
684 if ((name = strrchr (cfg, '/')) == NULL)
685 name = cfg;
686 else
687 name++;
689 if ((confpath = get_path (name)) != NULL)
691 if (!stat (confpath, &st))
693 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, confpath);
694 m_config_parse_config_file (conf, confpath);
697 free (confpath);
701 // When libmpdemux perform a blocking operation (network connection or cache filling)
702 // if the operation fail we use this function to check if it was interrupted by the user.
703 // The function return a new value for eof.
704 static int libmpdemux_was_interrupted(int eof) {
705 mp_cmd_t* cmd;
706 if((cmd = mp_input_get_cmd(0,0,0)) != NULL) {
707 switch(cmd->id) {
708 case MP_CMD_QUIT:
709 exit_player_with_rc(MSGTR_Exit_quit, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
710 case MP_CMD_PLAY_TREE_STEP: {
711 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
712 } break;
713 case MP_CMD_PLAY_TREE_UP_STEP: {
714 eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
715 } break;
716 case MP_CMD_PLAY_ALT_SRC_STEP: {
717 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
718 } break;
720 mp_cmd_free(cmd);
722 return eof;
725 #define mp_basename2(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
726 #define mp_basename(s) (strrchr(s,'\\')==NULL?(mp_basename2(s)):(strrchr(s,'\\')+1))
728 int playtree_add_playlist(play_tree_t* entry)
730 play_tree_add_bpf(entry,filename);
732 #ifdef HAVE_NEW_GUI
733 if (use_gui) {
734 if (entry) {
735 import_playtree_playlist_into_gui(entry, mconfig);
736 play_tree_free_list(entry,1);
738 } else
739 #endif
741 if(!entry) {
742 entry = playtree_iter->tree;
743 if(play_tree_iter_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
744 return PT_NEXT_ENTRY;
746 if(playtree_iter->tree == entry ) { // Loop with a single file
747 if(play_tree_iter_up_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
748 return PT_NEXT_ENTRY;
751 play_tree_remove(entry,1,1);
752 return PT_NEXT_SRC;
754 play_tree_insert_entry(playtree_iter->tree,entry);
755 play_tree_set_params_from(entry,playtree_iter->tree);
756 entry = playtree_iter->tree;
757 if(play_tree_iter_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
758 return PT_NEXT_ENTRY;
760 play_tree_remove(entry,1,1);
762 return PT_NEXT_SRC;
765 static int play_tree_step = 1;
767 int sub_source()
769 int source = -1;
770 int top = -1;
771 int i;
772 for (i = 0; i < SUB_SOURCES; i++) {
773 int j = global_sub_indices[i];
774 if ((j >= 0) && (j > top) && (global_sub_pos >= j)) {
775 source = i;
776 top = j;
779 return source;
782 #ifdef USE_SUB
784 sub_data* subdata = NULL;
785 static subtitle* vo_sub_last = NULL;
787 void add_subtitles(char *filename, float fps, int silent)
789 sub_data *subd;
791 if (filename == NULL) {
792 return;
795 subd = sub_read_file(filename, fps);
796 if(!subd && !silent)
797 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CantLoadSub, filename);
798 if (subd == NULL || set_of_sub_size >= MAX_SUBTITLE_FILES) return;
799 set_of_subtitles[set_of_sub_size] = subd;
800 if (identify)
802 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", set_of_sub_size);
803 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n", filename);
805 ++set_of_sub_size;
806 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AddedSubtitleFile, set_of_sub_size, filename);
809 // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken.
810 void update_set_of_subtitles()
811 // subdata was changed, set_of_sub... have to be updated.
813 int i;
814 if (set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted
815 for (i = set_of_sub_pos + 1; i < set_of_sub_size; ++i)
816 set_of_subtitles[i-1] = set_of_subtitles[i];
817 set_of_subtitles[set_of_sub_size-1] = NULL;
818 --set_of_sub_size;
819 if (set_of_sub_size > 0) subdata = set_of_subtitles[set_of_sub_pos=0];
821 else if (set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed
822 set_of_subtitles[set_of_sub_pos] = subdata;
824 else if (set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added
825 set_of_subtitles[set_of_sub_pos=set_of_sub_size] = subdata;
826 ++set_of_sub_size;
829 #endif /* USE_SUB */
832 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
833 * make it all work is to use the builtin SDL-bootstrap code, which
834 * will be done automatically by replacing our main() if we include SDL.h.
836 #if defined(SYS_DARWIN) && defined(HAVE_SDL)
837 #include <SDL.h>
838 #endif
841 * \brief append a formatted string
842 * \param buf buffer to print into
843 * \param pos position of terminating 0 in buf
844 * \param len maximum number of characters in buf, not including terminating 0
845 * \param format printf format string
847 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
849 va_list va;
850 va_start(va, format);
851 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
852 va_end(va);
853 if (*pos >= len ) {
854 buf[len] = 0;
855 *pos = len;
860 * \brief append time in the hh:mm:ss.f format
861 * \param buf buffer to print into
862 * \param pos position of terminating 0 in buf
863 * \param len maximum number of characters in buf, not including terminating 0
864 * \param time time value to convert/append
866 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
867 long tenths = 10 * time;
868 int f1 = tenths % 10;
869 int ss = (tenths / 10) % 60;
870 int mm = (tenths / 600) % 60;
871 int hh = tenths / 36000;
872 if (time <= 0) {
873 saddf(buf, pos, len, "unknown");
874 return;
876 if (hh > 0)
877 saddf(buf, pos, len, "%2d:", hh);
878 if (hh > 0 || mm > 0)
879 saddf(buf, pos, len, "%02d:", mm);
880 saddf(buf, pos, len, "%02d.%1d", ss, f1);
884 * \brief print the status line
885 * \param a_pos audio position
886 * \param a_v A-V desynchronization
887 * \param corr amount out A-V synchronization
889 static void print_status(float a_pos, float a_v, float corr)
891 int width;
892 char *line;
893 unsigned pos = 0;
894 get_screen_size();
895 if (screen_width > 0)
896 width = screen_width;
897 else
898 width = 80;
899 #ifdef WIN32
900 // windows command line is broken (MinGW's rxvt works though, but we
901 // should not depend on that).
902 width--;
903 #endif
904 line = malloc(width + 1); // one additional for terminating null
906 // Audio time
907 if (sh_audio) {
908 saddf(line, &pos, width, "A:%6.1f ", a_pos);
909 if (!sh_video) {
910 float len = demuxer_get_time_length(demuxer);
911 saddf(line, &pos, width, "(");
912 sadd_hhmmssf(line, &pos, width, a_pos);
913 saddf(line, &pos, width, ") of %.1f (", len);
914 sadd_hhmmssf(line, &pos, width, len);
915 saddf(line, &pos, width, ") ");
919 // Video time
920 if (sh_video)
921 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
923 // A-V sync
924 if (sh_audio && sh_video)
925 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ", a_v, corr);
927 // Video stats
928 if (sh_video)
929 saddf(line, &pos, width, "%3d/%3d ",
930 (int)sh_video->num_frames,
931 (int)sh_video->num_frames_decoded);
933 // CPU usage
934 if (sh_video) {
935 if (sh_video->timer > 0.5)
936 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
937 (int)(100.0*video_time_usage*playback_speed/(double)sh_video->timer),
938 (int)(100.0*vout_time_usage*playback_speed/(double)sh_video->timer),
939 (100.0*audio_time_usage*playback_speed/(double)sh_video->timer));
940 else
941 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
942 } else if (sh_audio) {
943 if (sh_audio->delay > 0.5)
944 saddf(line, &pos, width, "%4.1f%% ",
945 100.0*audio_time_usage/(double)sh_audio->delay);
946 else
947 saddf(line, &pos, width, "??,?%% ");
950 // VO stats
951 if (sh_video)
952 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
954 #ifdef USE_STREAM_CACHE
955 // cache stats
956 if (stream_cache_size > 0)
957 saddf(line, &pos, width, "%d%% ", cache_fill_status);
958 #endif
960 // other
961 if (playback_speed != 1)
962 saddf(line, &pos, width, "%4.2fx ", playback_speed);
964 // end
965 if (erase_to_end_of_line) {
966 line[pos] = 0;
967 mp_msg(MSGT_AVSYNC, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
968 } else {
969 memset(&line[pos], ' ', width - pos);
970 line[width] = 0;
971 mp_msg(MSGT_AVSYNC, MSGL_STATUS, "%s\r", line);
973 free(line);
977 * \brief build a chain of audio filters that converts the input format
978 * to the ao's format, taking into account the current playback_speed.
979 * \param sh_audio describes the requested input format of the chain.
980 * \param ao_data describes the requested output format of the chain.
982 static int build_afilter_chain(sh_audio_t *sh_audio, ao_data_t *ao_data)
984 int new_srate;
985 int result;
986 if (!sh_audio)
988 #ifdef HAVE_NEW_GUI
989 guiGetEvent(guiSetAfilter, (char *)NULL);
990 #endif
991 mixer.afilter = NULL;
992 return 0;
994 new_srate = sh_audio->samplerate * playback_speed;
995 if (new_srate != ao_data->samplerate) {
996 // limits are taken from libaf/af_resample.c
997 if (new_srate < 8000)
998 new_srate = 8000;
999 if (new_srate > 192000)
1000 new_srate = 192000;
1001 playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1003 result = init_audio_filters(sh_audio, new_srate,
1004 sh_audio->channels, sh_audio->sample_format,
1005 &ao_data->samplerate, &ao_data->channels, &ao_data->format,
1006 ao_data->outburst * 4, ao_data->buffersize);
1007 mixer.afilter = sh_audio->afilter;
1008 #ifdef HAVE_NEW_GUI
1009 guiGetEvent(guiSetAfilter, (char *)sh_audio->afilter);
1010 #endif
1011 return result;
1014 #ifdef USE_SUB
1016 * \brief Log the currently displayed subtitle to a file
1018 * Logs the current or last displayed subtitle together with filename
1019 * and time information to ~/.mplayer/subtitle_log
1021 * Intended purpose is to allow convenient marking of bogus subtitles
1022 * which need to be fixed while watching the movie.
1025 static void log_sub(){
1026 char *fname;
1027 FILE *f;
1028 int i;
1030 if (subdata == NULL || vo_sub_last == NULL) return;
1031 fname = get_path("subtitle_log");
1032 f = fopen(fname, "a");
1033 if (!f) return;
1034 fprintf(f, "----------------------------------------------------------\n");
1035 if (subdata->sub_uses_time) {
1036 fprintf(f, "N: %s S: %02d:%02d:%02d.%02d E: %02d:%02d:%02d.%02d\n", filename,
1037 vo_sub_last->start/360000, (vo_sub_last->start/6000)%60,
1038 (vo_sub_last->start/100)%60, vo_sub_last->start%100,
1039 vo_sub_last->end/360000, (vo_sub_last->end/6000)%60,
1040 (vo_sub_last->end/100)%60, vo_sub_last->end%100);
1041 } else {
1042 fprintf(f, "N: %s S: %d E: %d\n", filename, vo_sub_last->start, vo_sub_last->end);
1044 for (i = 0; i < vo_sub_last->lines; i++) {
1045 fprintf(f, "%s\n", vo_sub_last->text[i]);
1047 fclose(f);
1049 #endif /* USE_SUB */
1051 #define OSD_MSG_TV_CHANNEL 0
1052 #define OSD_MSG_TEXT 1
1053 #define OSD_MSG_SUB_DELAY 2
1054 #define OSD_MSG_SPEED 3
1055 #define OSD_MSG_OSD_STATUS 4
1056 #define OSD_MSG_BAR 5
1057 #define OSD_MSG_PAUSE 6
1059 // These will later be implemented via properties and removed
1060 #define OSD_MSG_AV_DELAY 100
1061 #define OSD_MSG_FRAMEDROPPING 101
1062 #define OSD_MSG_ONTOP 102
1063 #define OSD_MSG_ROOTWIN 103
1064 #define OSD_MSG_BORDER 104
1065 #define OSD_MSG_SUB_POS 105
1066 #define OSD_MSG_SUB_ALIGN 106
1067 #define OSD_MSG_SUB_VISIBLE 107
1068 #define OSD_MSG_SUB_CHANGED 108
1070 typedef struct mp_osd_msg mp_osd_msg_t;
1071 struct mp_osd_msg {
1072 mp_osd_msg_t* prev;
1073 char msg[64];
1074 int id,level,started;
1075 unsigned time; // Display duration in ms
1078 static mp_osd_msg_t* osd_msg_stack = NULL;
1081 * \brief Add a message on the OSD message stack
1083 * If a message with the same id is already present in the stack
1084 * it is pulled on top of the stack, otherwise a new message is created.
1088 static void set_osd_msg(int id, int level, int time, char* fmt, ...) {
1089 mp_osd_msg_t *msg,*last=NULL;
1090 va_list va;
1092 // look if the id is already in the stack
1093 for(msg = osd_msg_stack ; msg && msg->id != id ;
1094 last = msg, msg = msg->prev);
1095 // not found: alloc it
1096 if(!msg) {
1097 msg = calloc(1,sizeof(mp_osd_msg_t));
1098 msg->prev = osd_msg_stack;
1099 osd_msg_stack = msg;
1100 } else if(last) { // found, but it's not on top of the stack
1101 last->prev = msg->prev;
1102 msg->prev = osd_msg_stack;
1103 osd_msg_stack = msg;
1105 // write the msg
1106 va_start(va,fmt);
1107 vsnprintf(msg->msg, 63, fmt, va);
1108 va_end(va);
1109 // set id and time
1110 msg->id = id;
1111 msg->level = level;
1112 msg->time = time;
1117 * \brief Remove a message from the OSD stack
1119 * This function can be used to get rid of a message right away.
1123 static void rm_osd_msg(int id) {
1124 mp_osd_msg_t *msg,*last=NULL;
1126 // Search for the msg
1127 for(msg = osd_msg_stack ; msg && msg->id != id ;
1128 last = msg, msg = msg->prev);
1129 if(!msg) return;
1131 // Detach it from the stack and free it
1132 if(last)
1133 last->prev = msg->prev;
1134 else
1135 osd_msg_stack = msg->prev;
1136 free(msg);
1140 * \brief Get the current message fron the OSD stack
1142 * This function decrement the message timer and destroy the old ones.
1143 * The message that should be displayed is returned (if any).
1147 static mp_osd_msg_t* get_osd_msg(void) {
1148 mp_osd_msg_t *msg,*prev,*last = NULL;
1149 static unsigned last_update = 0;
1150 unsigned now = GetTimerMS();
1151 unsigned diff;
1152 char hidden_dec_done = 0;
1154 if(!last_update) last_update = now;
1155 diff = now >= last_update ? now - last_update : 0;
1157 last_update = now;
1159 // look for the first message in the stack with high enouth level
1160 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1161 prev = msg->prev;
1162 if(msg->level > osd_level && hidden_dec_done) continue;
1163 // The message have an high enouth level or it is the first hidden one
1164 // in both case we decrement the timer or kill it
1165 if(!msg->started || msg->time > diff) {
1166 if(msg->started) msg->time -= diff;
1167 else msg->started = 1;
1168 // display it
1169 if(msg->level <= osd_level) return msg;
1170 hidden_dec_done = 1;
1171 continue;
1173 // kill the message
1174 free(msg);
1175 if(last) {
1176 last->prev = prev;
1177 msg = last;
1178 } else {
1179 osd_msg_stack = prev;
1180 msg = NULL;
1183 // Nothing found
1184 return NULL;
1187 // Make a define to test if we are using the term osd without having
1188 // to #ifdef USE_OSD all the time.
1189 #ifdef USE_OSD
1190 #define use_term_osd (term_osd && !sh_video)
1191 #else
1192 #define use_term_osd (term_osd)
1193 #endif
1196 * \brief Display the OSD bar.
1198 * Display the osd bar or fallback on a simple message.
1202 void set_osd_bar(int type,char* name,double min,double max,double val) {
1204 if(osd_level < 1) return;
1206 #ifdef USE_OSD
1207 if(sh_video) {
1208 osd_visible = sh_video->fps;
1209 vo_osd_progbar_type = type;
1210 vo_osd_progbar_value = 256*(val-min)/(max-min);
1211 vo_osd_changed(OSDTYPE_PROGBAR);
1212 return;
1214 #endif
1216 set_osd_msg(OSD_MSG_BAR,1,osd_duration,"%s: %d %%",
1217 name,ROUND(100*(val-min)/(max-min)));
1222 * \brief Update the OSD message line.
1224 * This function display the current message on the vo osd or on the term.
1225 * If the stack is empty and the osd level is high enouth the timer
1226 * is displayed (only on the vo osd).
1230 static void update_osd_msg(void) {
1231 mp_osd_msg_t *msg;
1232 static char osd_text[64] = "";
1233 static char osd_text_timer[64];
1235 #ifdef USE_OSD
1236 // we need some mem for vo_osd_text
1237 vo_osd_text = (unsigned char*)osd_text;
1238 #endif
1240 // Look if we have a msg
1241 if((msg = get_osd_msg())) {
1242 if(strcmp(osd_text,msg->msg)) {
1243 strncpy((char*)osd_text, msg->msg, 63);
1244 #ifdef USE_OSD
1245 if(sh_video) vo_osd_changed(OSDTYPE_OSD); else
1246 #endif
1247 if(term_osd) printf("%s%s\n",term_osd_esc,msg->msg);
1249 return;
1252 #ifdef USE_OSD
1253 if(sh_video) {
1254 // fallback on the timer
1255 if(osd_level>=2) {
1256 int len = demuxer_get_time_length(demuxer);
1257 int percentage = -1;
1258 char percentage_text[10];
1259 static int last_pts = -303;
1260 int pts = sh_video->pts;
1261 if(pts==last_pts-1) ++pts; else last_pts=pts;
1263 if (osd_show_percentage)
1264 percentage = demuxer_get_percent_pos(demuxer);
1266 if (percentage >= 0)
1267 snprintf(percentage_text, 9, " (%d%%)", percentage);
1268 else
1269 percentage_text[0] = 0;
1271 if (osd_level == 3)
1272 snprintf(osd_text_timer, 63,
1273 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1274 osd_function,pts/3600,(pts/60)%60,pts%60,
1275 len/3600,(len/60)%60,len%60,percentage_text);
1276 else
1277 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1278 osd_function,pts/3600,(pts/60)%60,
1279 pts%60,percentage_text);
1280 } else
1281 osd_text_timer[0]=0;
1283 // always decrement the percentage timer
1284 if(osd_show_percentage)
1285 osd_show_percentage--;
1287 if(strcmp(osd_text,osd_text_timer)) {
1288 strncpy(osd_text, osd_text_timer, 63);
1289 vo_osd_changed(OSDTYPE_OSD);
1291 return;
1293 #endif
1295 // Clear the term osd line
1296 if(term_osd && osd_text[0]) {
1297 osd_text[0] = 0;
1298 printf("%s\n",term_osd_esc);
1303 int main(int argc,char* argv[]){
1306 char * mem_ptr;
1308 static demux_stream_t *d_audio=NULL;
1309 static demux_stream_t *d_video=NULL;
1310 static demux_stream_t *d_dvdsub=NULL;
1312 int file_format=DEMUXER_TYPE_UNKNOWN;
1314 int delay_corrected=1;
1316 // movie info:
1318 // still needed for the subtitles mess
1319 int osd_show_vobsub_changed = 0;
1320 int osd_show_sub_changed = 0;
1322 int rtc_fd=-1;
1324 int opt_exit = 0; // flag indicating whether mplayer should exit without playing anything
1326 //float a_frame=0; // Audio
1328 int i;
1329 char *tmp;
1331 int gui_no_filename=0;
1334 srand((int) time(NULL));
1336 InitTimer();
1338 mp_msg_init();
1340 mp_msg(MSGT_CPLAYER,MSGL_INFO, "MPlayer " VERSION " (C) 2000-2006 MPlayer Team\n");
1341 /* Test for cpu capabilities (and corresponding OS support) for optimizing */
1342 GetCpuCaps(&gCpuCaps);
1343 #if defined(ARCH_X86) || defined(ARCH_X86_64)
1344 mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n",
1345 gCpuCaps.hasMMX,gCpuCaps.hasMMX2,
1346 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
1347 gCpuCaps.hasSSE, gCpuCaps.hasSSE2);
1348 #ifdef RUNTIME_CPUDETECT
1349 mp_msg(MSGT_CPLAYER,MSGL_INFO, MSGTR_CompiledWithRuntimeDetection);
1350 #else
1351 mp_msg(MSGT_CPLAYER,MSGL_INFO, MSGTR_CompiledWithCPUExtensions);
1352 #ifdef HAVE_MMX
1353 mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX");
1354 #endif
1355 #ifdef HAVE_MMX2
1356 mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX2");
1357 #endif
1358 #ifdef HAVE_3DNOW
1359 mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNow");
1360 #endif
1361 #ifdef HAVE_3DNOWEX
1362 mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNowEx");
1363 #endif
1364 #ifdef HAVE_SSE
1365 mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE");
1366 #endif
1367 #ifdef HAVE_SSE2
1368 mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE2");
1369 #endif
1370 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n\n");
1371 #endif /* RUNTIME_CPUDETECT */
1372 #endif /* defined(ARCH_X86) || defined(ARCH_X86_64) */
1374 #if defined(WIN32) && defined(USE_WIN32DLL)
1375 set_path_env();
1376 #endif /*WIN32 && USE_WIN32DLL*/
1378 #ifdef USE_TV
1379 tv_param_immediate = 1;
1380 #endif
1382 if ( argv[0] )
1383 if(!strcmp(argv[0],"gmplayer") ||
1384 (strrchr(argv[0],'/') && !strcmp(strrchr(argv[0],'/'),"/gmplayer") ) )
1385 use_gui=1;
1387 mconfig = m_config_new();
1388 m_config_register_options(mconfig,mplayer_opts);
1389 // TODO : add something to let modules register their options
1390 mp_input_register_options(mconfig);
1391 parse_cfgfiles(mconfig);
1393 #ifdef HAVE_NEW_GUI
1394 if ( use_gui ) cfg_read();
1395 #endif
1397 playtree = m_config_parse_mp_command_line(mconfig, argc, argv);
1398 if(playtree == NULL)
1399 opt_exit = 1;
1400 else {
1401 playtree = play_tree_cleanup(playtree);
1402 if(playtree) {
1403 playtree_iter = play_tree_iter_new(playtree,mconfig);
1404 if(playtree_iter) {
1405 if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
1406 play_tree_iter_free(playtree_iter);
1407 playtree_iter = NULL;
1409 filename = play_tree_iter_get_file(playtree_iter,1);
1414 #ifdef WIN32
1415 if(proc_priority){
1416 int i;
1417 for(i=0; priority_presets_defs[i].name; i++){
1418 if(strcasecmp(priority_presets_defs[i].name, proc_priority) == 0)
1419 break;
1421 mp_msg(MSGT_CPLAYER,MSGL_STATUS,"Setting process priority: %s\n",
1422 priority_presets_defs[i].name);
1423 SetPriorityClass(GetCurrentProcess(), priority_presets_defs[i].prio);
1425 #endif
1426 #ifndef HAVE_NEW_GUI
1427 if(use_gui){
1428 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui);
1429 use_gui=0;
1431 #else
1432 if(use_gui && !vo_init()){
1433 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX);
1434 use_gui=0;
1436 if (use_gui && playtree_iter){
1437 char cwd[PATH_MAX+2];
1438 // Remove Playtree and Playtree-Iter from memory as its not used by gui
1439 play_tree_iter_free(playtree_iter);
1440 playtree_iter=NULL;
1442 if (getcwd(cwd, PATH_MAX) != (char *)NULL)
1444 strcat(cwd, "/");
1445 // Prefix relative paths with current working directory
1446 play_tree_add_bpf(playtree, cwd);
1448 // Import initital playtree into gui
1449 import_initial_playtree_into_gui(playtree, mconfig, enqueue);
1451 #endif /* HAVE_NEW_GUI */
1453 if(video_driver_list && strcmp(video_driver_list[0],"help")==0){
1454 list_video_out();
1455 opt_exit = 1;
1458 if(audio_driver_list && strcmp(audio_driver_list[0],"help")==0){
1459 list_audio_out();
1460 opt_exit = 1;
1463 // check codec.conf
1464 if(!codecs_file || !parse_codec_cfg(codecs_file)){
1465 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
1466 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
1467 if(!parse_codec_cfg(NULL)){
1468 mp_msg(MSGT_CPLAYER,MSGL_HINT,MSGTR_CopyCodecsConf);
1469 exit_player_with_rc(NULL, 0);
1471 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_BuiltinCodecsConf);
1474 free( mem_ptr ); // release the buffer created by get_path()
1477 #if 0
1478 if(video_codec_list){
1479 int i;
1480 video_codec=video_codec_list[0];
1481 for(i=0;video_codec_list[i];i++)
1482 mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]);
1484 #endif
1485 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
1486 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs);
1487 if (identify)
1488 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_CODECS\n");
1489 list_codecs(1);
1490 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
1491 opt_exit = 1;
1493 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
1494 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs);
1495 if (identify)
1496 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_CODECS\n");
1497 list_codecs(0);
1498 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
1499 opt_exit = 1;
1501 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
1502 vfm_help();
1503 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
1504 opt_exit = 1;
1506 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
1507 afm_help();
1508 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
1509 opt_exit = 1;
1511 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
1512 af_help();
1513 printf("\n");
1514 opt_exit = 1;
1516 #ifdef HAVE_X11
1517 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
1518 fstype_help();
1519 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
1520 opt_exit = 1;
1522 #endif
1523 if((demuxer_name && strcmp(demuxer_name,"help")==0) ||
1524 (audio_demuxer_name && strcmp(audio_demuxer_name,"help")==0) ||
1525 (sub_demuxer_name && strcmp(sub_demuxer_name,"help")==0)){
1526 demuxer_help();
1527 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
1528 opt_exit = 1;
1531 if(opt_exit)
1532 exit_player(NULL);
1534 if (player_idle_mode && use_gui) {
1535 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NoIdleAndGui);
1536 exit_player_with_rc(NULL, 1);
1539 if(!filename && !player_idle_mode){
1540 if(!use_gui){
1541 // no file/vcd/dvd -> show HELP:
1542 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text);
1543 exit_player_with_rc(NULL, 0);
1544 } else gui_no_filename=1;
1547 // Many users forget to include command line in bugreports...
1548 if(verbose>0){
1549 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
1550 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
1551 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
1554 //------ load global data first ------
1556 // check font
1557 #ifdef USE_OSD
1558 #ifdef HAVE_FREETYPE
1559 init_freetype();
1560 #endif
1561 #ifdef HAVE_FONTCONFIG
1562 if(!font_fontconfig)
1564 #endif
1565 if(font_name){
1566 vo_font=read_font_desc(font_name,font_factor,verbose>1);
1567 if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,font_name);
1568 } else {
1569 // try default:
1570 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
1571 free(mem_ptr); // release the buffer created by get_path()
1572 if(!vo_font)
1573 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
1575 #ifdef HAVE_FONTCONFIG
1577 #endif
1578 #endif /* USE_OSD */
1579 vo_init_osd();
1581 #ifdef HAVE_RTC
1582 if(!nortc)
1584 // seteuid(0); /* Can't hurt to try to get root here */
1585 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
1586 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_RTCDeviceNotOpenable,
1587 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
1588 else {
1589 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
1591 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
1592 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno));
1593 mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp);
1594 close (rtc_fd);
1595 rtc_fd = -1;
1596 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
1597 /* variable only by the root */
1598 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno));
1599 close (rtc_fd);
1600 rtc_fd = -1;
1601 } else
1602 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_UsingRTCTiming, irqp);
1605 #ifdef HAVE_NEW_GUI
1606 // breaks DGA and SVGAlib and VESA drivers: --A'rpi
1607 // and now ? -- Pontscho
1608 if(use_gui) setuid( getuid() ); // strongly test, please check this.
1609 #endif
1610 if(rtc_fd<0)
1611 #endif /* HAVE_RTC */
1612 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
1613 softsleep?"software":timer_name);
1615 #ifdef USE_TERMCAP
1616 if ( !use_gui ) load_termcap(NULL); // load key-codes
1617 #endif
1619 // ========== Init keyboard FIFO (connection to libvo) ============
1621 // Init input system
1622 current_module = "init_input";
1623 mp_input_init();
1624 #if 0
1625 make_pipe(&keyb_fifo_get,&keyb_fifo_put);
1627 if(keyb_fifo_get > 0)
1628 mp_input_add_key_fd(keyb_fifo_get,1,NULL,NULL);
1629 #else
1630 mp_input_add_key_fd(-1,0,mplayer_get_key,NULL);
1631 #endif
1632 if(slave_mode)
1633 #ifndef __MINGW32__
1634 mp_input_add_cmd_fd(0,1,NULL,NULL);
1635 #else
1636 mp_input_add_cmd_fd(0,0,mp_input_win32_slave_cmd_func,NULL);
1637 #endif
1638 else if(!noconsolecontrols)
1639 #ifndef HAVE_NO_POSIX_SELECT
1640 mp_input_add_key_fd(0,1,NULL,NULL);
1641 #else
1642 mp_input_add_key_fd(0,0,NULL,NULL);
1643 #endif
1645 inited_flags|=INITED_INPUT;
1646 current_module = NULL;
1648 #ifdef HAVE_MENU
1649 if(use_menu) {
1650 if(menu_cfg && menu_init(menu_cfg))
1651 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg);
1652 else {
1653 menu_cfg = get_path("menu.conf");
1654 if(menu_init(menu_cfg))
1655 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg);
1656 else {
1657 if(menu_init(MPLAYER_CONFDIR "/menu.conf"))
1658 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
1659 else {
1660 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitFailed);
1661 use_menu = 0;
1666 #endif
1668 /// Catch signals
1669 #ifndef __MINGW32__
1670 signal(SIGCHLD,child_sighandler);
1671 #endif
1673 #ifdef CRASH_DEBUG
1674 prog_path = argv[0];
1675 #endif
1676 //========= Catch terminate signals: ================
1677 // terminate requests:
1678 signal(SIGTERM,exit_sighandler); // kill
1679 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
1681 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
1683 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
1684 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
1685 #ifdef ENABLE_SIGHANDLER
1686 // fatal errors:
1687 signal(SIGBUS,exit_sighandler); // bus error
1688 signal(SIGSEGV,exit_sighandler); // segfault
1689 signal(SIGILL,exit_sighandler); // illegal instruction
1690 signal(SIGFPE,exit_sighandler); // floating point exc.
1691 signal(SIGABRT,exit_sighandler); // abort()
1692 #ifdef CRASH_DEBUG
1693 if (crash_debug)
1694 signal(SIGTRAP,exit_sighandler);
1695 #endif
1696 #endif
1698 #ifdef HAVE_NEW_GUI
1699 if(use_gui){
1700 guiInit();
1701 inited_flags|=INITED_GUI;
1702 guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) );
1704 #endif
1706 // ******************* Now, let's see the per-file stuff ********************
1708 play_next_file:
1710 // init global sub numbers
1711 global_sub_size = 0;
1712 { int i; for (i = 0; i < SUB_SOURCES; i++) global_sub_indices[i] = -1; }
1713 global_sub_quiet_osd_hack = 1;
1715 if (filename) load_per_file_config (mconfig, filename);
1717 // We must enable getch2 here to be able to interrupt network connection
1718 // or cache filling
1719 if(!noconsolecontrols && !slave_mode){
1720 if(inited_flags&INITED_GETCH2)
1721 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_Getch2InitializedTwice);
1722 else
1723 getch2_enable(); // prepare stdin for hotkeys...
1724 inited_flags|=INITED_GETCH2;
1725 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
1728 // =================== GUI idle loop (STOP state) ===========================
1729 #ifdef HAVE_NEW_GUI
1730 if ( use_gui ) {
1731 file_format=DEMUXER_TYPE_UNKNOWN;
1732 guiGetEvent( guiSetDefaults,0 );
1733 while ( guiIntfStruct.Playing != 1 )
1735 mp_cmd_t* cmd;
1736 usec_sleep(20000);
1737 guiEventHandling();
1738 guiGetEvent( guiReDraw,NULL );
1739 if ( (cmd = mp_input_get_cmd(0,0,0)) != NULL) guiGetEvent( guiIEvent,(char *)cmd->id );
1741 guiGetEvent( guiSetParameters,NULL );
1742 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM )
1744 play_tree_t * entry = play_tree_new();
1745 play_tree_add_file( entry,guiIntfStruct.Filename );
1746 if ( playtree ) play_tree_free_list( playtree->child,1 );
1747 else playtree=play_tree_new();
1748 play_tree_set_child( playtree,entry );
1749 if(playtree)
1751 playtree_iter = play_tree_iter_new(playtree,mconfig);
1752 if(playtree_iter)
1754 if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY)
1756 play_tree_iter_free(playtree_iter);
1757 playtree_iter = NULL;
1759 filename = play_tree_iter_get_file(playtree_iter,1);
1764 #endif /* HAVE_NEW_GUI */
1766 while (player_idle_mode && !filename) {
1767 play_tree_t * entry = NULL;
1768 mp_cmd_t * cmd;
1769 while (!(cmd = mp_input_get_cmd(0,1,0))) { // wait for command
1770 if (video_out && vo_config_count) video_out->check_events();
1771 usec_sleep(20000);
1773 switch (cmd->id) {
1774 case MP_CMD_LOADFILE:
1775 // prepare a tree entry with the new filename
1776 entry = play_tree_new();
1777 play_tree_add_file(entry, cmd->args[0].v.s);
1778 // actual entering the entry into the main playtree done after switch()
1779 break;
1780 case MP_CMD_LOADLIST:
1781 entry = parse_playlist_file(cmd->args[0].v.s);
1782 break;
1783 case MP_CMD_QUIT:
1784 exit_player_with_rc(MSGTR_Exit_quit, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
1785 break;
1788 mp_cmd_free(cmd);
1790 if (entry) { // user entered a command that gave a valid entry
1791 if (playtree) // the playtree is always a node with one child. let's clear it
1792 play_tree_free_list(playtree->child, 1);
1793 else playtree=play_tree_new(); // .. or make a brand new playtree
1795 if (!playtree) continue; // couldn't make playtree! wait for next command
1797 play_tree_set_child(playtree, entry);
1799 playtree_iter = play_tree_iter_new(playtree, mconfig); // make iterator starting at top of tree
1800 if (!playtree_iter) continue;
1802 // find the first real item in the tree
1803 if (play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
1804 // no items!
1805 play_tree_iter_free(playtree_iter);
1806 playtree_iter = NULL;
1807 continue; // wait for next command
1809 filename = play_tree_iter_get_file(playtree_iter, 1);
1812 //---------------------------------------------------------------------------
1814 if(filename) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing, filename);
1816 #ifdef USE_EDL
1817 if (edl_filename) {
1818 if (edl_records) free_edl(edl_records);
1819 next_edl_record = edl_records = edl_parse_file();
1821 if (edl_output_filename) {
1822 if (edl_fd) fclose(edl_fd);
1823 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
1825 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlCantOpenForWrite,
1826 edl_output_filename);
1829 #endif
1831 //==================== Open VOB-Sub ============================
1833 current_module="vobsub";
1834 if (vobsub_name){
1835 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
1836 if(vo_vobsub==NULL)
1837 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,vobsub_name);
1838 }else if(sub_auto && filename && (strlen(filename)>=5)){
1839 /* try to autodetect vobsub from movie filename ::atmos */
1840 char *buf = malloc((strlen(filename)-3) * sizeof(char)),*psub;
1841 memset(buf,0,strlen(filename)-3); // make sure string is terminated
1842 strncpy(buf, filename, strlen(filename)-4);
1843 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
1844 /* try from ~/.mplayer/sub */
1845 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
1846 char *bname;
1847 int l;
1848 bname = strrchr(buf,'/');
1849 #ifdef WIN32
1850 if(!bname) bname = strrchr(buf,'\\');
1851 #endif
1852 if(bname) bname++;
1853 else bname = buf;
1854 l = strlen(psub) + strlen(bname) + 1;
1855 psub = realloc(psub,l);
1856 strcat(psub,bname);
1857 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
1858 free(psub);
1860 free(buf);
1862 if(vo_vobsub){
1863 inited_flags|=INITED_VOBSUB;
1864 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
1865 // check if vobsub requested only to display forced subtitles
1866 forced_subs_only=vobsub_get_forced_subs_flag(vo_vobsub);
1868 // setup global sub numbering
1869 global_sub_indices[SUB_SOURCE_VOBSUB] = global_sub_size; // the global # of the first vobsub.
1870 global_sub_size += vobsub_get_indexes_count(vo_vobsub);
1873 //============ Open & Sync STREAM --- fork cache2 ====================
1875 stream=NULL;
1876 demuxer=NULL;
1877 if (d_audio) {
1878 //free_demuxer_stream(d_audio);
1879 d_audio=NULL;
1881 if (d_video) {
1882 //free_demuxer_stream(d_video);
1883 d_video=NULL;
1885 sh_audio=NULL;
1886 sh_video=NULL;
1888 current_module="open_stream";
1889 stream=open_stream(filename,0,&file_format);
1890 if(!stream) { // error...
1891 eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY);
1892 goto goto_next_file;
1894 inited_flags|=INITED_STREAM;
1896 #ifdef HAVE_NEW_GUI
1897 if ( use_gui ) guiGetEvent( guiSetStream,(char *)stream );
1898 #endif
1900 if(file_format == DEMUXER_TYPE_PLAYLIST) {
1901 play_tree_t* entry;
1902 // Handle playlist
1903 current_module="handle_playlist";
1904 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",filename);
1905 entry = parse_playtree(stream,0);
1906 eof=playtree_add_playlist(entry);
1907 goto goto_next_file;
1909 stream->start_pos+=seek_to_byte;
1911 if(stream_dump_type==5){
1912 unsigned char buf[4096];
1913 int len;
1914 FILE *f;
1915 current_module="dumpstream";
1916 if(stream->type==STREAMTYPE_STREAM && stream->fd<0){
1917 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpstreamFdUnavailable);
1918 exit_player(MSGTR_Exit_error);
1920 stream_reset(stream);
1921 stream_seek(stream,stream->start_pos);
1922 f=fopen(stream_dump_name,"wb");
1923 if(!f){
1924 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
1925 exit_player(MSGTR_Exit_error);
1927 while(!stream->eof){
1928 len=stream_read(stream,buf,4096);
1929 if(len>0) {
1930 if(fwrite(buf,len,1,f) != 1) {
1931 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
1932 exit_player(MSGTR_Exit_error);
1936 if(fclose(f)) {
1937 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
1938 exit_player(MSGTR_Exit_error);
1940 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
1941 exit_player_with_rc(MSGTR_Exit_eof, 0);
1944 #ifdef USE_DVDREAD
1945 if(stream->type==STREAMTYPE_DVD){
1946 current_module="dvd lang->id";
1947 if(audio_id==-1) audio_id=dvd_aid_from_lang(stream,audio_lang);
1948 if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvd_sid_from_lang(stream,dvdsub_lang);
1949 // setup global sub numbering
1950 global_sub_indices[SUB_SOURCE_DEMUX] = global_sub_size; // the global # of the first demux-specific sub.
1951 global_sub_size += dvd_number_of_subs(stream);
1952 current_module=NULL;
1954 #endif
1956 #ifdef USE_DVDNAV
1957 if (stream->type==STREAMTYPE_DVDNAV) stream_cache_size=0; // must disable caching...
1958 #endif
1960 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
1961 #ifdef HAS_DVBIN_SUPPORT
1962 goto_enable_cache:
1963 #endif
1964 if(stream_cache_size>0){
1965 current_module="enable_cache";
1966 if(!stream_enable_cache(stream,stream_cache_size*1024,
1967 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
1968 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0)))
1969 if((eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) goto goto_next_file;
1972 //============ Open DEMUXERS --- DETECT file type =======================
1973 current_module="demux_open";
1975 demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id,filename);
1977 // HACK to get MOV Reference Files working
1979 if (demuxer && demuxer->type==DEMUXER_TYPE_PLAYLIST)
1981 unsigned char* playlist_entry;
1982 play_tree_t *list = NULL, *entry = NULL;
1984 current_module="handle_demux_playlist";
1985 while (ds_get_packet(demuxer->video,&playlist_entry)>0)
1987 char *temp, *bname;
1989 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",playlist_entry);
1991 bname=mp_basename(playlist_entry);
1992 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
1993 continue;
1995 if (!strncmp(bname,mp_basename(filename),strlen(bname))) // ignoring self-reference
1996 continue;
1998 entry = play_tree_new();
2000 if (filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
2002 temp=malloc((strlen(filename)-strlen(mp_basename(filename))+strlen(playlist_entry)+1)*sizeof(char));
2003 if (temp)
2005 strncpy(temp, filename, strlen(filename)-strlen(mp_basename(filename)));
2006 temp[strlen(filename)-strlen(mp_basename(filename))]='\0';
2007 strcat(temp, playlist_entry);
2008 play_tree_add_file(entry,temp);
2009 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
2010 free(temp);
2013 else
2014 play_tree_add_file(entry,playlist_entry);
2016 if(!list)
2017 list = entry;
2018 else
2019 play_tree_append_entry(list,entry);
2021 free_demuxer(demuxer);
2022 demuxer = NULL;
2024 if (list)
2026 entry = play_tree_new();
2027 play_tree_set_child(entry,list);
2028 eof=playtree_add_playlist(entry);
2029 goto goto_next_file;
2033 if(!demuxer)
2035 #if 0
2036 play_tree_t* entry;
2037 // Handle playlist
2038 current_module="handle_playlist";
2039 switch(stream->type){
2040 case STREAMTYPE_VCD:
2041 case STREAMTYPE_DVD:
2042 case STREAMTYPE_DVDNAV:
2043 case STREAMTYPE_CDDA:
2044 case STREAMTYPE_VCDBINCUE:
2045 // don't try to parse raw media as playlist, it's unlikely
2046 goto goto_next_file;
2048 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FallingBackOnPlaylist,filename);
2049 stream_reset(stream);
2050 stream_seek(stream,stream->start_pos);
2051 entry = parse_playtree(stream,0);
2052 if(!entry)
2053 mp_msg(MSGT_DEMUXER,MSGL_ERR,MSGTR_FormatNotRecognized);
2054 else
2055 eof=playtree_add_playlist(entry);
2056 #endif
2057 goto goto_next_file;
2059 inited_flags|=INITED_DEMUXER;
2061 #ifdef HAVE_MATROSKA
2062 if (demuxer->type==DEMUXER_TYPE_MATROSKA) {
2063 // setup global sub numbering
2064 global_sub_indices[SUB_SOURCE_DEMUX] = global_sub_size; // the global # of the first demux-specific sub.
2065 global_sub_size += demux_mkv_num_subs(demuxer);
2067 #endif
2068 #ifdef HAVE_OGGVORBIS
2069 if (demuxer->type==DEMUXER_TYPE_OGG) {
2070 // setup global sub numbering
2071 global_sub_indices[SUB_SOURCE_DEMUX] = global_sub_size; // the global # of the first demux-specific sub.
2072 global_sub_size += demux_ogg_num_subs(demuxer);
2074 #endif
2076 current_module="demux_open2";
2078 //file_format=demuxer->file_format;
2080 d_audio=demuxer->audio;
2081 d_video=demuxer->video;
2082 d_dvdsub=demuxer->sub;
2084 // DUMP STREAMS:
2085 if((stream_dump_type)&&(stream_dump_type<4)){
2086 FILE *f;
2087 demux_stream_t *ds=NULL;
2088 current_module="dump";
2089 // select stream to dump
2090 switch(stream_dump_type){
2091 case 1: ds=d_audio;break;
2092 case 2: ds=d_video;break;
2093 case 3: ds=d_dvdsub;break;
2095 if(!ds){
2096 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedStreamMissing);
2097 exit_player(MSGTR_Exit_error);
2099 // disable other streams:
2100 if(d_audio && d_audio!=ds) {ds_free_packs(d_audio); d_audio->id=-2; }
2101 if(d_video && d_video!=ds) {ds_free_packs(d_video); d_video->id=-2; }
2102 if(d_dvdsub && d_dvdsub!=ds) {ds_free_packs(d_dvdsub); d_dvdsub->id=-2; }
2103 // let's dump it!
2104 f=fopen(stream_dump_name,"wb");
2105 if(!f){
2106 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
2107 exit_player(MSGTR_Exit_error);
2109 while(!ds->eof){
2110 unsigned char* start;
2111 int in_size=ds_get_packet(ds,&start);
2112 if( (demuxer->file_format==DEMUXER_TYPE_AVI || demuxer->file_format==DEMUXER_TYPE_ASF || demuxer->file_format==DEMUXER_TYPE_MOV)
2113 && stream_dump_type==2) fwrite(&in_size,1,4,f);
2114 if(in_size>0) fwrite(start,in_size,1,f);
2116 fclose(f);
2117 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
2118 exit_player_with_rc(MSGTR_Exit_eof, 0);
2121 sh_audio=d_audio->sh;
2122 sh_video=d_video->sh;
2124 if(sh_video){
2126 current_module="video_read_properties";
2127 if(!video_read_properties(sh_video)) {
2128 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
2129 sh_video=d_video->sh=NULL;
2130 } else {
2131 mp_msg(MSGT_CPLAYER,MSGL_V,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n",
2132 demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h,
2133 sh_video->fps,sh_video->frametime
2136 /* need to set fps here for output encoders to pick it up in their init */
2137 if(force_fps){
2138 sh_video->fps=force_fps;
2139 sh_video->frametime=1.0f/sh_video->fps;
2141 vo_fps = sh_video->fps;
2142 #ifdef HAVE_X11
2143 vo_mouse_timer_const=(int)sh_video->fps;
2144 #endif
2146 if(!sh_video->fps && !force_fps){
2147 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
2148 sh_video=d_video->sh=NULL;
2154 fflush(stdout);
2156 if(!sh_video && !sh_audio){
2157 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NoStreamFound);
2158 #ifdef HAS_DVBIN_SUPPORT
2159 if((stream->type == STREAMTYPE_DVB) && stream->priv)
2161 dvb_priv_t *priv = (dvb_priv_t*) stream->priv;
2162 if(priv->is_on)
2164 int dir;
2165 int v = last_dvb_step;
2166 if(v > 0)
2167 dir = DVB_CHANNEL_HIGHER;
2168 else
2169 dir = DVB_CHANNEL_LOWER;
2171 if(dvb_step_channel(priv, dir))
2173 uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
2174 cache_uninit(stream);
2175 goto goto_enable_cache;
2179 #endif
2180 goto goto_next_file; // exit_player(MSGTR_Exit_error);
2183 /* display clip info */
2184 demux_info_print(demuxer);
2186 //================== Read SUBTITLES (DVD & TEXT) ==========================
2187 if(vo_spudec==NULL && sh_video &&
2188 (stream->type==STREAMTYPE_DVD || demuxer->type==DEMUXER_TYPE_MATROSKA ||
2189 d_dvdsub->id >= 0)){
2191 if (spudec_ifo) {
2192 unsigned int palette[16], width, height;
2193 current_module="spudec_init_vobsub";
2194 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
2195 vo_spudec=spudec_new_scaled(palette, width, height);
2198 #ifdef USE_DVDNAV
2199 if (vo_spudec==NULL && stream->type==STREAMTYPE_DVDNAV) {
2200 current_module="spudec_init_dvdnav";
2201 vo_spudec=spudec_new_scaled(dvdnav_stream_get_palette((dvdnav_priv_t*)(stream->priv)),
2202 sh_video->disp_w, sh_video->disp_h);
2204 #endif
2206 #ifdef USE_DVDREAD
2207 if (vo_spudec==NULL && stream->type==STREAMTYPE_DVD) {
2208 current_module="spudec_init_dvdread";
2209 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(stream->priv))->cur_pgc->palette,
2210 sh_video->disp_w, sh_video->disp_h);
2212 #endif
2214 #ifdef HAVE_MATROSKA
2215 if ((vo_spudec == NULL) && (demuxer->type == DEMUXER_TYPE_MATROSKA) &&
2216 (d_dvdsub->sh != NULL) && (((mkv_sh_sub_t *)d_dvdsub->sh)->type == 'v')) {
2217 mkv_sh_sub_t *mkv_sh_sub = (mkv_sh_sub_t *)d_dvdsub->sh;
2218 current_module = "spudec_init_matroska";
2219 vo_spudec =
2220 spudec_new_scaled_vobsub(mkv_sh_sub->palette, mkv_sh_sub->colors,
2221 mkv_sh_sub->custom_colors, mkv_sh_sub->width,
2222 mkv_sh_sub->height);
2223 forced_subs_only = mkv_sh_sub->forced_subs_only;
2225 #endif
2227 if (vo_spudec==NULL) {
2228 current_module="spudec_init_normal";
2229 vo_spudec=spudec_new_scaled(NULL, sh_video->disp_w, sh_video->disp_h);
2230 spudec_set_font_factor(vo_spudec,font_factor);
2233 if (vo_spudec!=NULL)
2234 inited_flags|=INITED_SPUDEC;
2238 // Apply current settings for forced subs
2239 if (vo_spudec!=NULL)
2240 spudec_set_forced_subs_only(vo_spudec,forced_subs_only);
2242 #ifdef USE_SUB
2243 if(sh_video) {
2244 // after reading video params we should load subtitles because
2245 // we know fps so now we can adjust subtitles time to ~6 seconds AST
2246 // check .sub
2247 current_module="read_subtitles_file";
2248 if(sub_name){
2249 for (i = 0; sub_name[i] != NULL; ++i)
2250 add_subtitles (sub_name[i], sh_video->fps, 0);
2252 if(sub_auto) { // auto load sub file ...
2253 char *psub = get_path( "sub/" );
2254 char **tmp = sub_filenames((psub ? psub : ""), filename);
2255 int i = 0;
2256 free(psub); // release the buffer created by get_path() above
2257 while (tmp[i]) {
2258 add_subtitles (tmp[i], sh_video->fps, 0);
2259 free(tmp[i++]);
2261 free(tmp);
2262 if (set_of_sub_size == 0)
2264 add_subtitles (mem_ptr=get_path("default.sub"), sh_video->fps, 1);
2265 free(mem_ptr); // release the buffer created by get_path()
2268 if (set_of_sub_size > 0) {
2269 // setup global sub numbering
2270 global_sub_indices[SUB_SOURCE_SUBS] = global_sub_size; // the global # of the first sub.
2271 global_sub_size += set_of_sub_size;
2274 #endif /* USE_SUB */
2276 if (global_sub_size) {
2277 // find the best sub to use
2278 if (vobsub_id >= 0) {
2279 // if user asks for a vobsub id, use that first.
2280 global_sub_pos = global_sub_indices[SUB_SOURCE_VOBSUB] + vobsub_id;
2281 } else if (dvdsub_id >= 0 && global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
2282 // if user asks for a dvd sub id, use that next.
2283 global_sub_pos = global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
2284 } else if (global_sub_indices[SUB_SOURCE_SUBS] >= 0) {
2285 // if there are text subs to use, use those. (autosubs come last here)
2286 global_sub_pos = global_sub_indices[SUB_SOURCE_SUBS];
2288 } else if (global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
2289 // if nothing else works, get subs from the demuxer.
2290 global_sub_pos = global_sub_indices[SUB_SOURCE_DEMUX];
2292 } else {
2293 // nothing worth doing automatically.
2294 global_sub_pos = -1;
2296 // rather than duplicate code, use the SUB_SELECT handler to init the right one.
2297 global_sub_pos--;
2298 mp_input_queue_cmd(mp_input_parse_cmd("sub_select"));
2301 //================== Init AUDIO (codec) ==========================
2302 if(sh_audio){
2303 // Go through the codec.conf and find the best codec...
2304 current_module="init_audio_codec";
2305 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2306 if(!init_best_audio_codec(sh_audio,audio_codec_list,audio_fm_list)){
2307 sh_audio=d_audio->sh=NULL; // failed to init :(
2308 } else
2309 inited_flags|=INITED_ACODEC;
2310 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2313 if(identify) {
2314 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_FILENAME=%s\n", filename);
2315 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_DEMUXER=%s\n", demuxer->desc->name);
2316 if (sh_video) {
2317 /* Assume FOURCC if all bytes >= 0x20 (' ') */
2318 if (sh_video->format >= 0x20202020)
2319 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", &sh_video->format);
2320 else
2321 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", sh_video->format);
2322 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", sh_video->i_bps*8);
2323 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", sh_video->disp_w);
2324 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", sh_video->disp_h);
2325 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", sh_video->fps);
2326 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", sh_video->aspect);
2328 if (sh_audio) {
2329 if (sh_audio->codec)
2330 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", sh_audio->codec->name);
2331 /* Assume FOURCC if all bytes >= 0x20 (' ') */
2332 if (sh_audio->format >= 0x20202020)
2333 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", &sh_audio->format);
2334 else
2335 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", sh_audio->format);
2336 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", sh_audio->i_bps*8);
2337 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_RATE=%d\n", sh_audio->samplerate);
2338 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_AUDIO_NCH=%d\n", sh_audio->channels);
2340 mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_LENGTH=%.2lf\n", demuxer_get_time_length(demuxer));
2343 if(!sh_video) goto main; // audio-only
2345 //================== Init VIDEO (codec & libvo) ==========================
2346 if(!fixed_vo || !(inited_flags&INITED_VO)){
2347 current_module="preinit_libvo";
2349 vo_config_count=0;
2350 //if((video_out->preinit(vo_subdevice))!=0){
2351 if(!(video_out=init_best_video_out(video_driver_list))){
2352 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorInitializingVODevice);
2353 goto goto_next_file; // exit_player(MSGTR_Exit_error);
2355 sh_video->video_out=video_out;
2356 inited_flags|=INITED_VO;
2359 current_module="init_video_filters";
2361 char* vf_arg[] = { "_oldargs_", (char*)video_out , NULL };
2362 sh_video->vfilter=(void*)vf_open_filter(NULL,"vo",vf_arg);
2364 #ifdef HAVE_MENU
2365 if(use_menu) {
2366 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2367 vf_menu = vf_open_plugin(libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2368 if(!vf_menu) {
2369 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantOpenLibmenuFilterWithThisRootMenu,menu_root);
2370 use_menu = 0;
2373 if(vf_menu)
2374 sh_video->vfilter=(void*)append_filters(vf_menu);
2375 else
2376 #endif
2377 sh_video->vfilter=(void*)append_filters(sh_video->vfilter);
2379 current_module="init_video_codec";
2381 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2382 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2383 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2385 if(!sh_video->inited){
2386 if(!fixed_vo) uninit_player(INITED_VO);
2387 if(!sh_audio) goto goto_next_file;
2388 sh_video = d_video->sh = NULL;
2389 goto main; // exit_player(MSGTR_Exit_error);
2392 inited_flags|=INITED_VCODEC;
2394 if (identify && sh_video->codec)
2395 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2397 if(auto_quality>0){
2398 // Auto quality option enabled
2399 output_quality=get_video_quality_max(sh_video);
2400 if(auto_quality>output_quality) auto_quality=output_quality;
2401 else output_quality=auto_quality;
2402 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2403 set_video_quality(sh_video,output_quality);
2406 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2408 current_module="init_vo";
2410 if(vo_flags & 0x08 && vo_spudec)
2411 spudec_set_hw_spu(vo_spudec,video_out);
2413 #ifdef HAVE_FREETYPE
2414 force_load_font = 1;
2415 #endif
2417 //================== MAIN: ==========================
2418 main:
2419 current_module="main";
2421 // Disable the term osd in verbose mode
2422 if(verbose) term_osd = 0;
2423 fflush(stdout);
2425 #ifdef HAVE_NEW_GUI
2426 if ( use_gui )
2428 if ( sh_audio ) guiIntfStruct.AudioType=sh_audio->channels; else guiIntfStruct.AudioType=0;
2429 if ( !sh_video && sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
2430 guiGetEvent( guiSetFileFormat,(char *)demuxer->file_format );
2431 if ( guiGetEvent( guiSetValues,(char *)sh_video ) ) goto goto_next_file;
2432 guiGetEvent( guiSetDemuxer,(char *)demuxer );
2434 #endif
2437 //int frame_corr_num=0; //
2438 //float v_frame=0; // Video
2439 float time_frame=0; // Timer
2440 //float num_frames=0; // number of frames played
2441 int grab_frames=0;
2442 char osd_text_buffer[64];
2443 char osd_show_text_buffer[64];
2444 int drop_frame=0; // current dropping status
2445 int dropped_frames=0; // how many frames dropped since last non-dropped frame
2446 int too_slow_frame_cnt=0;
2447 int too_fast_frame_cnt=0;
2448 // for auto-quality:
2449 float AV_delay=0; // average of A-V timestamp differences
2450 double vdecode_time;
2451 unsigned int lastframeout_ts=0;
2452 /*float time_frame_corr_avg=0;*/ /* unused */
2454 float next_frame_time=0;
2455 int frame_time_remaining=0; // flag
2456 int blit_frame=0;
2457 int was_paused=0;
2459 osd_text_buffer[0]=0;
2460 // make sure OSD old does not stay around,
2461 // e.g. with -fixed-vo and same-resolution files
2462 vo_osd_text = osd_text_buffer;
2463 vo_osd_changed(OSDTYPE_OSD);
2465 //================ SETUP AUDIO ==========================
2467 if(sh_audio){
2468 //const ao_info_t *info=audio_out->info;
2469 current_module="af_preinit";
2470 ao_data.samplerate=force_srate;
2471 ao_data.channels=0;
2472 ao_data.format=audio_output_format;
2473 #if 1
2474 // first init to detect best values
2475 if(!preinit_audio_filters(sh_audio,
2476 // input:
2477 (int)(sh_audio->samplerate*playback_speed),
2478 sh_audio->channels, sh_audio->sample_format,
2479 // output:
2480 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
2481 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_AudioFilterChainPreinitError);
2482 exit_player(MSGTR_Exit_error);
2484 #endif
2485 current_module="ao2_init";
2486 if(!(audio_out=init_best_audio_out(audio_driver_list,
2487 0, // plugin flag
2488 ao_data.samplerate,
2489 ao_data.channels,
2490 ao_data.format,0))){
2491 // FAILED:
2492 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
2493 uninit_player(INITED_ACODEC); // close codec
2494 sh_audio=d_audio->sh=NULL; // -> nosound
2495 } else {
2496 // SUCCESS:
2497 inited_flags|=INITED_AO;
2498 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bytes per sample)\n",
2499 audio_out->info->short_name,
2500 ao_data.samplerate, ao_data.channels,
2501 af_fmt2str_short(ao_data.format),
2502 af_fmt2bits(ao_data.format)/8 );
2503 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n",
2504 audio_out->info->name, audio_out->info->author);
2505 if(strlen(audio_out->info->comment) > 0)
2506 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", audio_out->info->comment);
2507 // init audio filters:
2508 #if 1
2509 current_module="af_init";
2510 if(!build_afilter_chain(sh_audio, &ao_data)) {
2511 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_NoMatchingFilter);
2512 // mp_msg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter / ao format! -> NOSOUND\n");
2513 // uninit_player(INITED_ACODEC|INITED_AO); // close codec & ao
2514 // sh_audio=d_audio->sh=NULL; // -> nosound
2516 #endif
2518 mixer.audio_out = audio_out;
2519 mixer.volstep = volstep;
2522 current_module="av_init";
2524 if(sh_video) sh_video->timer=0;
2525 if(sh_audio) sh_audio->delay=-audio_delay;
2527 if(!sh_audio){
2528 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
2529 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",d_audio->packs);
2530 ds_free_packs(d_audio); // free buffered chunks
2531 d_audio->id=-2; // do not read audio chunks
2532 //uninit_player(INITED_AO); // close device
2534 if(!sh_video){
2535 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
2536 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",d_video->packs);
2537 ds_free_packs(d_video);
2538 d_video->id=-2;
2539 //if(!fixed_vo) uninit_player(INITED_VO);
2542 if (!sh_video && !sh_audio)
2543 goto goto_next_file;
2545 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
2546 if(force_fps && sh_video){
2547 vo_fps = sh_video->fps=force_fps;
2548 sh_video->frametime=1.0f/sh_video->fps;
2549 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,sh_video->fps,sh_video->frametime);
2552 //==================== START PLAYING =======================
2554 if(loop_times>1) loop_times--; else
2555 if(loop_times==1) loop_times = -1;
2557 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);fflush(stdout);
2559 #ifdef USE_DVDNAV
2560 if (stream->type==STREAMTYPE_DVDNAV) {
2561 dvdnav_stream_fullstart((dvdnav_priv_t *)stream->priv);
2563 #endif
2565 total_time_usage_start=GetTimer();
2566 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
2567 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
2568 play_n_frames=play_n_frames_mf;
2570 if(play_n_frames==0){
2571 eof=PT_NEXT_ENTRY; goto goto_next_file;
2574 while(!eof){
2575 float aq_sleep_time=0;
2577 /*========================== PLAY AUDIO ============================*/
2579 while(sh_audio){
2580 unsigned int t;
2581 double tt;
2582 int playsize;
2584 current_module="play_audio";
2586 ao_data.pts=((sh_video?sh_video->timer:0)+sh_audio->delay)*90000.0;
2587 playsize=audio_out->get_space();
2589 // handle audio-only case:
2590 if(playsize < ao_data.outburst &&
2591 !sh_video) { // buffer is full, do not block here!!!
2592 usec_sleep(10000); // Wait a tick before retry
2593 continue;
2596 if(playsize>MAX_OUTBURST) playsize=MAX_OUTBURST; // we shouldn't exceed it!
2598 // Fill buffer if needed:
2599 current_module="decode_audio"; // Enter AUDIO decoder module
2600 t=GetTimer();
2601 while(sh_audio->a_out_buffer_len<playsize &&
2602 (!d_audio->eof || sh_audio->a_in_buffer_len > 0 || sh_audio->a_buffer_len > 0)){
2603 int ret=decode_audio(sh_audio,&sh_audio->a_out_buffer[sh_audio->a_out_buffer_len],
2604 playsize-sh_audio->a_out_buffer_len,sh_audio->a_out_buffer_size-sh_audio->a_out_buffer_len);
2605 if(ret<=0) { // EOF?
2606 if (d_audio->eof)
2607 sh_audio->a_in_buffer_len = 0; // make sure we don't hang if something's broken
2608 break;
2610 sh_audio->a_out_buffer_len+=ret;
2612 t=GetTimer()-t;
2613 tt = t*0.000001f; audio_time_usage+=tt;
2614 if(playsize>sh_audio->a_out_buffer_len) playsize=sh_audio->a_out_buffer_len;
2616 // play audio:
2617 current_module="play_audio";
2618 playsize=audio_out->play(sh_audio->a_out_buffer,playsize,0);
2620 if(playsize>0){
2621 sh_audio->a_out_buffer_len-=playsize;
2622 memmove(sh_audio->a_out_buffer,&sh_audio->a_out_buffer[playsize],sh_audio->a_out_buffer_len);
2623 sh_audio->delay+=playback_speed*playsize/((float)((ao_data.bps && sh_audio->afilter) ?
2624 ao_data.bps : sh_audio->o_bps));
2627 break;
2628 } // while(sh_audio)
2630 if(!sh_video) {
2631 // handle audio-only case:
2632 if(!quiet) {
2633 float a_pos = sh_audio->delay - audio_out->get_delay() * playback_speed;
2634 print_status(a_pos, 0, 0);
2636 if(d_audio->eof && sh_audio->a_in_buffer_len <= 0 && sh_audio->a_buffer_len <= 0) eof = PT_NEXT_ENTRY;
2638 } else {
2640 /*========================== PLAY VIDEO ============================*/
2642 float frame_time=next_frame_time;
2644 vo_pts=sh_video->timer*90000.0;
2645 vo_fps=sh_video->fps;
2647 if(!frame_time_remaining){
2648 //-------------------- Decode a frame: -----------------------
2649 vdecode_time=video_time_usage;
2650 while(1)
2651 { unsigned char* start=NULL;
2652 int in_size;
2653 // get it!
2654 current_module="video_read_frame";
2655 in_size=video_read_frame(sh_video,&next_frame_time,&start,force_fps);
2656 if(in_size<0){ eof=1; break; }
2657 if(in_size>max_framesize) max_framesize=in_size; // stats
2658 sh_video->timer+=frame_time;
2659 if(sh_audio) sh_audio->delay-=frame_time;
2660 time_frame+=frame_time; // for nosound
2661 // video_read_frame can change fps (e.g. for asf video)
2662 vo_fps = sh_video->fps;
2663 #ifdef HAVE_X11
2664 vo_mouse_timer_const = (int)sh_video->fps;
2665 #endif
2666 // check for frame-drop:
2667 current_module="check_framedrop";
2668 if(sh_audio && !d_audio->eof){
2669 float delay=playback_speed*audio_out->get_delay();
2670 float d=delay-sh_audio->delay;
2671 // we should avoid dropping to many frames in sequence unless we
2672 // are too late. and we allow 100ms A-V delay here:
2673 if(d<-dropped_frames*frame_time-0.100 && osd_function != OSD_PAUSE){
2674 drop_frame=frame_dropping;
2675 ++drop_frame_cnt;
2676 ++dropped_frames;
2677 } else {
2678 drop_frame=dropped_frames=0;
2680 ++total_frame_cnt;
2682 // decode:
2683 current_module="decode_video";
2684 // printf("Decode! %p %d \n",start,in_size);
2685 blit_frame=decode_video(sh_video,start,in_size,drop_frame);
2686 break;
2688 vdecode_time=video_time_usage-vdecode_time;
2689 //------------------------ frame decoded. --------------------
2691 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
2693 if(sh_video->vf_inited<0){
2694 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_NotInitializeVOPorVO);
2695 eof=1; goto goto_next_file;
2700 // ==========================================================================
2702 // current_module="draw_osd";
2703 // if(vo_config_count) video_out->draw_osd();
2705 #ifdef HAVE_NEW_GUI
2706 if(use_gui) guiEventHandling();
2707 #endif
2709 current_module="calc_sleep_time";
2711 #if 0
2712 { // debug frame dropping code
2713 float delay=audio_out->get_delay();
2714 mp_msg(MSGT_AVSYNC,MSGL_V,"\r[V] %5.3f [A] %5.3f => {%5.3f} (%5.3f) [%d] \n",
2715 sh_video->timer,sh_audio->timer-delay,
2716 sh_video->timer-(sh_audio->timer-delay),
2717 delay,drop_frame);
2719 #endif
2721 if(drop_frame && !frame_time_remaining && !autosync){
2723 * Note: time_frame should not be forced to 0 in autosync mode.
2724 * It is used as a cumulative counter to predict and correct the
2725 * delay measurements from the audio driver. time_frame is already
2726 * < 0, so the "time to sleep" code does not actually sleep. Also,
2727 * blit_frame is already 0 because drop_frame was true when
2728 * decode_video was called (which causes it to set blit_frame to 0.)
2729 * When autosync==0, the default behavior is still completely unchanged.
2732 time_frame=0; // don't sleep!
2733 blit_frame=0; // don't display!
2735 } else {
2737 // It's time to sleep...
2739 frame_time_remaining=0;
2740 time_frame-=GetRelativeTime(); // reset timer
2742 if(sh_audio && !d_audio->eof){
2743 float delay=playback_speed*audio_out->get_delay();
2744 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"delay=%f\n",delay);
2746 if (autosync){
2748 * Adjust this raw delay value by calculating the expected
2749 * delay for this frame and generating a new value which is
2750 * weighted between the two. The higher autosync is, the
2751 * closer to the delay value gets to that which "-nosound"
2752 * would have used, and the longer it will take for A/V
2753 * sync to settle at the right value (but it eventually will.)
2754 * This settling time is very short for values below 100.
2756 float predicted = sh_audio->delay+time_frame;
2757 float difference = delay - predicted;
2758 delay = predicted + difference / (float)autosync;
2761 time_frame=delay-sh_audio->delay;
2763 // delay = amount of audio buffered in soundcard/driver
2764 if(delay>0.25) delay=0.25; else
2765 if(delay<0.10) delay=0.10;
2766 if(time_frame>delay*0.6){
2767 // sleep time too big - may cause audio drops (buffer underrun)
2768 frame_time_remaining=1;
2769 time_frame=delay*0.5;
2772 } else {
2774 // NOSOUND:
2775 if( (time_frame<-3*frame_time || time_frame>3*frame_time) || benchmark)
2776 time_frame=0;
2780 // if(verbose>1)printf("sleep: %5.3f a:%6.3f v:%6.3f \n",time_frame,sh_audio->timer,sh_video->timer);
2782 aq_sleep_time+=time_frame;
2784 } // !drop_frame
2786 //============================== SLEEP: ===================================
2788 time_frame/=playback_speed;
2790 // flag 256 means: libvo driver does its timing (dvb card)
2791 if(time_frame>0.001 && !(vo_flags&256)){
2793 #ifdef HAVE_RTC
2794 if(rtc_fd>=0){
2795 // -------- RTC -----------
2796 current_module="sleep_rtc";
2797 while (time_frame > 0.000) {
2798 unsigned long rtc_ts;
2799 if (read (rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
2800 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno));
2801 time_frame-=GetRelativeTime();
2803 } else
2804 #endif
2805 #ifdef SYS_DARWIN
2807 current_module="sleep_darwin";
2808 while(time_frame>0.005) {
2809 usec_sleep(1000000*time_frame);
2810 time_frame-=GetRelativeTime();
2813 #else
2815 // -------- TIMER + SOFTSLEEP -----------
2816 float min=softsleep?0.021:0.005;
2817 current_module="sleep_timer";
2818 while(time_frame>min){
2819 if(time_frame<=0.020)
2820 usec_sleep(0); // sleeps 1 clock tick (10ms)!
2821 else
2822 usec_sleep(1000000*(time_frame-0.020));
2823 time_frame-=GetRelativeTime();
2825 if(softsleep){
2826 current_module="sleep_soft";
2827 if(time_frame<0) mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow);
2828 while(time_frame>0) time_frame-=GetRelativeTime(); // burn the CPU
2831 #endif /* SYS_DARWIN */
2834 //if(!frame_time_remaining){ // should we display the frame now?
2836 //====================== FLIP PAGE (VIDEO BLT): =========================
2838 current_module="vo_check_events";
2839 if(vo_config_count) video_out->check_events();
2841 current_module="flip_page";
2842 if (!frame_time_remaining) {
2843 if(blit_frame){
2844 unsigned int t2=GetTimer();
2845 double tt;
2846 float j;
2847 #define FRAME_LAG_WARN 0.2
2848 j = ((float)t2 - lastframeout_ts) / 1000000;
2849 lastframeout_ts = GetTimer();
2850 if (j < frame_time + frame_time * -FRAME_LAG_WARN)
2851 too_fast_frame_cnt++;
2852 /* printf ("PANIC: too fast frame (%.3f)!\n", j); */
2853 else if (j > frame_time + frame_time * FRAME_LAG_WARN)
2854 too_slow_frame_cnt++;
2855 /* printf ("PANIC: too slow frame (%.3f)!\n", j); */
2857 if(vo_config_count) video_out->flip_page();
2858 if (play_n_frames >= 0) {
2859 --play_n_frames;
2860 if (play_n_frames <= 0) eof = PT_NEXT_ENTRY;
2863 // usec_sleep(50000); // test only!
2864 t2=GetTimer()-t2;
2865 tt = t2*0.000001f;
2866 vout_time_usage+=tt;
2867 } else {
2869 Well, no blitting is needed, but some devices (such as yuv4mpeg) must output frame
2870 otherwise A/V desync will occur. -- Alvieboy
2872 if (vo_config_count)
2873 video_out->control(VOCTRL_DUPLICATE_FRAME, NULL);
2876 //====================== A-V TIMESTAMP CORRECTION: =========================
2878 current_module="av_sync";
2880 if(sh_audio){
2881 float a_pts=0;
2882 float v_pts=0;
2884 // unplayed bytes in our and soundcard/dma buffer:
2885 float delay=playback_speed*audio_out->get_delay()+(float)sh_audio->a_buffer_len/(float)sh_audio->o_bps;
2887 if (autosync){
2889 * If autosync is enabled, the value for delay must be calculated
2890 * a bit differently. It is set only to the difference between
2891 * the audio and video timers. Any attempt to include the real
2892 * or corrected delay causes the pts_correction code below to
2893 * try to correct for the changes in delay which autosync is
2894 * trying to measure. This keeps the two from competing, but still
2895 * allows the code to correct for PTS drift *only*. (Using a delay
2896 * value here, even a "corrected" one, would be incompatible with
2897 * autosync mode.)
2899 delay=sh_audio->delay;
2900 delay+=(float)sh_audio->a_buffer_len/(float)sh_audio->o_bps;
2903 #if 0
2904 if(pts_from_bps){
2905 // PTS = sample_no / samplerate
2906 unsigned int samples=
2907 // (sh_audio->audio.dwSampleSize)?
2908 // ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) :
2909 ds_tell_block(d_audio); // <- used for VBR audio
2910 samples+=sh_audio->audio.dwStart; // offset
2911 a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate;
2912 delay_corrected=1;
2913 a_pts-=(sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
2914 } else
2915 #endif
2917 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec)
2918 a_pts=d_audio->pts;
2919 if(!delay_corrected) if(a_pts) delay_corrected=1;
2920 #if 0
2921 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n#X# pts=%5.3f ds_pts=%5.3f buff=%5.3f total=%5.3f\n",
2922 a_pts,
2923 ds_tell_pts(d_audio)/(float)sh_audio->i_bps,
2924 -sh_audio->a_in_buffer_len/(float)sh_audio->i_bps,
2925 a_pts+(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps);
2926 #endif
2927 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
2929 v_pts=sh_video ? sh_video->pts : d_video->pts;
2931 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);
2933 if(delay_corrected){
2934 static int drop_message=0;
2935 float x;
2936 AV_delay=(a_pts-delay-audio_delay)-v_pts;
2937 if(AV_delay>0.5 && drop_frame_cnt>50 && drop_message==0){
2938 ++drop_message;
2939 mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
2941 x=AV_delay*0.1f;
2942 if(x<-max_pts_correction) x=-max_pts_correction; else
2943 if(x> max_pts_correction) x= max_pts_correction;
2944 if(default_max_pts_correction>=0)
2945 max_pts_correction=default_max_pts_correction;
2946 else
2947 max_pts_correction=sh_video->frametime*0.10; // +-10% of time
2948 if(!frame_time_remaining){ sh_audio->delay+=x; c_total+=x;} // correction
2949 if(!quiet)
2950 print_status(a_pts - audio_delay - delay, AV_delay, c_total);
2953 } else {
2954 // No audio:
2956 if(!quiet)
2957 print_status(0, 0, 0);
2961 //============================ Auto QUALITY ============================
2963 /*Output quality adjustments:*/
2964 if(auto_quality>0){
2965 current_module="autoq";
2966 // float total=0.000001f * (GetTimer()-aq_total_time);
2967 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
2968 if(output_quality<auto_quality && aq_sleep_time>0)
2969 ++output_quality;
2970 else
2971 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
2972 if(output_quality>1 && aq_sleep_time<0)
2973 --output_quality;
2974 else
2975 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
2976 output_quality=0;
2977 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
2978 set_video_quality(sh_video,output_quality);
2981 } // end if(sh_video)
2983 //============================ Handle PAUSE ===============================
2985 current_module="pause";
2987 #ifdef USE_OSD
2988 if(osd_visible){
2989 if (!--osd_visible){
2990 vo_osd_progbar_type=-1; // disable
2991 vo_osd_changed(OSDTYPE_PROGBAR);
2992 if (osd_function != OSD_PAUSE)
2993 osd_function = OSD_PLAY;
2996 #endif
2998 if(osd_function==OSD_PAUSE){
2999 mp_cmd_t* cmd;
3000 if(!quiet) {
3001 // small hack to display the pause message in the osd line
3002 // The pause string is: "\n == PAUSE == \r" so we need to
3003 // take the first and the last char out
3004 if(use_term_osd) {
3005 char msg[128] = MSGTR_Paused;
3006 int mlen = strlen(msg);
3007 msg[mlen-1] = '\0';
3008 set_osd_msg(OSD_MSG_PAUSE,1,0,"%s",msg+1);
3009 update_osd_msg();
3010 } else
3011 mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
3012 if (identify)
3013 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_PAUSED\n");
3014 fflush(stdout);
3016 #ifdef HAVE_NEW_GUI
3017 if(use_gui) guiGetEvent( guiCEvent,(char *)guiSetPause );
3018 #endif
3019 if (video_out && sh_video && vo_config_count)
3020 video_out->control(VOCTRL_PAUSE, NULL);
3022 if (audio_out && sh_audio)
3023 audio_out->pause(); // pause audio, keep data if possible
3025 while( (cmd = mp_input_get_cmd(20,1,1)) == NULL) {
3026 if(sh_video && video_out && vo_config_count) video_out->check_events();
3027 #ifdef HAVE_NEW_GUI
3028 if(use_gui){
3029 guiEventHandling();
3030 guiGetEvent( guiReDraw,NULL );
3031 if(guiIntfStruct.Playing!=2 || (rel_seek_secs || abs_seek_pos)) break;
3033 #endif
3034 #ifdef HAVE_MENU
3035 if(vf_menu)
3036 vf_menu_pause_update(vf_menu);
3037 #endif
3038 usec_sleep(20000);
3040 if (cmd && cmd->id == MP_CMD_PAUSE) {
3041 cmd = mp_input_get_cmd(0,1,0);
3042 mp_cmd_free(cmd);
3044 osd_function=OSD_PLAY;
3045 if (audio_out && sh_audio)
3046 audio_out->resume(); // resume audio
3047 if (video_out && sh_video && vo_config_count)
3048 video_out->control(VOCTRL_RESUME, NULL); // resume video
3049 (void)GetRelativeTime(); // keep TF around FT in next cycle
3050 #ifdef HAVE_NEW_GUI
3051 if (use_gui)
3053 if ( guiIntfStruct.Playing == guiSetStop ) goto goto_next_file;
3054 guiGetEvent( guiCEvent,(char *)guiSetPlay );
3056 #endif
3057 was_paused = 1;
3060 // handle -sstep
3061 if(step_sec>0) {
3062 osd_function=OSD_FFW;
3063 rel_seek_secs+=step_sec;
3066 #ifdef USE_DVDNAV
3067 if (stream->type==STREAMTYPE_DVDNAV && dvd_nav_still)
3068 dvdnav_stream_sleeping((dvdnav_priv_t*)stream->priv);
3069 #endif
3071 //================= EDL =========================================
3073 #ifdef USE_EDL
3074 if( next_edl_record ) { // Are we (still?) doing EDL?
3075 if ( !sh_video ) {
3076 mp_msg( MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlNOsh_video );
3077 free_edl(edl_records);
3078 next_edl_record = NULL;
3079 edl_records = NULL;
3080 } else {
3081 if( sh_video->pts >= next_edl_record->start_sec ) {
3082 if( next_edl_record->action == EDL_SKIP ) {
3083 osd_function = OSD_FFW;
3084 abs_seek_pos = 0;
3085 rel_seek_secs = next_edl_record->length_sec;
3086 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop [%f], length [%f]\n", next_edl_record->start_sec, next_edl_record->stop_sec, next_edl_record->length_sec );
3087 edl_decision = 1;
3088 } else if( next_edl_record->action == EDL_MUTE ) {
3089 edl_muted = !edl_muted;
3090 if ((user_muted | edl_muted) != mixer.muted) mixer_mute(&mixer);
3091 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n", next_edl_record->start_sec );
3093 next_edl_record=next_edl_record->next;
3097 #endif
3099 //================= Keyboard events, SEEKing ====================
3101 current_module="key_events";
3104 mp_cmd_t* cmd;
3105 int brk_cmd = 0;
3106 while( !brk_cmd && (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3107 switch(cmd->id) {
3108 case MP_CMD_SEEK : {
3109 float v;
3110 int abs;
3111 if(sh_video)
3112 osd_show_percentage = sh_video->fps;
3113 v = cmd->args[0].v.f;
3114 abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
3115 if(abs==2) { /* Absolute seek to a specific timestamp in seconds */
3116 abs_seek_pos = 1;
3117 if(sh_video)
3118 osd_function= (v > sh_video->timer) ? OSD_FFW : OSD_REW;
3119 rel_seek_secs = v;
3121 else if(abs) { /* Absolute seek by percentage */
3122 abs_seek_pos = 3;
3123 if(sh_video)
3124 osd_function= (v > sh_video->timer) ? OSD_FFW : OSD_REW;
3125 rel_seek_secs = v/100.0;
3127 else {
3128 rel_seek_secs+= v;
3129 osd_function= (v > 0) ? OSD_FFW : OSD_REW;
3131 brk_cmd = 1;
3132 } break;
3133 #ifdef USE_EDL
3134 case MP_CMD_EDL_MARK:
3135 if( edl_fd ) {
3136 float v = sh_video->pts;
3137 fprintf( edl_fd, "%f %f %d\n", v-2, v, 0 );
3139 break;
3140 #endif
3141 case MP_CMD_SWITCH_RATIO : {
3142 if (cmd->nargs == 0)
3143 movie_aspect = (float) sh_video->disp_w / sh_video->disp_h;
3144 else
3145 movie_aspect = cmd->args[0].v.f;
3146 mpcodecs_config_vo (sh_video, sh_video->disp_w, sh_video->disp_h, 0);
3147 } break;
3148 case MP_CMD_AUDIO_DELAY : {
3149 float v = cmd->args[0].v.f;
3150 audio_delay += v;
3151 set_osd_msg(OSD_MSG_AV_DELAY,1,osd_duration,MSGTR_OSDAVDelay,
3152 ROUND(audio_delay*1000));
3153 if(sh_audio) sh_audio->delay+= v;
3154 } break;
3155 case MP_CMD_SPEED_INCR : {
3156 float v = cmd->args[0].v.f;
3157 playback_speed += v;
3158 set_osd_msg(OSD_MSG_SPEED,1,osd_duration,MSGTR_OSDSpeed, playback_speed);
3159 build_afilter_chain(sh_audio, &ao_data);
3160 } break;
3161 case MP_CMD_SPEED_MULT : {
3162 float v = cmd->args[0].v.f;
3163 playback_speed *= v;
3164 set_osd_msg(OSD_MSG_SPEED,1,osd_duration,MSGTR_OSDSpeed, playback_speed);
3165 build_afilter_chain(sh_audio, &ao_data);
3166 } break;
3167 case MP_CMD_SPEED_SET : {
3168 float v = cmd->args[0].v.f;
3169 playback_speed = v;
3170 set_osd_msg(OSD_MSG_SPEED,1,osd_duration,MSGTR_OSDSpeed, playback_speed);
3171 build_afilter_chain(sh_audio, &ao_data);
3172 } break;
3173 case MP_CMD_FRAME_STEP :
3174 case MP_CMD_PAUSE : {
3175 cmd->pausing = 1;
3176 brk_cmd = 1;
3177 } break;
3178 case MP_CMD_QUIT : {
3179 exit_player_with_rc(MSGTR_Exit_quit, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3181 case MP_CMD_GRAB_FRAMES : {
3182 grab_frames=2;
3183 } break;
3184 case MP_CMD_PLAY_TREE_STEP : {
3185 int n = cmd->args[0].v.i == 0 ? 1 : cmd->args[0].v.i;
3186 int force = cmd->args[1].v.i;
3188 #ifdef HAVE_NEW_GUI
3189 if (use_gui) {
3190 int i=0;
3191 if (n>0)
3192 for (i=0;i<n;i++)
3193 mplNext();
3194 else
3195 for (i=0;i<-1*n;i++)
3196 mplPrev();
3197 } else
3198 #endif
3200 if(!force && playtree_iter) {
3201 play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter);
3203 if(play_tree_iter_step(i,n,0) == PLAY_TREE_ITER_ENTRY)
3204 eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
3205 play_tree_iter_free(i);
3206 } else
3207 eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
3208 if(eof)
3209 play_tree_step = n;
3210 brk_cmd = 1;
3212 } break;
3213 case MP_CMD_PLAY_TREE_UP_STEP : {
3214 int n = cmd->args[0].v.i > 0 ? 1 : -1;
3215 int force = cmd->args[1].v.i;
3217 if(!force && playtree_iter) {
3218 play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter);
3219 if(play_tree_iter_up_step(i,n,0) == PLAY_TREE_ITER_ENTRY)
3220 eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
3221 play_tree_iter_free(i);
3222 } else
3223 eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
3224 brk_cmd = 1;
3225 } break;
3226 case MP_CMD_PLAY_ALT_SRC_STEP : {
3227 if(playtree_iter && playtree_iter->num_files > 1) {
3228 int v = cmd->args[0].v.i;
3229 if(v > 0 && playtree_iter->file < playtree_iter->num_files)
3230 eof = PT_NEXT_SRC;
3231 else if(v < 0 && playtree_iter->file > 1)
3232 eof = PT_PREV_SRC;
3234 brk_cmd = 1;
3235 } break;
3236 case MP_CMD_SUB_DELAY : {
3237 #ifdef USE_SUB
3238 if (sh_video) {
3239 int abs= cmd->args[1].v.i;
3240 float v = cmd->args[0].v.f;
3241 if(abs)
3242 sub_delay = v;
3243 else
3244 sub_delay += v;
3245 set_osd_msg(OSD_MSG_SUB_DELAY,1,osd_duration,
3246 MSGTR_OSDSubDelay, ROUND(sub_delay*1000));
3248 #endif
3249 } break;
3250 case MP_CMD_SUB_STEP : {
3251 #ifdef USE_SUB
3252 if (sh_video) {
3253 int movement = cmd->args[0].v.i;
3254 step_sub(subdata, sh_video->pts, movement);
3255 set_osd_msg(OSD_MSG_SUB_DELAY,1,osd_duration,
3256 MSGTR_OSDSubDelay, ROUND(sub_delay*1000));
3258 #endif
3259 } break;
3260 case MP_CMD_SUB_LOG : {
3261 #ifdef USE_SUB
3262 log_sub();
3263 #endif
3264 } break;
3265 case MP_CMD_OSD : {
3266 int v = cmd->args[0].v.i;
3267 int max = use_term_osd ? MAX_TERM_OSD_LEVEL : MAX_OSD_LEVEL;
3268 if(osd_level > max) osd_level = max;
3269 if(v < 0)
3270 osd_level=(osd_level+1)%(max+1);
3271 else
3272 osd_level= v > max ? max : v;
3273 /* Show OSD state when disabled, but not when an explicit
3274 argument is given to the osd command, i.e. in slave mode. */
3275 if (v == -1 && osd_level <= 1)
3276 set_osd_msg(OSD_MSG_OSD_STATUS,0,osd_duration,
3277 MSGTR_OSDosd, osd_level ? MSGTR_OSDenabled : MSGTR_OSDdisabled);
3278 else
3279 rm_osd_msg(OSD_MSG_OSD_STATUS);
3280 } break;
3281 case MP_CMD_OSD_SHOW_TEXT : {
3282 set_osd_msg(OSD_MSG_TEXT,1,osd_duration,"%64s",cmd->args[0].v.s);
3283 } break;
3284 case MP_CMD_VOLUME : {
3285 int v = cmd->args[0].v.i;
3287 // start change for absolute volume value
3288 int abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
3290 #ifdef USE_EDL
3291 if (edl_muted) break;
3292 user_muted = 0;
3293 #endif
3294 if( abs )
3296 mixer_setvolume(&mixer, (float)v, (float)v );
3297 } else {
3298 if(v > 0)
3299 mixer_incvolume(&mixer);
3300 else
3301 mixer_decvolume(&mixer);
3304 if(1){
3305 float vol;
3306 mixer_getbothvolume(&mixer, &vol);
3307 set_osd_bar(OSD_VOLUME,"Volume",0,100,vol);
3309 } break;
3310 case MP_CMD_MUTE:
3311 #ifdef USE_EDL
3312 user_muted = !user_muted;
3313 if ((edl_muted | user_muted) != mixer.muted)
3314 #endif
3315 mixer_mute(&mixer);
3316 break;
3317 case MP_CMD_LOADFILE : {
3318 play_tree_t* e = play_tree_new();
3319 play_tree_add_file(e,cmd->args[0].v.s);
3321 if (cmd->args[1].v.i) // append
3322 play_tree_append_entry(playtree, e);
3323 else {
3324 // Go back to the start point
3325 while(play_tree_iter_up_step(playtree_iter,0,1) != PLAY_TREE_ITER_END)
3326 /* NOP */;
3327 play_tree_free_list(playtree->child,1);
3328 play_tree_set_child(playtree,e);
3329 play_tree_iter_step(playtree_iter,0,0);
3330 eof = PT_NEXT_SRC;
3332 brk_cmd = 1;
3333 } break;
3334 case MP_CMD_LOADLIST : {
3335 play_tree_t* e = parse_playlist_file(cmd->args[0].v.s);
3336 if(!e)
3337 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_PlaylistLoadUnable,cmd->args[0].v.s);
3338 else {
3339 if (cmd->args[1].v.i) // append
3340 play_tree_append_entry(playtree, e);
3341 else {
3342 // Go back to the start point
3343 while(play_tree_iter_up_step(playtree_iter,0,1) != PLAY_TREE_ITER_END)
3344 /* NOP */;
3345 play_tree_free_list(playtree->child,1);
3346 play_tree_set_child(playtree,e);
3347 play_tree_iter_step(playtree_iter,0,0);
3348 eof = PT_NEXT_SRC;
3351 brk_cmd = 1;
3352 } break;
3353 case MP_CMD_GAMMA : {
3354 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
3356 if (!sh_video)
3357 break;
3359 if (vo_gamma_gamma == 1000)
3361 vo_gamma_gamma = 0;
3362 get_video_colors (sh_video, "gamma", &vo_gamma_gamma);
3365 if (abs)
3366 vo_gamma_gamma = v;
3367 else
3368 vo_gamma_gamma += v;
3370 if (vo_gamma_gamma > 100)
3371 vo_gamma_gamma = 100;
3372 else if (vo_gamma_gamma < -100)
3373 vo_gamma_gamma = -100;
3374 if (set_video_colors(sh_video, "gamma", vo_gamma_gamma))
3375 set_osd_bar(OSD_BRIGHTNESS,"Gamma",-100,100,vo_gamma_gamma);
3376 } break;
3377 case MP_CMD_BRIGHTNESS : {
3378 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
3380 if (!sh_video)
3381 break;
3383 if (vo_gamma_brightness == 1000)
3385 vo_gamma_brightness = 0;
3386 get_video_colors(sh_video, "brightness", &vo_gamma_brightness);
3389 if (abs)
3390 vo_gamma_brightness = v;
3391 else
3392 vo_gamma_brightness += v;
3394 if (vo_gamma_brightness > 100)
3395 vo_gamma_brightness = 100;
3396 else if (vo_gamma_brightness < -100)
3397 vo_gamma_brightness = -100;
3398 if(set_video_colors(sh_video, "brightness", vo_gamma_brightness))
3399 set_osd_bar(OSD_BRIGHTNESS,"Brightness",-100,100,vo_gamma_brightness);
3400 } break;
3401 case MP_CMD_CONTRAST : {
3402 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
3404 if (!sh_video)
3405 break;
3407 if (vo_gamma_contrast == 1000)
3409 vo_gamma_contrast = 0;
3410 get_video_colors(sh_video, "contrast", &vo_gamma_contrast);
3413 if (abs)
3414 vo_gamma_contrast = v;
3415 else
3416 vo_gamma_contrast += v;
3418 if (vo_gamma_contrast > 100)
3419 vo_gamma_contrast = 100;
3420 else if (vo_gamma_contrast < -100)
3421 vo_gamma_contrast = -100;
3422 if(set_video_colors(sh_video, "contrast", vo_gamma_contrast))
3423 set_osd_bar(OSD_CONTRAST,"Contrast",-100,100,vo_gamma_contrast);
3424 } break;
3425 case MP_CMD_SATURATION : {
3426 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
3428 if (!sh_video)
3429 break;
3431 if (vo_gamma_saturation == 1000)
3433 vo_gamma_saturation = 0;
3434 get_video_colors(sh_video, "saturation", &vo_gamma_saturation);
3437 if (abs)
3438 vo_gamma_saturation = v;
3439 else
3440 vo_gamma_saturation += v;
3442 if (vo_gamma_saturation > 100)
3443 vo_gamma_saturation = 100;
3444 else if (vo_gamma_saturation < -100)
3445 vo_gamma_saturation = -100;
3446 if(set_video_colors(sh_video, "saturation", vo_gamma_saturation))
3447 set_osd_bar(OSD_SATURATION,"Saturation",-100,100,vo_gamma_saturation);
3448 } break;
3449 case MP_CMD_HUE : {
3450 int v = cmd->args[0].v.i, abs = cmd->args[1].v.i;
3452 if (!sh_video)
3453 break;
3455 if (vo_gamma_hue == 1000)
3457 vo_gamma_hue = 0;
3458 get_video_colors(sh_video, "hue", &vo_gamma_hue);
3461 if (abs)
3462 vo_gamma_hue = v;
3463 else
3464 vo_gamma_hue += v;
3466 if (vo_gamma_hue > 100)
3467 vo_gamma_hue = 100;
3468 else if (vo_gamma_hue < -100)
3469 vo_gamma_hue = -100;
3470 if(set_video_colors(sh_video, "hue", vo_gamma_hue))
3471 set_osd_bar(OSD_HUE,"Hue",-100,100,vo_gamma_hue);
3472 } break;
3473 case MP_CMD_FRAMEDROPPING : {
3474 int v = cmd->args[0].v.i;
3475 if(v < 0)
3476 frame_dropping = (frame_dropping+1)%3;
3477 else
3478 frame_dropping = v > 2 ? 2 : v;
3479 set_osd_msg(OSD_MSG_FRAMEDROPPING,1,osd_duration,
3480 MSGTR_OSDFramedrop,(frame_dropping == 1 ? MSGTR_OSDFramedropOn :
3481 (frame_dropping == 2 ? MSGTR_OSDFramedropHard :
3482 MSGTR_OSDFramedropOff)));
3483 //vo_osd_changed(OSDTYPE_SUBTITLE);
3484 } break;
3485 #ifdef USE_TV
3486 case MP_CMD_TV_SET_FREQ : {
3487 if (file_format == DEMUXER_TYPE_TV)
3488 tv_set_freq((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.f * 16.0);
3489 } break;
3490 case MP_CMD_TV_SET_NORM : {
3491 if (file_format == DEMUXER_TYPE_TV)
3492 tv_set_norm((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.s);
3493 } break;
3494 case MP_CMD_TV_SET_BRIGHTNESS : {
3495 if (file_format == DEMUXER_TYPE_TV)
3496 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_BRIGHTNESS, cmd->args[0].v.i);
3497 } break;
3498 case MP_CMD_TV_SET_HUE : {
3499 if (file_format == DEMUXER_TYPE_TV)
3500 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_HUE, cmd->args[0].v.i);
3501 } break;
3502 case MP_CMD_TV_SET_SATURATION : {
3503 if (file_format == DEMUXER_TYPE_TV)
3504 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_SATURATION, cmd->args[0].v.i);
3505 } break;
3506 case MP_CMD_TV_SET_CONTRAST : {
3507 if (file_format == DEMUXER_TYPE_TV)
3508 tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_CONTRAST, cmd->args[0].v.i);
3509 } break;
3510 case MP_CMD_TV_STEP_CHANNEL : {
3511 if (file_format == DEMUXER_TYPE_TV) {
3512 int v = cmd->args[0].v.i;
3513 if(v > 0){
3514 tv_step_channel((tvi_handle_t*)(demuxer->priv), TV_CHANNEL_HIGHER);
3515 } else {
3516 tv_step_channel((tvi_handle_t*)(demuxer->priv), TV_CHANNEL_LOWER);
3518 if (tv_channel_list) {
3519 set_osd_msg(OSD_MSG_TV_CHANNEL,1,osd_duration,
3520 MSGTR_OSDChannel, tv_channel_current->name);
3521 //vo_osd_changed(OSDTYPE_SUBTITLE);
3525 #ifdef HAS_DVBIN_SUPPORT
3526 if((stream->type == STREAMTYPE_DVB) && stream->priv)
3528 dvb_priv_t *priv = (dvb_priv_t*) stream->priv;
3529 if(priv->is_on)
3531 int dir;
3532 int v = cmd->args[0].v.i;
3534 last_dvb_step = v;
3535 if(v > 0)
3536 dir = DVB_CHANNEL_HIGHER;
3537 else
3538 dir = DVB_CHANNEL_LOWER;
3541 if(dvb_step_channel(priv, dir))
3543 uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
3544 cache_uninit(stream);
3545 goto goto_enable_cache;
3549 #endif /* HAS_DVBIN_SUPPORT */
3550 break;
3551 case MP_CMD_TV_SET_CHANNEL : {
3552 if (file_format == DEMUXER_TYPE_TV) {
3553 tv_set_channel((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.s);
3554 if (tv_channel_list) {
3555 set_osd_msg(OSD_MSG_TV_CHANNEL,1,osd_duration,
3556 MSGTR_OSDChannel, tv_channel_current->name);
3557 //vo_osd_changed(OSDTYPE_SUBTITLE);
3560 } break;
3561 #ifdef HAS_DVBIN_SUPPORT
3562 case MP_CMD_DVB_SET_CHANNEL:
3564 if((stream->type == STREAMTYPE_DVB) && stream->priv)
3566 dvb_priv_t *priv = (dvb_priv_t*) stream->priv;
3567 if(priv->is_on)
3569 if(priv->list->current <= cmd->args[0].v.i)
3570 last_dvb_step = 1;
3571 else
3572 last_dvb_step = -1;
3574 if(dvb_set_channel(priv, cmd->args[1].v.i, cmd->args[0].v.i))
3576 uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
3577 cache_uninit(stream);
3578 goto goto_enable_cache;
3583 #endif /* HAS_DVBIN_SUPPORT */
3584 case MP_CMD_TV_LAST_CHANNEL : {
3585 if (file_format == DEMUXER_TYPE_TV) {
3586 tv_last_channel((tvi_handle_t*)(demuxer->priv));
3587 if (tv_channel_list) {
3588 set_osd_msg(OSD_MSG_TV_CHANNEL,1,osd_duration,
3589 MSGTR_OSDChannel, tv_channel_current->name);
3590 //vo_osd_changed(OSDTYPE_SUBTITLE);
3593 } break;
3594 case MP_CMD_TV_STEP_NORM : {
3595 if (file_format == DEMUXER_TYPE_TV)
3596 tv_step_norm((tvi_handle_t*)(demuxer->priv));
3597 } break;
3598 case MP_CMD_TV_STEP_CHANNEL_LIST : {
3599 if (file_format == DEMUXER_TYPE_TV)
3600 tv_step_chanlist((tvi_handle_t*)(demuxer->priv));
3601 } break;
3602 #endif /* USE_TV */
3603 case MP_CMD_SWITCH_VSYNC: {
3604 vo_vsync = ( cmd->nargs > 0 )? cmd->args[0].v.i : !vo_vsync;
3605 } break;
3606 case MP_CMD_VO_FULLSCREEN:
3608 #ifdef HAVE_NEW_GUI
3609 if ( use_gui ) guiGetEvent( guiIEvent,(char *)MP_CMD_GUI_FULLSCREEN );
3610 else
3611 #endif
3612 if(video_out && vo_config_count) video_out->control(VOCTRL_FULLSCREEN, 0);
3613 } break;
3614 case MP_CMD_VO_ONTOP:
3616 if(video_out && vo_config_count) {
3617 video_out->control(VOCTRL_ONTOP, 0);
3618 set_osd_msg(OSD_MSG_ONTOP,1,osd_duration,
3619 MSGTR_OSDStayOnTop, vo_ontop? MSGTR_OSDenabled : MSGTR_OSDdisabled);
3620 //vo_osd_changed(OSDTYPE_SUBTITLE);
3623 } break;
3624 case MP_CMD_VO_ROOTWIN:
3626 if(video_out && vo_config_count) {
3627 video_out->control(VOCTRL_ROOTWIN, 0);
3628 set_osd_msg(OSD_MSG_ROOTWIN,1,osd_duration,
3629 MSGTR_OSDRootwin, vo_rootwin? MSGTR_OSDenabled : MSGTR_OSDdisabled);
3630 //vo_osd_changed(OSDTYPE_SUBTITLE);
3633 } break;
3634 case MP_CMD_VO_BORDER:
3636 if(video_out && vo_config_count) {
3637 video_out->control(VOCTRL_BORDER, 0);
3638 set_osd_msg(OSD_MSG_BORDER,1,osd_duration,
3639 MSGTR_OSDBorder, vo_border? MSGTR_OSDenabled : MSGTR_OSDdisabled);
3640 //vo_osd_changed(OSDTYPE_SUBTITLE);
3643 } break;
3644 case MP_CMD_PANSCAN : {
3645 if ( !video_out ) break;
3646 if ( video_out->control( VOCTRL_GET_PANSCAN,NULL ) == VO_TRUE )
3648 int abs= cmd->args[1].v.i;
3649 float v = cmd->args[0].v.f;
3650 float res;
3651 if(abs) res = v;
3652 else res = vo_panscan+v;
3653 vo_panscan = res > 1 ? 1 : res < 0 ? 0 : res;
3654 video_out->control( VOCTRL_SET_PANSCAN,NULL );
3655 set_osd_bar(OSD_PANSCAN,"Panscan",0,1,vo_panscan);
3657 } break;
3658 case MP_CMD_SUB_POS:
3660 #ifdef USE_SUB
3661 if (sh_video) {
3662 int v;
3663 v = cmd->args[0].v.i;
3665 sub_pos+=v;
3666 if(sub_pos >100) sub_pos=100;
3667 if(sub_pos <0) sub_pos=0;
3668 set_osd_msg(OSD_MSG_SUB_POS,1,osd_duration,
3669 MSGTR_OSDSubPosition, sub_pos);
3670 vo_osd_changed(OSDTYPE_SUBTITLE);
3672 #endif
3673 } break;
3674 case MP_CMD_SUB_ALIGNMENT:
3676 #ifdef USE_SUB
3677 if (sh_video) {
3678 if (cmd->nargs >= 1)
3679 sub_alignment = cmd->args[0].v.i;
3680 else
3681 sub_alignment = (sub_alignment+1) % 3;
3682 set_osd_msg(OSD_MSG_SUB_ALIGN,1,osd_duration,
3683 MSGTR_OSDSubAlignment,(sub_alignment == 2 ? MSGTR_OSDSubBottom :
3684 (sub_alignment == 1 ? MSGTR_OSDSubCenter : MSGTR_OSDSubTop)));
3685 vo_osd_changed(OSDTYPE_SUBTITLE);
3687 #endif
3688 } break;
3689 case MP_CMD_SUB_VISIBILITY:
3691 #ifdef USE_SUB
3692 if (sh_video) {
3693 sub_visibility=1-sub_visibility;
3694 set_osd_msg(OSD_MSG_SUB_VISIBLE,1,osd_duration,
3695 MSGTR_OSDSubtitles, sub_visibility?MSGTR_OSDenabled:MSGTR_OSDdisabled);
3696 vo_osd_changed(OSDTYPE_SUBTITLE);
3698 #endif
3699 } break;
3700 case MP_CMD_SUB_LOAD:
3702 #ifdef USE_SUB
3703 if (sh_video) {
3704 int n = set_of_sub_size;
3705 add_subtitles(cmd->args[0].v.s, sh_video->fps, 0);
3706 if (n != set_of_sub_size) {
3707 if (global_sub_indices[SUB_SOURCE_SUBS] < 0)
3708 global_sub_indices[SUB_SOURCE_SUBS] = global_sub_size;
3709 ++global_sub_size;
3712 #endif
3713 } break;
3714 case MP_CMD_SUB_REMOVE:
3716 #ifdef USE_SUB
3717 if (sh_video) {
3718 int v = cmd->args[0].v.i;
3719 sub_data *subd;
3720 if (v < 0) {
3721 for (v = 0; v < set_of_sub_size; ++v) {
3722 subd = set_of_subtitles[v];
3723 mp_msg(MSGT_CPLAYER, MSGL_STATUS, MSGTR_RemovedSubtitleFile, v + 1, subd->filename);
3724 sub_free(subd);
3725 set_of_subtitles[v] = NULL;
3727 global_sub_indices[SUB_SOURCE_SUBS] = -1;
3728 global_sub_size -= set_of_sub_size;
3729 set_of_sub_size = 0;
3730 if (set_of_sub_pos >= 0) {
3731 global_sub_pos = -2;
3732 vo_sub_last = vo_sub = NULL;
3733 vo_osd_changed(OSDTYPE_SUBTITLE);
3734 vo_update_osd(sh_video->disp_w, sh_video->disp_h);
3735 mp_input_queue_cmd(mp_input_parse_cmd("sub_select"));
3738 else if (v < set_of_sub_size) {
3739 subd = set_of_subtitles[v];
3740 mp_msg(MSGT_CPLAYER, MSGL_STATUS, MSGTR_RemovedSubtitleFile, v + 1, subd->filename);
3741 sub_free(subd);
3742 if (set_of_sub_pos == v) {
3743 global_sub_pos = -2;
3744 vo_sub_last = vo_sub = NULL;
3745 vo_osd_changed(OSDTYPE_SUBTITLE);
3746 vo_update_osd(sh_video->disp_w, sh_video->disp_h);
3747 mp_input_queue_cmd(mp_input_parse_cmd("sub_select"));
3749 else if (set_of_sub_pos > v) {
3750 --set_of_sub_pos;
3751 --global_sub_pos;
3753 while (++v < set_of_sub_size)
3754 set_of_subtitles[v - 1] = set_of_subtitles[v];
3755 --set_of_sub_size;
3756 --global_sub_size;
3757 if (set_of_sub_size <= 0)
3758 global_sub_indices[SUB_SOURCE_SUBS] = -1;
3759 set_of_subtitles[set_of_sub_size] = NULL;
3762 #endif /* USE_SUB */
3763 } break;
3764 case MP_CMD_GET_SUB_VISIBILITY:
3766 #ifdef USE_SUB
3767 if (sh_video) {
3768 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ANS_SUB_VISIBILITY=%ld\n", sub_visibility);
3770 #endif
3771 } break;
3772 case MP_CMD_SUB_SELECT:
3773 if (global_sub_size) {
3774 int source = -1;
3775 int v = cmd->args[0].v.i;
3777 if (v < -1)
3778 global_sub_pos++;
3779 else
3780 global_sub_pos = v;
3781 if (global_sub_pos >= global_sub_size)
3782 global_sub_pos = -1;
3783 if (global_sub_pos >= 0)
3784 source = sub_source();
3786 mp_msg(MSGT_CPLAYER, MSGL_DBG3, "subtitles: %d subs, (v@%d s@%d d@%d), @%d, source @%d\n",
3787 global_sub_size, global_sub_indices[SUB_SOURCE_VOBSUB],
3788 global_sub_indices[SUB_SOURCE_SUBS], global_sub_indices[SUB_SOURCE_DEMUX],
3789 global_sub_pos, source);
3791 #ifdef USE_SUB
3792 set_of_sub_pos = -1;
3793 subdata = NULL;
3794 vo_sub_last = vo_sub = NULL;
3795 #endif
3796 vobsub_id = -1;
3797 if(dvdsub_lang) {
3798 dvdsub_id = -1;
3799 if (d_dvdsub) d_dvdsub->id = -1;
3802 // be careful!
3803 // if sub_changed is till on but subdata's been reset, bad things happen.
3804 osd_show_vobsub_changed = 0;
3805 osd_show_sub_changed = 0;
3807 if (source == SUB_SOURCE_VOBSUB) {
3808 vobsub_id = global_sub_pos - global_sub_indices[SUB_SOURCE_VOBSUB];
3809 if (!global_sub_quiet_osd_hack) osd_show_vobsub_changed = sh_video->fps;
3810 #ifdef USE_SUB
3811 } else if (source == SUB_SOURCE_SUBS) {
3812 set_of_sub_pos = global_sub_pos - global_sub_indices[SUB_SOURCE_SUBS];
3813 subdata = set_of_subtitles[set_of_sub_pos];
3814 if (!global_sub_quiet_osd_hack) osd_show_sub_changed = sh_video->fps;
3815 vo_osd_changed(OSDTYPE_SUBTITLE);
3817 // FIXME: is this the correct place for these?
3818 switch (stream_dump_type) {
3819 case 3: list_sub_file(subdata); break;
3820 case 4: dump_mpsub(subdata, sh_video->fps); break;
3821 case 6: dump_srt(subdata, sh_video->fps); break;
3822 case 7: dump_microdvd(subdata, sh_video->fps); break;
3823 case 8: dump_jacosub(subdata, sh_video->fps); break;
3824 case 9: dump_sami(subdata, sh_video->fps); break;
3826 #endif
3827 } else if (source == SUB_SOURCE_DEMUX) {
3828 dvdsub_id = global_sub_pos - global_sub_indices[SUB_SOURCE_DEMUX];
3829 if (d_dvdsub) {
3830 #ifdef USE_DVDREAD
3831 if (vo_spudec && stream->type == STREAMTYPE_DVD) {
3832 d_dvdsub->id = dvdsub_id;
3833 spudec_reset(vo_spudec);
3835 #endif
3836 #ifdef HAVE_OGGVORBIS
3837 if (demuxer->type == DEMUXER_TYPE_OGG)
3838 d_dvdsub->id = demux_ogg_sub_id(demuxer, dvdsub_id);
3839 #endif
3840 #ifdef HAVE_MATROSKA
3841 if (demuxer->type == DEMUXER_TYPE_MATROSKA) {
3842 d_dvdsub->id = demux_mkv_change_subs(demuxer, dvdsub_id);
3843 if (d_dvdsub->id >= 0 && ((mkv_sh_sub_t *)d_dvdsub->sh)->type == 'v') {
3844 mkv_sh_sub_t *mkv_sh_sub = (mkv_sh_sub_t *)d_dvdsub->sh;
3845 if (vo_spudec != NULL)
3846 spudec_free(vo_spudec);
3847 vo_spudec =
3848 spudec_new_scaled_vobsub(mkv_sh_sub->has_palette ? mkv_sh_sub->palette : NULL, mkv_sh_sub->colors,
3849 mkv_sh_sub->custom_colors,
3850 mkv_sh_sub->width,
3851 mkv_sh_sub->height);
3852 if (!forced_subs_only)
3853 forced_subs_only = mkv_sh_sub->forced_subs_only;
3854 if (vo_spudec) {
3855 spudec_set_forced_subs_only(vo_spudec, forced_subs_only);
3856 inited_flags |= INITED_SPUDEC;
3860 #endif
3862 if (!global_sub_quiet_osd_hack) osd_show_vobsub_changed = sh_video->fps;
3863 } else { // off
3864 if (!global_sub_quiet_osd_hack) osd_show_vobsub_changed = sh_video->fps;
3865 #ifdef USE_SUB
3866 vo_osd_changed(OSDTYPE_SUBTITLE);
3867 #endif
3869 // it's annoying and dumb to show osd saying "off" at every subless file...
3870 global_sub_quiet_osd_hack = 0;
3872 break;
3873 case MP_CMD_SUB_FORCED_ONLY:
3874 if (vo_spudec) {
3875 forced_subs_only = forced_subs_only ? 0 : ~0; // toggle state
3876 spudec_set_forced_subs_only(vo_spudec,forced_subs_only);
3878 break;
3879 case MP_CMD_SCREENSHOT :
3880 if(vo_config_count){
3881 mp_msg(MSGT_CPLAYER,MSGL_INFO,"sending VFCTRL_SCREENSHOT!\n");
3882 if(CONTROL_OK!=((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter, VFCTRL_SCREENSHOT, 0))
3883 video_out->control(VOCTRL_SCREENSHOT, NULL);
3885 break;
3886 case MP_CMD_VF_CHANGE_RECTANGLE:
3887 set_rectangle(sh_video, cmd->args[0].v.i, cmd->args[1].v.i);
3888 break;
3890 case MP_CMD_GET_TIME_LENGTH : {
3891 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ANS_LENGTH=%.2lf\n", demuxer_get_time_length(demuxer));
3892 } break;
3894 case MP_CMD_GET_VO_FULLSCREEN : {
3895 if(video_out && vo_config_count)
3896 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ANS_VO_FULLSCREEN=%ld\n", vo_fs);
3897 } break;
3899 case MP_CMD_GET_PERCENT_POS : {
3900 mp_msg(MSGT_GLOBAL,MSGL_INFO, "ANS_PERCENT_POSITION=%ld\n", demuxer_get_percent_pos(demuxer));
3901 } break;
3902 case MP_CMD_GET_TIME_POS : {
3903 float pos = 0;
3904 if (sh_video)
3905 pos = sh_video->pts;
3906 else
3907 if (sh_audio && audio_out)
3908 pos = sh_audio->delay - audio_out->get_delay() * playback_speed;
3909 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_TIME_POSITION=%.1f\n", pos);
3910 } break;
3911 case MP_CMD_SWITCH_AUDIO : {
3912 int v = demuxer_switch_audio(demuxer, cmd->args[0].v.i);
3913 if (identify)
3914 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_TRACK=%d\n", v);
3915 } break;
3916 case MP_CMD_RUN : {
3917 #ifndef __MINGW32__
3918 if(!fork()) {
3919 execl("/bin/sh","sh","-c",cmd->args[0].v.s,NULL);
3920 exit(0);
3922 #endif
3923 } break;
3924 case MP_CMD_KEYDOWN_EVENTS : {
3925 mplayer_put_key(cmd->args[0].v.i);
3926 } break;
3927 #ifdef USE_DVDNAV
3928 case MP_CMD_DVDNAV_EVENT: {
3929 dvdnav_priv_t * dvdnav_priv = (dvdnav_priv_t*)(stream->priv);
3930 dvdnav_event_t * dvdnav_event = (dvdnav_event_t *)(cmd->args[0].v.v);
3932 /* ignore these events if we're not in dvd_nav mode */
3933 if (stream->type != STREAMTYPE_DVDNAV) break;
3935 if (!dvdnav_event) {
3936 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNullEvent);
3937 break;
3940 //printf("mplayer: got event: %d\n",dvdnav_event->event);
3942 switch (dvdnav_event->event) {
3943 case DVDNAV_BLOCK_OK: {
3944 /* be silent about this one */
3945 break;
3947 case DVDNAV_HIGHLIGHT: {
3948 dvdnav_highlight_event_t *hevent = (dvdnav_highlight_event_t*)(dvdnav_event->details);
3949 if (!hevent) {
3950 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavHighlightEventBroken);
3951 break;
3954 if (hevent->display && hevent->buttonN>0)
3956 //dvdnav_priv->seen_root_menu=1; /* if we got a highlight, we're on a menu */
3957 sprintf( dvd_nav_text, "Highlight button %d (%u,%u)-(%u,%u) PTS %d (now is %5.2f)",
3958 hevent->buttonN,
3959 hevent->sx,hevent->sy,
3960 hevent->ex,hevent->ey,
3961 hevent->pts, d_video->pts);
3962 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavEvent,dvd_nav_text);
3963 //osd_show_dvd_nav_delay = 60;
3965 osd_show_dvd_nav_highlight=1; /* this is just a flag */
3966 osd_show_dvd_nav_sx=hevent->sx;
3967 osd_show_dvd_nav_ex=hevent->ex;
3968 osd_show_dvd_nav_sy=hevent->sy;
3969 osd_show_dvd_nav_ey=hevent->ey;
3971 else {
3972 osd_show_dvd_nav_highlight=0;
3973 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavHighlightHide);
3975 break;
3977 case DVDNAV_STILL_FRAME: {
3978 dvdnav_still_event_t *still_event = (dvdnav_still_event_t*)(dvdnav_event->details);
3980 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavStillFrame, still_event->length );
3981 while (dvdnav_stream_sleeping(dvdnav_priv)) {
3982 usec_sleep(1000); /* 1ms */
3984 dvdnav_stream_sleep(dvdnav_priv,still_event->length);
3985 break;
3987 case DVDNAV_STOP: {
3988 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavStop );
3989 break;
3991 case DVDNAV_NOP: {
3992 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavNOP);
3993 break;
3995 case DVDNAV_SPU_STREAM_CHANGE: {
3996 #if DVDNAVVERSION > 012
3997 dvdnav_spu_stream_change_event_t *stream_change = (dvdnav_spu_stream_change_event_t*)(dvdnav_event->details);
3999 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSpuStreamChangeVerbose,
4000 stream_change->physical_wide,
4001 stream_change->physical_letterbox,
4002 stream_change->physical_pan_scan,
4003 stream_change->logical);
4005 if (vo_spudec && dvdsub_id!=stream_change->physical_wide) {
4006 mp_msg(MSGT_INPUT,MSGL_DBG2,"d_dvdsub->id change: was %d is now %d\n",
4007 d_dvdsub->id,stream_change->physical_wide);
4008 // FIXME: need a better way to change SPU id
4009 d_dvdsub->id=dvdsub_id=stream_change->physical_wide;
4010 if (vo_spudec) spudec_reset(vo_spudec);
4012 #else
4013 dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details);
4015 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSpuStreamChange,
4016 stream_change->physical,
4017 stream_change->logical);
4019 if (vo_spudec && dvdsub_id!=stream_change->physical) {
4020 mp_msg(MSGT_INPUT,MSGL_DBG2,"d_dvdsub->id change: was %d is now %d\n",
4021 d_dvdsub->id,stream_change->physical);
4022 // FIXME: need a better way to change SPU id
4023 d_dvdsub->id=dvdsub_id=stream_change->physical;
4024 if (vo_spudec) spudec_reset(vo_spudec);
4026 #endif /* DVDNAVVERSION > 012 */
4027 break;
4029 case DVDNAV_AUDIO_STREAM_CHANGE: {
4030 int aid_temp;
4031 #if DVDNAVVERSION > 012
4032 dvdnav_audio_stream_change_event_t *stream_change = (dvdnav_audio_stream_change_event_t*)(dvdnav_event->details);
4033 #else
4034 dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details);
4035 #endif
4037 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavAudioStreamChange,
4038 stream_change->physical,
4039 stream_change->logical);
4041 aid_temp=stream_change->physical;
4042 if (aid_temp>=0) aid_temp+=128; // FIXME: is this sane?
4043 if (d_audio && audio_id!=aid_temp) {
4044 mp_msg(MSGT_INPUT,MSGL_DBG2,"d_audio->id change: was %d is now %d\n",
4045 d_audio->id,aid_temp);
4046 // FIXME: need a bettery way to change audio stream id
4047 d_audio->id=dvdsub_id=aid_temp;
4048 if(sh_audio) resync_audio_stream(sh_audio);
4051 break;
4053 case DVDNAV_VTS_CHANGE: {
4054 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavVTSChange);
4055 break;
4057 case DVDNAV_CELL_CHANGE: {
4058 dvdnav_cell_change_event_t *cell_change = (dvdnav_cell_change_event_t*)(dvdnav_event->details);
4059 cell_playback_t * cell_playback = cell_change->new_cell;
4061 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavCellChange);
4062 osd_show_dvd_nav_highlight=0; /* screen changed, disable menu */
4064 printf("new still time: %d\n",cell_playback->still_time);
4065 printf("new cell_cmd_nr: %d\n",cell_playback->cell_cmd_nr);
4066 printf("new playback_time: %02d:%02d:%02d.%02d\n",
4067 cell_playback->playback_time.hour,
4068 cell_playback->playback_time.minute,
4069 cell_playback->playback_time.second,
4070 cell_playback->playback_time.frame_u);
4073 //rel_seek_secs=1; // not really: we can't seek, but it'll reset the muxer
4074 //abs_seek_pos=0;
4075 break;
4077 case DVDNAV_NAV_PACKET: {
4078 // printf("DVDNAV Event: Nav Packet\n");
4079 break;
4081 case DVDNAV_SPU_CLUT_CHANGE: {
4082 uint32_t * new_clut = (uint32_t *)(dvdnav_event->details);
4084 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSpuClutChange);
4085 // send new palette to SPU decoder
4086 if (vo_spudec) spudec_update_palette(vo_spudec,new_clut);
4088 break;
4090 case DVDNAV_SEEK_DONE: {
4091 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_DvdnavNavSeekDone);
4092 break;
4096 // free the dvdnav event
4097 free(dvdnav_event->details);
4098 free(dvdnav_event);
4099 cmd->args[0].v.v=NULL;
4101 case MP_CMD_DVDNAV: {
4102 dvdnav_priv_t * dvdnav_priv=(dvdnav_priv_t*)stream->priv;
4104 /* ignore these events if we're not in dvd_nav mode */
4105 if (stream->type != STREAMTYPE_DVDNAV) break;
4107 switch (cmd->args[0].v.i) {
4108 case MP_CMD_DVDNAV_UP:
4109 dvdnav_upper_button_select(dvdnav_priv->dvdnav);
4110 break;
4111 case MP_CMD_DVDNAV_DOWN:
4112 dvdnav_lower_button_select(dvdnav_priv->dvdnav);
4113 break;
4114 case MP_CMD_DVDNAV_LEFT:
4115 dvdnav_left_button_select(dvdnav_priv->dvdnav);
4116 break;
4117 case MP_CMD_DVDNAV_RIGHT:
4118 dvdnav_right_button_select(dvdnav_priv->dvdnav);
4119 break;
4120 case MP_CMD_DVDNAV_MENU:
4121 mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_MenuCall);
4122 dvdnav_menu_call(dvdnav_priv->dvdnav,DVD_MENU_Root);
4123 break;
4124 case MP_CMD_DVDNAV_SELECT:
4125 dvdnav_button_activate(dvdnav_priv->dvdnav);
4126 break;
4127 default:
4128 mp_msg(MSGT_CPLAYER, MSGL_V, "Weird DVD Nav cmd %d\n",cmd->args[0].v.i);
4129 break;
4131 break;
4133 #endif /* USE_DVDNAV */
4134 default : {
4135 #ifdef HAVE_NEW_GUI
4136 if ( ( use_gui )&&( cmd->id > MP_CMD_GUI_EVENTS ) ) guiGetEvent( guiIEvent,(char *)cmd->id );
4137 else
4138 #endif
4139 mp_msg(MSGT_CPLAYER, MSGL_V, "Received unknown cmd %s\n",cmd->name);
4142 switch (cmd->pausing) {
4143 case 1: // "pausing"
4144 osd_function = OSD_PAUSE;
4145 break;
4146 case 3: // "pausing_toggle"
4147 was_paused = !was_paused;
4148 // fall through
4149 case 2: // "pausing_keep"
4150 if (was_paused) osd_function = OSD_PAUSE;
4152 mp_cmd_free(cmd);
4155 was_paused = 0;
4157 if (seek_to_sec) {
4158 int a,b; float d;
4160 if (sscanf(seek_to_sec, "%d:%d:%f", &a,&b,&d)==3)
4161 rel_seek_secs += 3600*a +60*b +d ;
4162 else if (sscanf(seek_to_sec, "%d:%f", &a, &d)==2)
4163 rel_seek_secs += 60*a +d;
4164 else if (sscanf(seek_to_sec, "%f", &d)==1)
4165 rel_seek_secs += d;
4167 seek_to_sec = NULL;
4170 /* Looping. */
4171 if(eof==1 && loop_times>=0) {
4172 int l = loop_times;
4173 play_tree_iter_step(playtree_iter,0,0);
4174 loop_times = l;
4175 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d, eof = %d\n", loop_times,eof);
4177 if(loop_times>1) loop_times--; else
4178 if(loop_times==1) loop_times=-1;
4179 play_n_frames=play_n_frames_mf;
4180 eof=0;
4181 abs_seek_pos=3; rel_seek_secs=0; // seek to start of movie (0%)
4182 loop_seek = 1;
4185 if(rel_seek_secs || abs_seek_pos){
4186 current_module="seek";
4187 if(demux_seek(demuxer,rel_seek_secs,abs_seek_pos)){
4188 // success:
4189 /* FIXME there should be real seeking for vobsub */
4190 if(sh_video) sh_video->pts=d_video->pts;
4191 if (vo_vobsub)
4192 //vobsub_reset(vo_vobsub);
4193 vobsub_seek(vo_vobsub,sh_video->pts);
4194 #if 0
4195 if(sh_video && d_video->packs == 0)
4196 ds_fill_buffer(d_video);
4197 if(sh_audio){
4198 if(d_audio->packs == 0)
4199 ds_fill_buffer(d_audio);
4200 if(verbose>0){
4201 float a_pts=d_audio->pts;
4202 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
4203 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);
4205 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);
4206 } else {
4207 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A: --- V:%6.1f \r",d_video->pts);
4209 #endif
4210 fflush(stdout);
4212 if(sh_video){
4213 current_module="seek_video_reset";
4214 resync_video_stream(sh_video);
4215 if(vo_config_count) video_out->control(VOCTRL_RESET,NULL);
4218 if(sh_audio){
4219 current_module="seek_audio_reset";
4220 audio_out->reset(); // stop audio, throwing away buffered data
4222 // Set OSD:
4223 if(!loop_seek){
4224 #ifdef USE_EDL
4225 if( !edl_decision )
4226 #endif
4227 set_osd_bar(0,"Position",0,100,demuxer_get_percent_pos(demuxer));
4230 if(sh_video) {
4231 c_total=0;
4232 max_pts_correction=0.1;
4233 osd_visible=sh_video->fps; // to rewert to PLAY pointer after 1 sec
4234 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
4235 drop_frame_cnt=0;
4236 too_slow_frame_cnt=0;
4237 too_fast_frame_cnt=0;
4239 if(vo_spudec) spudec_reset(vo_spudec);
4242 #ifdef USE_EDL
4244 * We saw a seek, have to rewind the EDL operations stack
4245 * and find the next EDL action to take care of.
4248 edl_muted = 0;
4249 next_edl_record = edl_records;
4251 while (next_edl_record)
4253 /* Trying to remember if we need to mute/unmute first;
4254 * prior EDL implementation lacks this.
4257 if (next_edl_record->start_sec >= sh_video->pts)
4258 break;
4260 if (next_edl_record->action == EDL_MUTE) edl_muted = !edl_muted;
4261 next_edl_record = next_edl_record->next;
4264 if ((user_muted | edl_muted) != mixer.muted) mixer_mute(&mixer);
4265 #endif
4266 rel_seek_secs=0;
4267 abs_seek_pos=0;
4268 frame_time_remaining=0;
4269 current_module=NULL;
4270 loop_seek=0;
4273 #ifdef HAVE_NEW_GUI
4274 if(use_gui){
4275 guiEventHandling();
4276 if(demuxer->file_format==DEMUXER_TYPE_AVI && sh_video && sh_video->video.dwLength>2){
4277 // get pos from frame number / total frames
4278 guiIntfStruct.Position=(float)d_video->pack_no*100.0f/sh_video->video.dwLength;
4279 } else {
4280 off_t len = ( demuxer->movi_end - demuxer->movi_start );
4281 off_t pos = ( demuxer->file_format == DEMUXER_TYPE_AUDIO?stream->pos:demuxer->filepos );
4282 guiIntfStruct.Position=(len <= 0? 0.0f : ( pos - demuxer->movi_start ) * 100.0f / len );
4284 if ( sh_video ) guiIntfStruct.TimeSec=sh_video->pts;
4285 else if ( sh_audio ) guiIntfStruct.TimeSec=sh_audio->delay;
4286 guiIntfStruct.LengthInSec=demuxer_get_time_length(demuxer);
4287 guiGetEvent( guiReDraw,NULL );
4288 guiGetEvent( guiSetVolume,NULL );
4289 if(guiIntfStruct.Playing==0) break; // STOP
4290 if(guiIntfStruct.Playing==2) osd_function=OSD_PAUSE;
4291 if ( guiIntfStruct.DiskChanged || guiIntfStruct.NewPlay ) goto goto_next_file;
4292 #ifdef USE_DVDREAD
4293 if ( stream->type == STREAMTYPE_DVD )
4295 dvd_priv_t * dvdp = stream->priv;
4296 guiIntfStruct.DVD.current_chapter=dvd_chapter_from_cell(dvdp,guiIntfStruct.DVD.current_title-1, dvdp->cur_cell)+1;
4298 #endif
4300 #endif /* HAVE_NEW_GUI */
4303 //================= Update OSD ====================
4304 #ifdef USE_OSD
4305 if(sh_video){
4306 char osd_text_tmp[64];
4307 // The subtitles stuff is particulary messy. Keep the mess for now it will be
4308 // cleaned up when properties get implemented.
4309 if (osd_show_vobsub_changed) {
4310 snprintf(osd_text_tmp, 63, MSGTR_OSDSubtitlesOff);
4311 switch (demuxer->type) {
4312 #ifdef HAVE_MATROSKA
4313 case DEMUXER_TYPE_MATROSKA:
4314 if (dvdsub_id >= 0) {
4315 char lang[40] = MSGTR_OSDunknown;
4316 demux_mkv_get_sub_lang(demuxer, dvdsub_id, lang, 39);
4317 lang[39] = 0;
4318 snprintf(osd_text_tmp, 63, MSGTR_OSDSubtitlesLanguage, dvdsub_id, lang);
4320 break;
4321 #endif
4322 #ifdef HAVE_OGGVORBIS
4323 case DEMUXER_TYPE_OGG:
4324 if (d_dvdsub && dvdsub_id >= 0) {
4325 char *lang = demux_ogg_sub_lang(demuxer, dvdsub_id);
4326 snprintf(osd_text_tmp, 63, MSGTR_OSDSubtitlesLanguage, dvdsub_id, lang ? lang : MSGTR_OSDunknown);
4328 break;
4329 #endif
4330 default:
4331 if (vo_vobsub && vobsub_id >= 0) {
4332 char *language = MSGTR_OSDnone;
4333 language = vobsub_get_id(vo_vobsub, (unsigned int) vobsub_id);
4334 snprintf(osd_text_tmp, 63, MSGTR_OSDSubtitlesLanguage, vobsub_id, language ? language : MSGTR_OSDunknown);
4336 #ifdef USE_DVDREAD
4337 if (vo_spudec && dvdsub_id >= 0) {
4338 char lang[3] = "\0\0\0";
4339 int code = 0;
4340 code = dvd_lang_from_sid(stream, dvdsub_id);
4341 if (code) {
4342 lang[0] = code >> 8;
4343 lang[1] = code;
4345 snprintf(osd_text_tmp, 63, MSGTR_OSDSubtitlesLanguage, dvdsub_id, code ? lang : MSGTR_OSDnone);
4347 #endif
4348 break;
4350 osd_show_vobsub_changed = 0;
4351 set_osd_msg(OSD_MSG_SUB_CHANGED,1,osd_duration,
4352 "%s",osd_text_tmp);
4353 } else
4354 #ifdef USE_SUB
4355 if (osd_show_sub_changed) {
4356 char *tmp2;
4357 tmp = subdata->filename;
4358 if ((tmp2 = strrchr(tmp, '/'))) {
4359 tmp = tmp2+1;
4361 set_osd_msg(OSD_MSG_SUB_CHANGED,1,osd_duration,
4362 MSGTR_OSDSub, set_of_sub_pos + 1,
4363 strlen(tmp) < 20 ? "" : "...",
4364 strlen(tmp) < 20 ? tmp : tmp+strlen(tmp)-19);
4365 osd_show_sub_changed = 0;
4367 #endif
4369 // for(i=1;i<=11;i++) osd_text_buffer[10+i]=i;osd_text_buffer[10+i]=0;
4370 // vo_osd_text=osd_text_buffer;
4371 #endif /* USE_OSD */
4373 update_osd_msg();
4375 #ifdef USE_SUB
4376 // find sub
4377 if(subdata && sh_video && sh_video->pts>0){
4378 float pts=sh_video->pts;
4379 if(sub_fps==0) sub_fps=sh_video->fps;
4380 current_module="find_sub";
4381 if (pts > sub_last_pts || pts < sub_last_pts-1.0 ) {
4382 find_sub(subdata, (pts+sub_delay) *
4383 (subdata->sub_uses_time ? 100. : sub_fps));
4384 if (vo_sub) vo_sub_last = vo_sub;
4385 // FIXME! frame counter...
4386 sub_last_pts = pts;
4388 current_module=NULL;
4390 #endif
4392 #ifdef HAVE_X11
4393 if (stop_xscreensaver && sh_video) {
4394 current_module="stop_xscreensaver";
4395 xscreensaver_heartbeat();
4396 current_module=NULL;
4398 #endif
4400 // DVD sub:
4401 if(vo_config_count && vo_spudec) {
4402 unsigned char* packet=NULL;
4403 int len,timestamp;
4404 current_module="spudec";
4405 spudec_heartbeat(vo_spudec,90000*sh_video->timer);
4406 // Get a sub packet from the dvd or a vobsub and make a timestamp relative to sh_video->timer
4407 while(1) {
4408 // Vobsub
4409 len = 0;
4410 if(vo_vobsub) {
4411 if(sh_video->pts+sub_delay>=0) {
4412 // The + next_frame_time is there because we'll display the sub at the next frame
4413 len = vobsub_get_packet(vo_vobsub,sh_video->pts+sub_delay+next_frame_time,(void**)&packet,&timestamp);
4414 if(len > 0) {
4415 timestamp -= (sh_video->pts + sub_delay - sh_video->timer)*90000;
4416 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);
4419 } else {
4420 // DVD sub
4421 len = ds_get_packet_sub(d_dvdsub,(unsigned char**)&packet);
4422 if(len > 0) {
4423 float x = d_dvdsub->pts - sh_video->pts;
4424 if (x < -10 || x > 10) // prevent missing subs on pts reset
4425 timestamp = 90000*(sh_video->timer + d_dvdsub->pts + sub_delay - sh_video->pts);
4426 else timestamp = 90000*(sh_video->timer + sub_delay);
4427 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);
4430 if(len<=0 || !packet) break;
4431 if(timestamp < 0) timestamp = 0;
4432 else spudec_assemble(vo_spudec,packet,len,timestamp);
4435 /* detect wether the sub has changed or not */
4436 if(spudec_changed(vo_spudec))
4437 vo_osd_changed(OSDTYPE_SPU);
4438 current_module=NULL;
4441 } // while(!eof)
4443 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",eof);
4447 goto_next_file: // don't jump here after ao/vo/getch initialization!
4449 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
4451 if(benchmark){
4452 double tot=video_time_usage+vout_time_usage+audio_time_usage;
4453 double total_time_usage;
4454 total_time_usage_start=GetTimer()-total_time_usage_start;
4455 total_time_usage = (float)total_time_usage_start*0.000001;
4456 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
4457 video_time_usage,vout_time_usage,audio_time_usage,
4458 total_time_usage-tot,total_time_usage);
4459 if(total_time_usage>0.0)
4460 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
4461 100.0*video_time_usage/total_time_usage,
4462 100.0*vout_time_usage/total_time_usage,
4463 100.0*audio_time_usage/total_time_usage,
4464 100.0*(total_time_usage-tot)/total_time_usage,
4465 100.0);
4466 if(total_frame_cnt && frame_dropping)
4467 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
4468 total_frame_cnt-drop_frame_cnt,
4469 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
4470 drop_frame_cnt,
4471 100*drop_frame_cnt/total_frame_cnt,
4472 total_frame_cnt,
4473 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
4477 // time to uninit all, except global stuff:
4478 uninit_player(INITED_ALL-(INITED_GUI+INITED_INPUT+(fixed_vo?INITED_VO:0)));
4480 #ifdef USE_SUB
4481 if ( set_of_sub_size > 0 )
4483 current_module="sub_free";
4484 for (i = 0; i < set_of_sub_size; ++i)
4485 sub_free( set_of_subtitles[i] );
4486 set_of_sub_size = 0;
4487 vo_sub_last = vo_sub=NULL;
4488 subdata=NULL;
4490 #endif
4492 if(eof == PT_NEXT_ENTRY || eof == PT_PREV_ENTRY) {
4493 eof = eof == PT_NEXT_ENTRY ? 1 : -1;
4494 if(play_tree_iter_step(playtree_iter,play_tree_step,0) == PLAY_TREE_ITER_ENTRY) {
4495 eof = 1;
4496 } else {
4497 play_tree_iter_free(playtree_iter);
4498 playtree_iter = NULL;
4500 play_tree_step = 1;
4501 } else if (eof == PT_UP_NEXT || eof == PT_UP_PREV) {
4502 eof = eof == PT_UP_NEXT ? 1 : -1;
4503 if ( playtree_iter ) {
4504 if(play_tree_iter_up_step(playtree_iter,eof,0) == PLAY_TREE_ITER_ENTRY) {
4505 eof = 1;
4506 } else {
4507 play_tree_iter_free(playtree_iter);
4508 playtree_iter = NULL;
4511 } else { // NEXT PREV SRC
4512 eof = eof == PT_PREV_SRC ? -1 : 1;
4515 if(eof == 0) eof = 1;
4517 while(playtree_iter != NULL) {
4518 filename = play_tree_iter_get_file(playtree_iter,eof);
4519 if(filename == NULL) {
4520 if( play_tree_iter_step(playtree_iter,eof,0) != PLAY_TREE_ITER_ENTRY) {
4521 play_tree_iter_free(playtree_iter);
4522 playtree_iter = NULL;
4524 } else
4525 break;
4528 #ifdef HAVE_NEW_GUI
4529 if( use_gui && !playtree_iter )
4531 #ifdef USE_DVDREAD
4532 if ( !guiIntfStruct.DiskChanged )
4533 #endif
4534 mplEnd();
4536 #endif
4538 if(use_gui || playtree_iter != NULL || player_idle_mode){
4539 if (!playtree_iter) filename = NULL;
4540 eof = 0;
4541 goto play_next_file;
4545 exit_player_with_rc(MSGTR_Exit_eof, 0);
4547 return 1;