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