Add a "tips and tricks" section to the slave mode documentation.
[mplayer/greg.git] / mplayer.c
blob4ef2ac2df7e5a8ec1951c823c810d499b1e98ba8
2 /// \file
3 /// \ingroup Properties Command2Property OSDMsgStack
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include "config.h"
9 #if defined(__MINGW32__) || defined(__CYGWIN__)
10 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/
11 #include <windows.h>
12 #endif
13 #include <string.h>
14 #include <unistd.h>
16 // #include <sys/mman.h>
17 #include <sys/types.h>
18 #ifndef __MINGW32__
19 #include <sys/ioctl.h>
20 #include <sys/wait.h>
21 #else
22 #define SIGHUP 1 /* hangup */
23 #define SIGQUIT 3 /* quit */
24 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
25 #define SIGBUS 10 /* bus error */
26 #define SIGPIPE 13 /* broken pipe */
27 #endif
29 #include <sys/time.h>
30 #include <sys/stat.h>
32 #include <signal.h>
33 #include <time.h>
34 #include <fcntl.h>
35 #include <limits.h>
37 #include <errno.h>
39 #include "mp_msg.h"
41 #define HELP_MP_DEFINE_STATIC
42 #include "help_mp.h"
44 #include "m_option.h"
45 #include "m_config.h"
46 #include "m_property.h"
48 #include "cfg-mplayer-def.h"
50 #include "libavutil/intreadwrite.h"
51 #include "libavutil/avstring.h"
53 #include "subreader.h"
55 #include "libvo/video_out.h"
57 #include "libvo/font_load.h"
58 #include "libvo/sub.h"
60 #ifdef CONFIG_X11
61 #include "libvo/x11_common.h"
62 #endif
64 #include "libao2/audio_out.h"
66 #include "codec-cfg.h"
68 #include "edl.h"
70 #include "spudec.h"
71 #include "vobsub.h"
73 #include "osdep/getch2.h"
74 #include "osdep/timer.h"
76 #include "gui/interface.h"
78 #include "input/input.h"
80 int slave_mode=0;
81 int player_idle_mode=0;
82 int quiet=0;
83 int enable_mouse_movements=0;
84 float start_volume = -1;
86 #include "osdep/priority.h"
88 char *heartbeat_cmd;
90 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
92 #ifdef HAVE_RTC
93 #ifdef __linux__
94 #include <linux/rtc.h>
95 #else
96 #include <rtc.h>
97 #define RTC_IRQP_SET RTCIO_IRQP_SET
98 #define RTC_PIE_ON RTCIO_PIE_ON
99 #endif /* __linux__ */
100 #endif /* HAVE_RTC */
102 #include "stream/tv.h"
103 #include "stream/stream_radio.h"
104 #ifdef CONFIG_DVBIN
105 #include "stream/dvbin.h"
106 #endif
107 #include "stream/cache2.h"
109 //**************************************************************************//
110 // Playtree
111 //**************************************************************************//
112 #include "playtree.h"
113 #include "playtreeparser.h"
115 int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config);
116 int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue);
118 //**************************************************************************//
119 // Config
120 //**************************************************************************//
121 #include "parser-cfg.h"
122 #include "parser-mpcmd.h"
124 m_config_t* mconfig;
126 //**************************************************************************//
127 // Config file
128 //**************************************************************************//
130 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
132 static int cfg_include(m_option_t *conf, char *filename){
133 return m_config_parse_config_file(mconfig, filename);
136 #include "get_path.h"
138 //**************************************************************************//
139 // XScreensaver
140 //**************************************************************************//
142 void xscreensaver_heartbeat(void);
144 //**************************************************************************//
145 //**************************************************************************//
146 // Input media streaming & demultiplexer:
147 //**************************************************************************//
149 static int max_framesize=0;
151 #include "stream/stream.h"
152 #include "libmpdemux/demuxer.h"
153 #include "libmpdemux/stheader.h"
155 #ifdef CONFIG_DVDREAD
156 #include "stream/stream_dvd.h"
157 #endif
158 #include "stream/stream_dvdnav.h"
160 #include "libmpcodecs/dec_audio.h"
161 #include "libmpcodecs/dec_video.h"
162 #include "libmpcodecs/mp_image.h"
163 #include "libmpcodecs/vf.h"
164 #include "libmpcodecs/vd.h"
166 #include "mixer.h"
168 #include "mp_core.h"
170 //**************************************************************************//
171 //**************************************************************************//
173 // Common FIFO functions, and keyboard/event FIFO code
174 #include "mp_fifo.h"
175 int noconsolecontrols=0;
176 //**************************************************************************//
178 // Not all functions in mplayer.c take the context as an argument yet
179 static MPContext mpctx_s = {
180 .osd_function = OSD_PLAY,
181 .begin_skip = MP_NOPTS_VALUE,
182 .play_tree_step = 1,
183 .global_sub_pos = -1,
184 .set_of_sub_pos = -1,
185 .file_format = DEMUXER_TYPE_UNKNOWN,
186 .loop_times = -1,
187 #ifdef CONFIG_DVBIN
188 .last_dvb_step = 1,
189 #endif
192 static MPContext *mpctx = &mpctx_s;
194 int fixed_vo=0;
196 // benchmark:
197 double video_time_usage=0;
198 double vout_time_usage=0;
199 static double audio_time_usage=0;
200 static int total_time_usage_start=0;
201 static int total_frame_cnt=0;
202 static int drop_frame_cnt=0; // total number of dropped frames
203 int benchmark=0;
205 // options:
206 int auto_quality=0;
207 static int output_quality=0;
209 float playback_speed=1.0;
211 int use_gui=0;
213 #ifdef CONFIG_GUI
214 int enqueue=0;
215 #endif
217 static int list_properties = 0;
219 int osd_level=1;
220 // if nonzero, hide current OSD contents when GetTimerMS() reaches this
221 unsigned int osd_visible;
222 int osd_duration = 1000;
224 int term_osd = 1;
225 static char* term_osd_esc = "\x1b[A\r\x1b[K";
226 static char* playing_msg = NULL;
227 // seek:
228 static double seek_to_sec;
229 static off_t seek_to_byte=0;
230 static off_t step_sec=0;
231 static int loop_seek=0;
233 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 };
235 // A/V sync:
236 int autosync=0; // 30 might be a good default value.
238 // may be changed by GUI: (FIXME!)
239 float rel_seek_secs=0;
240 int abs_seek_pos=0;
242 // codecs:
243 char **audio_codec_list=NULL; // override audio codec
244 char **video_codec_list=NULL; // override video codec
245 char **audio_fm_list=NULL; // override audio codec family
246 char **video_fm_list=NULL; // override video codec family
248 // demuxer:
249 extern char *demuxer_name; // override demuxer
250 extern char *audio_demuxer_name; // override audio demuxer
251 extern char *sub_demuxer_name; // override sub demuxer
253 // streaming:
254 int audio_id=-1;
255 int video_id=-1;
256 int dvdsub_id=-1;
257 // this dvdsub_id was selected via slang
258 // use this to allow dvdnav to follow -slang across stream resets,
259 // in particular the subtitle ID for a language changes
260 int dvdsub_lang_id;
261 int vobsub_id=-1;
262 char* audio_lang=NULL;
263 char* dvdsub_lang=NULL;
264 static char* spudec_ifo=NULL;
265 char* filename=NULL; //"MI2-Trailer.avi";
266 int forced_subs_only=0;
267 int file_filter=1;
269 // cache2:
270 int stream_cache_size=-1;
271 #ifdef CONFIG_STREAM_CACHE
272 extern int cache_fill_status;
274 float stream_cache_min_percent=20.0;
275 float stream_cache_seek_min_percent=50.0;
276 #else
277 #define cache_fill_status 0
278 #endif
280 // dump:
281 static char *stream_dump_name="stream.dump";
282 int stream_dump_type=0;
284 // A-V sync:
285 static float default_max_pts_correction=-1;//0.01f;
286 static float max_pts_correction=0;//default_max_pts_correction;
287 static float c_total=0;
288 float audio_delay=0;
289 static int ignore_start=0;
291 static int softsleep=0;
293 double force_fps=0;
294 static int force_srate=0;
295 static int audio_output_format=-1; // AF_FORMAT_UNKNOWN
296 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
297 static int play_n_frames=-1;
298 static int play_n_frames_mf=-1;
300 // screen info:
301 char** video_driver_list=NULL;
302 char** audio_driver_list=NULL;
304 // sub:
305 char *font_name=NULL;
306 char *sub_font_name=NULL;
307 extern int font_fontconfig;
308 float font_factor=0.75;
309 char **sub_name=NULL;
310 float sub_delay=0;
311 float sub_fps=0;
312 int sub_auto = 1;
313 char *vobsub_name=NULL;
314 /*DSP!!char *dsp=NULL;*/
315 int subcc_enabled=0;
316 int suboverlap_enabled = 1;
318 #include "libass/ass.h"
319 #include "libass/ass_mp.h"
321 char* current_module=NULL; // for debugging
324 // ---
326 #ifdef CONFIG_MENU
327 #include "m_struct.h"
328 #include "libmenu/menu.h"
329 void vf_menu_pause_update(struct vf_instance_s* vf);
330 extern vf_info_t vf_info_menu;
331 static vf_info_t* libmenu_vfs[] = {
332 &vf_info_menu,
333 NULL
335 static vf_instance_t* vf_menu = NULL;
336 int use_menu = 0;
337 static char* menu_cfg = NULL;
338 static char* menu_root = "main";
339 #endif
342 #ifdef HAVE_RTC
343 static int nortc = 1;
344 static char* rtc_device;
345 #endif
347 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
348 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
349 short edl_decision = 0; ///< 1 when an EDL operation has been made.
350 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode.
351 int use_filedir_conf;
353 static unsigned int initialized_flags=0;
354 #include "mpcommon.h"
355 #include "command.h"
357 #include "metadata.h"
359 #define mp_basename2(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
361 const void *mpctx_get_video_out(MPContext *mpctx)
363 return mpctx->video_out;
366 const void *mpctx_get_audio_out(MPContext *mpctx)
368 return mpctx->audio_out;
371 void *mpctx_get_demuxer(MPContext *mpctx)
373 return mpctx->demuxer;
376 void *mpctx_get_playtree_iter(MPContext *mpctx)
378 return mpctx->playtree_iter;
381 void *mpctx_get_mixer(MPContext *mpctx)
383 return &mpctx->mixer;
386 int mpctx_get_global_sub_size(MPContext *mpctx)
388 return mpctx->global_sub_size;
391 int mpctx_get_osd_function(MPContext *mpctx)
393 return mpctx->osd_function;
396 static int is_valid_metadata_type (metadata_t type) {
397 switch (type)
399 /* check for valid video stream */
400 case META_VIDEO_CODEC:
401 case META_VIDEO_BITRATE:
402 case META_VIDEO_RESOLUTION:
404 if (!mpctx->sh_video)
405 return 0;
406 break;
409 /* check for valid audio stream */
410 case META_AUDIO_CODEC:
411 case META_AUDIO_BITRATE:
412 case META_AUDIO_SAMPLES:
414 if (!mpctx->sh_audio)
415 return 0;
416 break;
419 /* check for valid demuxer */
420 case META_INFO_TITLE:
421 case META_INFO_ARTIST:
422 case META_INFO_ALBUM:
423 case META_INFO_YEAR:
424 case META_INFO_COMMENT:
425 case META_INFO_TRACK:
426 case META_INFO_GENRE:
428 if (!mpctx->demuxer)
429 return 0;
430 break;
433 default:
434 break;
437 return 1;
440 static char *get_demuxer_info (char *tag) {
441 char **info = mpctx->demuxer->info;
442 int n;
444 if (!info || !tag)
445 return NULL;
447 for (n = 0; info[2*n] != NULL ; n++)
448 if (!strcasecmp (info[2*n], tag))
449 break;
451 return info[2*n+1] ? strdup (info[2*n+1]) : NULL;
454 char *get_metadata (metadata_t type) {
455 char *meta = NULL;
456 sh_audio_t * const sh_audio = mpctx->sh_audio;
457 sh_video_t * const sh_video = mpctx->sh_video;
459 if (!is_valid_metadata_type (type))
460 return NULL;
462 switch (type)
464 case META_NAME:
466 return strdup (mp_basename2 (filename));
469 case META_VIDEO_CODEC:
471 if (sh_video->format == 0x10000001)
472 meta = strdup ("mpeg1");
473 else if (sh_video->format == 0x10000002)
474 meta = strdup ("mpeg2");
475 else if (sh_video->format == 0x10000004)
476 meta = strdup ("mpeg4");
477 else if (sh_video->format == 0x10000005)
478 meta = strdup ("h264");
479 else if (sh_video->format >= 0x20202020)
481 meta = malloc (8);
482 sprintf (meta, "%.4s", (char *) &sh_video->format);
484 else
486 meta = malloc (8);
487 sprintf (meta, "0x%08X", sh_video->format);
489 return meta;
492 case META_VIDEO_BITRATE:
494 meta = malloc (16);
495 sprintf (meta, "%d kbps", (int) (sh_video->i_bps * 8 / 1024));
496 return meta;
499 case META_VIDEO_RESOLUTION:
501 meta = malloc (16);
502 sprintf (meta, "%d x %d", sh_video->disp_w, sh_video->disp_h);
503 return meta;
506 case META_AUDIO_CODEC:
508 if (sh_audio->codec && sh_audio->codec->name)
509 meta = strdup (sh_audio->codec->name);
510 return meta;
513 case META_AUDIO_BITRATE:
515 meta = malloc (16);
516 sprintf (meta, "%d kbps", (int) (sh_audio->i_bps * 8/1000));
517 return meta;
520 case META_AUDIO_SAMPLES:
522 meta = malloc (16);
523 sprintf (meta, "%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels);
524 return meta;
527 /* check for valid demuxer */
528 case META_INFO_TITLE:
529 return get_demuxer_info ("Title");
531 case META_INFO_ARTIST:
532 return get_demuxer_info ("Artist");
534 case META_INFO_ALBUM:
535 return get_demuxer_info ("Album");
537 case META_INFO_YEAR:
538 return get_demuxer_info ("Year");
540 case META_INFO_COMMENT:
541 return get_demuxer_info ("Comment");
543 case META_INFO_TRACK:
544 return get_demuxer_info ("Track");
546 case META_INFO_GENRE:
547 return get_demuxer_info ("Genre");
549 default:
550 break;
553 return meta;
556 /// step size of mixer changes
557 int volstep = 3;
559 #ifdef CONFIG_DVDNAV
560 static void mp_dvdnav_context_free(MPContext *ctx){
561 if (ctx->nav_smpi) free_mp_image(ctx->nav_smpi);
562 ctx->nav_smpi = NULL;
563 if (ctx->nav_buffer) free(ctx->nav_buffer);
564 ctx->nav_buffer = NULL;
565 ctx->nav_start = NULL;
566 ctx->nav_in_size = 0;
568 #endif
570 void uninit_player(unsigned int mask){
571 mask &= initialized_flags;
573 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
575 if(mask&INITIALIZED_ACODEC){
576 initialized_flags&=~INITIALIZED_ACODEC;
577 current_module="uninit_acodec";
578 if(mpctx->sh_audio) uninit_audio(mpctx->sh_audio);
579 #ifdef CONFIG_GUI
580 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
581 #endif
582 mpctx->sh_audio=NULL;
583 mpctx->mixer.afilter = NULL;
586 if(mask&INITIALIZED_VCODEC){
587 initialized_flags&=~INITIALIZED_VCODEC;
588 current_module="uninit_vcodec";
589 if(mpctx->sh_video) uninit_video(mpctx->sh_video);
590 mpctx->sh_video=NULL;
591 #ifdef CONFIG_MENU
592 vf_menu=NULL;
593 #endif
596 if(mask&INITIALIZED_DEMUXER){
597 initialized_flags&=~INITIALIZED_DEMUXER;
598 current_module="free_demuxer";
599 if(mpctx->demuxer){
600 mpctx->stream=mpctx->demuxer->stream;
601 free_demuxer(mpctx->demuxer);
603 mpctx->demuxer=NULL;
606 // kill the cache process:
607 if(mask&INITIALIZED_STREAM){
608 initialized_flags&=~INITIALIZED_STREAM;
609 current_module="uninit_stream";
610 if(mpctx->stream) free_stream(mpctx->stream);
611 mpctx->stream=NULL;
614 if(mask&INITIALIZED_VO){
615 initialized_flags&=~INITIALIZED_VO;
616 current_module="uninit_vo";
617 mpctx->video_out->uninit();
618 mpctx->video_out=NULL;
619 #ifdef CONFIG_DVDNAV
620 mp_dvdnav_context_free(mpctx);
621 #endif
624 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code.
625 if(mask&INITIALIZED_GETCH2){
626 initialized_flags&=~INITIALIZED_GETCH2;
627 current_module="uninit_getch2";
628 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
629 // restore terminal:
630 getch2_disable();
633 if(mask&INITIALIZED_VOBSUB){
634 initialized_flags&=~INITIALIZED_VOBSUB;
635 current_module="uninit_vobsub";
636 if(vo_vobsub) vobsub_close(vo_vobsub);
637 vo_vobsub=NULL;
640 if (mask&INITIALIZED_SPUDEC){
641 initialized_flags&=~INITIALIZED_SPUDEC;
642 current_module="uninit_spudec";
643 spudec_free(vo_spudec);
644 vo_spudec=NULL;
647 if(mask&INITIALIZED_AO){
648 initialized_flags&=~INITIALIZED_AO;
649 current_module="uninit_ao";
650 if (mpctx->edl_muted) mixer_mute(&mpctx->mixer);
651 mpctx->audio_out->uninit(mpctx->eof?0:1); mpctx->audio_out=NULL;
654 #ifdef CONFIG_GUI
655 if(mask&INITIALIZED_GUI){
656 initialized_flags&=~INITIALIZED_GUI;
657 current_module="uninit_gui";
658 guiDone();
660 #endif
662 if(mask&INITIALIZED_INPUT){
663 initialized_flags&=~INITIALIZED_INPUT;
664 current_module="uninit_input";
665 mp_input_uninit();
666 #ifdef CONFIG_MENU
667 if (use_menu)
668 menu_uninit();
669 #endif
672 current_module=NULL;
675 void exit_player_with_rc(exit_reason_t how, int rc){
677 if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
678 uninit_player(INITIALIZED_ALL);
679 #if defined(__MINGW32__) || defined(__CYGWIN__)
680 timeEndPeriod(1);
681 #endif
682 #ifdef CONFIG_X11
683 #ifdef CONFIG_GUI
684 if ( !use_gui )
685 #endif
686 vo_uninit(); // Close the X11 connection (if any is open).
687 #endif
689 #ifdef CONFIG_FREETYPE
690 current_module="uninit_font";
691 if (sub_font && sub_font != vo_font) free_font_desc(sub_font);
692 sub_font = NULL;
693 if (vo_font) free_font_desc(vo_font);
694 vo_font = NULL;
695 done_freetype();
696 #endif
697 free_osd_list();
699 #ifdef CONFIG_ASS
700 ass_library_done(ass_library);
701 #endif
703 current_module="exit_player";
705 // free mplayer config
706 if(mconfig)
707 m_config_free(mconfig);
709 if(mpctx->playtree)
710 play_tree_free(mpctx->playtree, 1);
713 if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
714 switch(how) {
715 case EXIT_QUIT:
716 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_quit);
717 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n");
718 break;
719 case EXIT_EOF:
720 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_eof);
721 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n");
722 break;
723 case EXIT_ERROR:
724 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_error);
725 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n");
726 break;
727 default:
728 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n");
730 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
732 exit(rc);
735 void exit_player(exit_reason_t how){
736 exit_player_with_rc(how, 1);
739 #ifndef __MINGW32__
740 static void child_sighandler(int x){
741 pid_t pid;
742 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
744 #endif
746 #ifdef CONFIG_CRASH_DEBUG
747 static char *prog_path;
748 static int crash_debug = 0;
749 #endif
751 static void exit_sighandler(int x){
752 static int sig_count=0;
753 #ifdef CONFIG_CRASH_DEBUG
754 if (!crash_debug || x != SIGTRAP)
755 #endif
756 ++sig_count;
757 if(initialized_flags==0 && sig_count>1) exit(1);
758 if(sig_count==5)
760 /* We're crashing bad and can't uninit cleanly :(
761 * by popular request, we make one last (dirty)
762 * effort to restore the user's
763 * terminal. */
764 getch2_disable();
765 exit(1);
767 if(sig_count==6) exit(1);
768 if(sig_count>6){
769 // can't stop :(
770 #ifndef __MINGW32__
771 kill(getpid(),SIGKILL);
772 #endif
774 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x,
775 current_module?current_module:"unknown"
777 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x);
778 if(sig_count<=1)
779 switch(x){
780 case SIGINT:
781 case SIGQUIT:
782 case SIGTERM:
783 case SIGKILL:
784 async_quit_request = 1;
785 return; // killed from keyboard (^C) or killed [-9]
786 case SIGILL:
787 #if CONFIG_RUNTIME_CPUDETECT
788 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL_RTCpuSel);
789 #else
790 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL);
791 #endif
792 case SIGFPE:
793 case SIGSEGV:
794 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGSEGV_SIGFPE);
795 default:
796 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGCRASH);
797 #ifdef CONFIG_CRASH_DEBUG
798 if (crash_debug) {
799 int gdb_pid;
800 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
801 gdb_pid = fork();
802 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
803 if (gdb_pid == 0) { // We are the child
804 char spid[20];
805 snprintf(spid, sizeof(spid), "%i", getppid());
806 getch2_disable(); // allow terminal to work properly with gdb
807 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1)
808 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
809 } else if (gdb_pid < 0)
810 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
811 else {
812 waitpid(gdb_pid, NULL, 0);
814 if (x == SIGTRAP) return;
816 #endif
818 getch2_disable();
819 exit(1);
822 void mp_input_register_options(m_config_t* cfg);
824 #include "cfg-mplayer.h"
826 static void parse_cfgfiles( m_config_t* conf )
828 char *conffile;
829 int conffile_fd;
830 if (!disable_system_conf &&
831 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
832 exit_player(EXIT_NONE);
833 if ((conffile = get_path("")) == NULL) {
834 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
835 } else {
836 #ifdef __MINGW32__
837 mkdir(conffile);
838 #else
839 mkdir(conffile, 0777);
840 #endif
841 free(conffile);
842 if ((conffile = get_path("config")) == NULL) {
843 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
844 } else {
845 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
846 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);
847 write(conffile_fd, default_config, strlen(default_config));
848 close(conffile_fd);
850 if (!disable_user_conf &&
851 m_config_parse_config_file(conf, conffile) < 0)
852 exit_player(EXIT_NONE);
853 free(conffile);
858 #define PROFILE_CFG_PROTOCOL "protocol."
860 static void load_per_protocol_config (m_config_t* conf, const char *const file)
862 char *str;
863 char protocol[strlen (PROFILE_CFG_PROTOCOL) + strlen (file) + 1];
864 m_profile_t *p;
866 /* does filename actually uses a protocol ? */
867 str = strstr (file, "://");
868 if (!str)
869 return;
871 sprintf (protocol, "%s%s", PROFILE_CFG_PROTOCOL, file);
872 protocol[strlen (PROFILE_CFG_PROTOCOL)+strlen(file)-strlen(str)] = '\0';
873 p = m_config_get_profile (conf, protocol);
874 if (p)
876 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingProtocolProfile, protocol);
877 m_config_set_profile(conf,p);
881 #define PROFILE_CFG_EXTENSION "extension."
883 static void load_per_extension_config (m_config_t* conf, const char *const file)
885 char *str;
886 char extension[strlen (PROFILE_CFG_EXTENSION) + 8];
887 m_profile_t *p;
889 /* does filename actually have an extension ? */
890 str = strrchr (filename, '.');
891 if (!str)
892 return;
894 sprintf (extension, PROFILE_CFG_EXTENSION);
895 strncat (extension, ++str, 7);
896 p = m_config_get_profile (conf, extension);
897 if (p)
899 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, extension);
900 m_config_set_profile(conf,p);
904 #define PROFILE_CFG_VO "vo."
905 #define PROFILE_CFG_AO "ao."
907 static void load_per_output_config (m_config_t* conf, char *cfg, char *out)
909 char profile[strlen (cfg) + strlen (out) + 1];
910 m_profile_t *p;
912 sprintf (profile, "%s%s", cfg, out);
913 p = m_config_get_profile (conf, profile);
914 if (p)
916 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, profile);
917 m_config_set_profile(conf,p);
922 * Tries to load a config file
923 * @return 0 if file was not found, 1 otherwise
925 static int try_load_config(m_config_t *conf, const char *file)
927 struct stat st;
928 if (stat(file, &st))
929 return 0;
930 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, file);
931 m_config_parse_config_file (conf, file);
932 return 1;
935 static void load_per_file_config (m_config_t* conf, const char *const file)
937 char *confpath;
938 char cfg[PATH_MAX];
939 char *name;
941 if (strlen(file) > PATH_MAX - 14) {
942 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Filename is too long, can not load file or directory specific config files\n");
943 return;
945 sprintf (cfg, "%s.conf", file);
947 name = strrchr(cfg, '/');
948 if (HAVE_DOS_PATHS) {
949 char *tmp = strrchr(cfg, '\\');
950 if (!name || tmp > name)
951 name = tmp;
952 tmp = strrchr(cfg, ':');
953 if (!name || tmp > name)
954 name = tmp;
956 if (!name)
957 name = cfg;
958 else
959 name++;
961 if (use_filedir_conf) {
962 char dircfg[PATH_MAX];
963 strcpy(dircfg, cfg);
964 strcpy(dircfg + (name - cfg), "mplayer.conf");
965 try_load_config(conf, dircfg);
967 if (try_load_config(conf, cfg))
968 return;
971 if ((confpath = get_path (name)) != NULL)
973 try_load_config(conf, confpath);
975 free (confpath);
979 /* When libmpdemux performs a blocking operation (network connection or
980 * cache filling) if the operation fails we use this function to check
981 * if it was interrupted by the user.
982 * The function returns a new value for eof. */
983 static int libmpdemux_was_interrupted(int eof) {
984 mp_cmd_t* cmd;
985 if((cmd = mp_input_get_cmd(0,0,0)) != NULL) {
986 switch(cmd->id) {
987 case MP_CMD_QUIT:
988 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
989 case MP_CMD_PLAY_TREE_STEP: {
990 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
991 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i;
992 } break;
993 case MP_CMD_PLAY_TREE_UP_STEP: {
994 eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
995 } break;
996 case MP_CMD_PLAY_ALT_SRC_STEP: {
997 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
998 } break;
1000 mp_cmd_free(cmd);
1002 return eof;
1005 #define mp_basename(s) (strrchr(s,'\\')==NULL?(mp_basename2(s)):(strrchr(s,'\\')+1))
1007 static int playtree_add_playlist(play_tree_t* entry)
1009 play_tree_add_bpf(entry,filename);
1011 #ifdef CONFIG_GUI
1012 if (use_gui) {
1013 if (entry) {
1014 import_playtree_playlist_into_gui(entry, mconfig);
1015 play_tree_free_list(entry,1);
1017 } else
1018 #endif
1020 if(!entry) {
1021 entry = mpctx->playtree_iter->tree;
1022 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1023 return PT_NEXT_ENTRY;
1025 if(mpctx->playtree_iter->tree == entry ) { // Loop with a single file
1026 if(play_tree_iter_up_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1027 return PT_NEXT_ENTRY;
1030 play_tree_remove(entry,1,1);
1031 return PT_NEXT_SRC;
1033 play_tree_insert_entry(mpctx->playtree_iter->tree,entry);
1034 play_tree_set_params_from(entry,mpctx->playtree_iter->tree);
1035 entry = mpctx->playtree_iter->tree;
1036 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1037 return PT_NEXT_ENTRY;
1039 play_tree_remove(entry,1,1);
1041 return PT_NEXT_SRC;
1044 void add_subtitles(char *filename, float fps, int noerr)
1046 sub_data *subd;
1047 #ifdef CONFIG_ASS
1048 ass_track_t *asst = 0;
1049 #endif
1051 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) {
1052 return;
1055 subd = sub_read_file(filename, fps);
1056 #ifdef CONFIG_ASS
1057 if (ass_enabled)
1058 #ifdef CONFIG_ICONV
1059 asst = ass_read_file(ass_library, filename, sub_cp);
1060 #else
1061 asst = ass_read_file(ass_library, filename, 0);
1062 #endif
1063 if (ass_enabled && subd && !asst)
1064 asst = ass_read_subdata(ass_library, subd, fps);
1066 if (!asst && !subd)
1067 #else
1068 if(!subd)
1069 #endif
1070 mp_msg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR, MSGTR_CantLoadSub,
1071 filename_recode(filename));
1073 #ifdef CONFIG_ASS
1074 if (!asst && !subd) return;
1075 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst;
1076 #else
1077 if (!subd) return;
1078 #endif
1079 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd;
1080 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size);
1081 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n",
1082 filename_recode(filename));
1083 ++mpctx->set_of_sub_size;
1084 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AddedSubtitleFile, mpctx->set_of_sub_size,
1085 filename_recode(filename));
1088 // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken.
1089 void update_set_of_subtitles(void)
1090 // subdata was changed, set_of_sub... have to be updated.
1092 sub_data ** const set_of_subtitles = mpctx->set_of_subtitles;
1093 int i;
1094 if (mpctx->set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted
1095 for (i = mpctx->set_of_sub_pos + 1; i < mpctx->set_of_sub_size; ++i)
1096 set_of_subtitles[i-1] = set_of_subtitles[i];
1097 set_of_subtitles[mpctx->set_of_sub_size-1] = NULL;
1098 --mpctx->set_of_sub_size;
1099 if (mpctx->set_of_sub_size > 0) subdata = set_of_subtitles[mpctx->set_of_sub_pos=0];
1101 else if (mpctx->set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed
1102 set_of_subtitles[mpctx->set_of_sub_pos] = subdata;
1104 else if (mpctx->set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added
1105 set_of_subtitles[mpctx->set_of_sub_pos=mpctx->set_of_sub_size] = subdata;
1106 ++mpctx->set_of_sub_size;
1110 void init_vo_spudec(void) {
1111 if (vo_spudec)
1112 spudec_free(vo_spudec);
1113 initialized_flags &= ~INITIALIZED_SPUDEC;
1114 vo_spudec = NULL;
1115 if (spudec_ifo) {
1116 unsigned int palette[16], width, height;
1117 current_module="spudec_init_vobsub";
1118 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1119 vo_spudec=spudec_new_scaled(palette, width, height, NULL, 0);
1122 #ifdef CONFIG_DVDREAD
1123 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVD) {
1124 current_module="spudec_init_dvdread";
1125 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(mpctx->stream->priv))->cur_pgc->palette,
1126 mpctx->sh_video->disp_w, mpctx->sh_video->disp_h,
1127 NULL, 0);
1129 #endif
1131 #ifdef CONFIG_DVDNAV
1132 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVDNAV) {
1133 unsigned int *palette = mp_dvdnav_get_spu_clut(mpctx->stream);
1134 current_module="spudec_init_dvdnav";
1135 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1137 #endif
1139 if (vo_spudec==NULL) {
1140 sh_sub_t *sh = (sh_sub_t *)mpctx->d_sub->sh;
1141 current_module="spudec_init_normal";
1142 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1143 spudec_set_font_factor(vo_spudec,font_factor);
1146 if (vo_spudec!=NULL) {
1147 initialized_flags|=INITIALIZED_SPUDEC;
1148 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
1153 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
1154 * make it all work is to use the builtin SDL-bootstrap code, which
1155 * will be done automatically by replacing our main() if we include SDL.h.
1157 #if defined(__APPLE__) && defined(CONFIG_SDL)
1158 #include <SDL.h>
1159 #endif
1162 * \brief append a formatted string
1163 * \param buf buffer to print into
1164 * \param pos position of terminating 0 in buf
1165 * \param len maximum number of characters in buf, not including terminating 0
1166 * \param format printf format string
1168 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
1170 va_list va;
1171 va_start(va, format);
1172 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
1173 va_end(va);
1174 if (*pos >= len ) {
1175 buf[len] = 0;
1176 *pos = len;
1181 * \brief append time in the hh:mm:ss.f format
1182 * \param buf buffer to print into
1183 * \param pos position of terminating 0 in buf
1184 * \param len maximum number of characters in buf, not including terminating 0
1185 * \param time time value to convert/append
1187 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
1188 long tenths = 10 * time;
1189 int f1 = tenths % 10;
1190 int ss = (tenths / 10) % 60;
1191 int mm = (tenths / 600) % 60;
1192 int hh = tenths / 36000;
1193 if (time <= 0) {
1194 saddf(buf, pos, len, "unknown");
1195 return;
1197 if (hh > 0)
1198 saddf(buf, pos, len, "%2d:", hh);
1199 if (hh > 0 || mm > 0)
1200 saddf(buf, pos, len, "%02d:", mm);
1201 saddf(buf, pos, len, "%02d.%1d", ss, f1);
1205 * \brief print the status line
1206 * \param a_pos audio position
1207 * \param a_v A-V desynchronization
1208 * \param corr amount out A-V synchronization
1210 static void print_status(float a_pos, float a_v, float corr)
1212 sh_video_t * const sh_video = mpctx->sh_video;
1213 int width;
1214 char *line;
1215 unsigned pos = 0;
1216 get_screen_size();
1217 if (screen_width > 0)
1218 width = screen_width;
1219 else
1220 width = 80;
1221 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1222 /* Windows command line is broken (MinGW's rxvt works, but we
1223 * should not depend on that). */
1224 width--;
1225 #endif
1226 line = malloc(width + 1); // one additional char for the terminating null
1228 // Audio time
1229 if (mpctx->sh_audio) {
1230 saddf(line, &pos, width, "A:%6.1f ", a_pos);
1231 if (!sh_video) {
1232 float len = demuxer_get_time_length(mpctx->demuxer);
1233 saddf(line, &pos, width, "(");
1234 sadd_hhmmssf(line, &pos, width, a_pos);
1235 saddf(line, &pos, width, ") of %.1f (", len);
1236 sadd_hhmmssf(line, &pos, width, len);
1237 saddf(line, &pos, width, ") ");
1241 // Video time
1242 if (sh_video)
1243 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
1245 // A-V sync
1246 if (mpctx->sh_audio && sh_video)
1247 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ", a_v, corr);
1249 // Video stats
1250 if (sh_video)
1251 saddf(line, &pos, width, "%3d/%3d ",
1252 (int)sh_video->num_frames,
1253 (int)sh_video->num_frames_decoded);
1255 // CPU usage
1256 if (sh_video) {
1257 if (sh_video->timer > 0.5)
1258 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
1259 (int)(100.0*video_time_usage*playback_speed/(double)sh_video->timer),
1260 (int)(100.0*vout_time_usage*playback_speed/(double)sh_video->timer),
1261 (100.0*audio_time_usage*playback_speed/(double)sh_video->timer));
1262 else
1263 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
1264 } else if (mpctx->sh_audio) {
1265 if (mpctx->delay > 0.5)
1266 saddf(line, &pos, width, "%4.1f%% ",
1267 100.0*audio_time_usage/(double)mpctx->delay);
1268 else
1269 saddf(line, &pos, width, "??,?%% ");
1272 // VO stats
1273 if (sh_video)
1274 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
1276 #ifdef CONFIG_STREAM_CACHE
1277 // cache stats
1278 if (stream_cache_size > 0)
1279 saddf(line, &pos, width, "%d%% ", cache_fill_status);
1280 #endif
1282 // other
1283 if (playback_speed != 1)
1284 saddf(line, &pos, width, "%4.2fx ", playback_speed);
1286 // end
1287 if (erase_to_end_of_line) {
1288 line[pos] = 0;
1289 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
1290 } else {
1291 memset(&line[pos], ' ', width - pos);
1292 line[width] = 0;
1293 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
1295 free(line);
1299 * \brief build a chain of audio filters that converts the input format
1300 * to the ao's format, taking into account the current playback_speed.
1301 * \param sh_audio describes the requested input format of the chain.
1302 * \param ao_data describes the requested output format of the chain.
1304 int build_afilter_chain(sh_audio_t *sh_audio, ao_data_t *ao_data)
1306 int new_srate;
1307 int result;
1308 if (!sh_audio)
1310 #ifdef CONFIG_GUI
1311 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
1312 #endif
1313 mpctx->mixer.afilter = NULL;
1314 return 0;
1316 if(af_control_any_rev(sh_audio->afilter,
1317 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET,
1318 &playback_speed)) {
1319 new_srate = sh_audio->samplerate;
1320 } else {
1321 new_srate = sh_audio->samplerate * playback_speed;
1322 if (new_srate != ao_data->samplerate) {
1323 // limits are taken from libaf/af_resample.c
1324 if (new_srate < 8000)
1325 new_srate = 8000;
1326 if (new_srate > 192000)
1327 new_srate = 192000;
1328 playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1331 result = init_audio_filters(sh_audio, new_srate,
1332 &ao_data->samplerate, &ao_data->channels, &ao_data->format);
1333 mpctx->mixer.afilter = sh_audio->afilter;
1334 #ifdef CONFIG_GUI
1335 if (use_gui) guiGetEvent(guiSetAfilter, (char *)sh_audio->afilter);
1336 #endif
1337 return result;
1341 typedef struct mp_osd_msg mp_osd_msg_t;
1342 struct mp_osd_msg {
1343 /// Previous message on the stack.
1344 mp_osd_msg_t* prev;
1345 /// Message text.
1346 char msg[128];
1347 int id,level,started;
1348 /// Display duration in ms.
1349 unsigned time;
1352 /// OSD message stack.
1353 static mp_osd_msg_t* osd_msg_stack = NULL;
1356 * \brief Add a message on the OSD message stack
1358 * If a message with the same id is already present in the stack
1359 * it is pulled on top of the stack, otherwise a new message is created.
1363 void set_osd_msg(int id, int level, int time, const char* fmt, ...) {
1364 mp_osd_msg_t *msg,*last=NULL;
1365 va_list va;
1366 int r;
1368 // look if the id is already in the stack
1369 for(msg = osd_msg_stack ; msg && msg->id != id ;
1370 last = msg, msg = msg->prev);
1371 // not found: alloc it
1372 if(!msg) {
1373 msg = calloc(1,sizeof(mp_osd_msg_t));
1374 msg->prev = osd_msg_stack;
1375 osd_msg_stack = msg;
1376 } else if(last) { // found, but it's not on top of the stack
1377 last->prev = msg->prev;
1378 msg->prev = osd_msg_stack;
1379 osd_msg_stack = msg;
1381 // write the msg
1382 va_start(va,fmt);
1383 r = vsnprintf(msg->msg, 128, fmt, va);
1384 va_end(va);
1385 if(r >= 128) msg->msg[127] = 0;
1386 // set id and time
1387 msg->id = id;
1388 msg->level = level;
1389 msg->time = time;
1394 * \brief Remove a message from the OSD stack
1396 * This function can be used to get rid of a message right away.
1400 void rm_osd_msg(int id) {
1401 mp_osd_msg_t *msg,*last=NULL;
1403 // Search for the msg
1404 for(msg = osd_msg_stack ; msg && msg->id != id ;
1405 last = msg, msg = msg->prev);
1406 if(!msg) return;
1408 // Detach it from the stack and free it
1409 if(last)
1410 last->prev = msg->prev;
1411 else
1412 osd_msg_stack = msg->prev;
1413 free(msg);
1417 * \brief Remove all messages from the OSD stack
1421 static void clear_osd_msgs(void) {
1422 mp_osd_msg_t* msg = osd_msg_stack, *prev = NULL;
1423 while(msg) {
1424 prev = msg->prev;
1425 free(msg);
1426 msg = prev;
1428 osd_msg_stack = NULL;
1432 * \brief Get the current message from the OSD stack.
1434 * This function decrements the message timer and destroys the old ones.
1435 * The message that should be displayed is returned (if any).
1439 static mp_osd_msg_t* get_osd_msg(void) {
1440 mp_osd_msg_t *msg,*prev,*last = NULL;
1441 static unsigned last_update = 0;
1442 unsigned now = GetTimerMS();
1443 unsigned diff;
1444 char hidden_dec_done = 0;
1446 if (osd_visible) {
1447 // 36000000 means max timed visibility is 1 hour into the future, if
1448 // the difference is greater assume it's wrapped around from below 0
1449 if (osd_visible - now > 36000000) {
1450 osd_visible = 0;
1451 vo_osd_progbar_type = -1; // disable
1452 vo_osd_changed(OSDTYPE_PROGBAR);
1453 if (mpctx->osd_function != OSD_PAUSE)
1454 mpctx->osd_function = OSD_PLAY;
1458 if(!last_update) last_update = now;
1459 diff = now >= last_update ? now - last_update : 0;
1461 last_update = now;
1463 // Look for the first message in the stack with high enough level.
1464 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1465 prev = msg->prev;
1466 if(msg->level > osd_level && hidden_dec_done) continue;
1467 // The message has a high enough level or it is the first hidden one
1468 // in both cases we decrement the timer or kill it.
1469 if(!msg->started || msg->time > diff) {
1470 if(msg->started) msg->time -= diff;
1471 else msg->started = 1;
1472 // display it
1473 if(msg->level <= osd_level) return msg;
1474 hidden_dec_done = 1;
1475 continue;
1477 // kill the message
1478 free(msg);
1479 if(last) {
1480 last->prev = prev;
1481 msg = last;
1482 } else {
1483 osd_msg_stack = prev;
1484 msg = NULL;
1487 // Nothing found
1488 return NULL;
1492 * \brief Display the OSD bar.
1494 * Display the OSD bar or fall back on a simple message.
1498 void set_osd_bar(int type,const char* name,double min,double max,double val) {
1500 if(osd_level < 1) return;
1502 if(mpctx->sh_video) {
1503 osd_visible = (GetTimerMS() + 1000) | 1;
1504 vo_osd_progbar_type = type;
1505 vo_osd_progbar_value = 256*(val-min)/(max-min);
1506 vo_osd_changed(OSDTYPE_PROGBAR);
1507 return;
1510 set_osd_msg(OSD_MSG_BAR,1,osd_duration,"%s: %d %%",
1511 name,ROUND(100*(val-min)/(max-min)));
1515 * \brief Display text subtitles on the OSD
1517 void set_osd_subtitle(subtitle *subs) {
1518 int i;
1519 vo_sub = subs;
1520 vo_osd_changed(OSDTYPE_SUBTITLE);
1521 if (!mpctx->sh_video) {
1522 // reverse order, since newest set_osd_msg is displayed first
1523 for (i = SUB_MAX_TEXT - 1; i >= 0; i--) {
1524 if (!subs || i >= subs->lines || !subs->text[i])
1525 rm_osd_msg(OSD_MSG_SUB_BASE + i);
1526 else {
1527 // HACK: currently display time for each sub line except the last is set to 2 seconds.
1528 int display_time = i == subs->lines - 1 ? 180000 : 2000;
1529 set_osd_msg(OSD_MSG_SUB_BASE + i, 1, display_time, "%s", subs->text[i]);
1536 * \brief Update the OSD message line.
1538 * This function displays the current message on the vo OSD or on the term.
1539 * If the stack is empty and the OSD level is high enough the timer
1540 * is displayed (only on the vo OSD).
1544 static void update_osd_msg(void) {
1545 mp_osd_msg_t *msg;
1546 static char osd_text[128] = "";
1547 static char osd_text_timer[128];
1549 // we need some mem for vo_osd_text
1550 vo_osd_text = (unsigned char*)osd_text;
1552 // Look if we have a msg
1553 if((msg = get_osd_msg())) {
1554 if(strcmp(osd_text,msg->msg)) {
1555 strncpy((char*)osd_text, msg->msg, 127);
1556 if(mpctx->sh_video) vo_osd_changed(OSDTYPE_OSD); else
1557 if(term_osd) mp_msg(MSGT_CPLAYER,MSGL_STATUS,"%s%s\n",term_osd_esc,msg->msg);
1559 return;
1562 if(mpctx->sh_video) {
1563 // fallback on the timer
1564 if(osd_level>=2) {
1565 int len = demuxer_get_time_length(mpctx->demuxer);
1566 int percentage = -1;
1567 char percentage_text[10];
1568 int pts = demuxer_get_current_time(mpctx->demuxer);
1570 if (mpctx->osd_show_percentage)
1571 percentage = demuxer_get_percent_pos(mpctx->demuxer);
1573 if (percentage >= 0)
1574 snprintf(percentage_text, 9, " (%d%%)", percentage);
1575 else
1576 percentage_text[0] = 0;
1578 if (osd_level == 3)
1579 snprintf(osd_text_timer, 63,
1580 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1581 mpctx->osd_function,pts/3600,(pts/60)%60,pts%60,
1582 len/3600,(len/60)%60,len%60,percentage_text);
1583 else
1584 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1585 mpctx->osd_function,pts/3600,(pts/60)%60,
1586 pts%60,percentage_text);
1587 } else
1588 osd_text_timer[0]=0;
1590 // always decrement the percentage timer
1591 if(mpctx->osd_show_percentage)
1592 mpctx->osd_show_percentage--;
1594 if(strcmp(osd_text,osd_text_timer)) {
1595 strncpy(osd_text, osd_text_timer, 63);
1596 vo_osd_changed(OSDTYPE_OSD);
1598 return;
1601 // Clear the term osd line
1602 if(term_osd && osd_text[0]) {
1603 osd_text[0] = 0;
1604 printf("%s\n",term_osd_esc);
1608 ///@}
1609 // OSDMsgStack
1612 void reinit_audio_chain(void) {
1613 if (!mpctx->sh_audio)
1614 return;
1615 current_module="init_audio_codec";
1616 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1617 if(!init_best_audio_codec(mpctx->sh_audio,audio_codec_list,audio_fm_list)){
1618 goto init_error;
1620 initialized_flags|=INITIALIZED_ACODEC;
1621 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1624 current_module="af_preinit";
1625 ao_data.samplerate=force_srate;
1626 ao_data.channels=0;
1627 ao_data.format=audio_output_format;
1628 #if 1
1629 // first init to detect best values
1630 if(!init_audio_filters(mpctx->sh_audio, // preliminary init
1631 // input:
1632 mpctx->sh_audio->samplerate,
1633 // output:
1634 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
1635 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_AudioFilterChainPreinitError);
1636 exit_player(EXIT_ERROR);
1638 #endif
1639 current_module="ao2_init";
1640 mpctx->audio_out = init_best_audio_out(audio_driver_list,
1641 0, // plugin flag
1642 ao_data.samplerate,
1643 ao_data.channels,
1644 ao_data.format, 0);
1645 if(!mpctx->audio_out){
1646 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
1647 goto init_error;
1649 initialized_flags|=INITIALIZED_AO;
1650 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bytes per sample)\n",
1651 mpctx->audio_out->info->short_name,
1652 ao_data.samplerate, ao_data.channels,
1653 af_fmt2str_short(ao_data.format),
1654 af_fmt2bits(ao_data.format)/8 );
1655 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n",
1656 mpctx->audio_out->info->name, mpctx->audio_out->info->author);
1657 if(strlen(mpctx->audio_out->info->comment) > 0)
1658 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", mpctx->audio_out->info->comment);
1659 // init audio filters:
1660 #if 1
1661 current_module="af_init";
1662 if(!build_afilter_chain(mpctx->sh_audio, &ao_data)) {
1663 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_NoMatchingFilter);
1664 goto init_error;
1666 #endif
1667 mpctx->mixer.audio_out = mpctx->audio_out;
1668 mpctx->mixer.volstep = volstep;
1669 return;
1671 init_error:
1672 uninit_player(INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO
1673 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1674 mpctx->d_audio->id = -2;
1678 ///@}
1679 // Command2Property
1682 // Return pts value corresponding to the end point of audio written to the
1683 // ao so far.
1684 static double written_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio)
1686 double buffered_output;
1687 // first calculate the end pts of audio that has been output by decoder
1688 double a_pts = sh_audio->pts;
1689 if (a_pts != MP_NOPTS_VALUE)
1690 // Good, decoder supports new way of calculating audio pts.
1691 // sh_audio->pts is the timestamp of the latest input packet with
1692 // known pts that the decoder has decoded. sh_audio->pts_bytes is
1693 // the amount of bytes the decoder has written after that timestamp.
1694 a_pts += sh_audio->pts_bytes / (double) sh_audio->o_bps;
1695 else {
1696 // Decoder doesn't support new way of calculating pts (or we're
1697 // being called before it has decoded anything with known timestamp).
1698 // Use the old method of audio pts calculation: take the timestamp
1699 // of last packet with known pts the decoder has read data from,
1700 // and add amount of bytes read after the beginning of that packet
1701 // divided by input bps. This will be inaccurate if the input/output
1702 // ratio is not constant for every audio packet or if it is constant
1703 // but not accurately known in sh_audio->i_bps.
1705 a_pts = d_audio->pts;
1706 // ds_tell_pts returns bytes read after last timestamp from
1707 // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes
1708 // it has read but not decoded
1709 if (sh_audio->i_bps)
1710 a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) /
1711 (double)sh_audio->i_bps;
1713 // Now a_pts hopefully holds the pts for end of audio from decoder.
1714 // Substract data in buffers between decoder and audio out.
1716 // Decoded but not filtered
1717 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps;
1719 // Data buffered in audio filters, measured in bytes of "missing" output
1720 buffered_output = af_calc_delay(sh_audio->afilter);
1722 // Data that was ready for ao but was buffered because ao didn't fully
1723 // accept everything to internal buffers yet
1724 buffered_output += sh_audio->a_out_buffer_len;
1726 // Filters divide audio length by playback_speed, so multiply by it
1727 // to get the length in original units without speedup or slowdown
1728 a_pts -= buffered_output * playback_speed / ao_data.bps;
1730 return a_pts;
1733 // Return pts value corresponding to currently playing audio.
1734 double playing_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio,
1735 const ao_functions_t *audio_out)
1737 return written_audio_pts(sh_audio, d_audio) - playback_speed *
1738 audio_out->get_delay();
1741 static int check_framedrop(double frame_time) {
1742 // check for frame-drop:
1743 current_module = "check_framedrop";
1744 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
1745 static int dropped_frames;
1746 float delay = playback_speed*mpctx->audio_out->get_delay();
1747 float d = delay-mpctx->delay;
1748 ++total_frame_cnt;
1749 // we should avoid dropping too many frames in sequence unless we
1750 // are too late. and we allow 100ms A-V delay here:
1751 if (d < -dropped_frames*frame_time-0.100 &&
1752 mpctx->osd_function != OSD_PAUSE) {
1753 ++drop_frame_cnt;
1754 ++dropped_frames;
1755 return frame_dropping;
1756 } else
1757 dropped_frames = 0;
1759 return 0;
1762 static int generate_video_frame(sh_video_t *sh_video, demux_stream_t *d_video)
1764 unsigned char *start;
1765 int in_size;
1766 int hit_eof=0;
1767 double pts;
1769 while (1) {
1770 int drop_frame = check_framedrop(sh_video->frametime);
1771 void *decoded_frame;
1772 current_module = "decode video";
1773 // XXX Time used in this call is not counted in any performance
1774 // timer now, OSD is not updated correctly for filter-added frames
1775 if (vf_output_queued_frame(sh_video->vfilter))
1776 break;
1777 current_module = "video_read_frame";
1778 in_size = ds_get_packet_pts(d_video, &start, &pts);
1779 if (in_size < 0) {
1780 // try to extract last frames in case of decoder lag
1781 in_size = 0;
1782 pts = 1e300;
1783 hit_eof = 1;
1785 if (in_size > max_framesize)
1786 max_framesize = in_size;
1787 current_module = "decode video";
1788 decoded_frame = decode_video(sh_video, start, in_size, drop_frame, pts);
1789 if (decoded_frame) {
1790 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0);
1791 update_teletext(sh_video, mpctx->demuxer, 0);
1792 update_osd_msg();
1793 current_module = "filter video";
1794 if (filter_video(sh_video, decoded_frame, sh_video->pts))
1795 break;
1796 } else if (drop_frame)
1797 return -1;
1798 if (hit_eof)
1799 return 0;
1801 return 1;
1804 #ifdef HAVE_RTC
1805 int rtc_fd = -1;
1806 #endif
1808 static float timing_sleep(float time_frame)
1810 #ifdef HAVE_RTC
1811 if (rtc_fd >= 0){
1812 // -------- RTC -----------
1813 current_module="sleep_rtc";
1814 while (time_frame > 0.000) {
1815 unsigned long rtc_ts;
1816 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
1817 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno));
1818 time_frame -= GetRelativeTime();
1820 } else
1821 #endif
1823 // assume kernel HZ=100 for softsleep, works with larger HZ but with
1824 // unnecessarily high CPU usage
1825 float margin = softsleep ? 0.011 : 0;
1826 current_module = "sleep_timer";
1827 while (time_frame > margin) {
1828 usec_sleep(1000000 * (time_frame - margin));
1829 time_frame -= GetRelativeTime();
1831 if (softsleep){
1832 current_module = "sleep_soft";
1833 if (time_frame < 0)
1834 mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow);
1835 while (time_frame > 0)
1836 time_frame-=GetRelativeTime(); // burn the CPU
1839 return time_frame;
1842 static void select_subtitle(MPContext *mpctx) {
1843 // find the best sub to use
1844 int vobsub_index_id = vobsub_get_index_by_id(vo_vobsub, vobsub_id);
1845 mpctx->global_sub_pos = -1; // no subs by default
1846 if (vobsub_index_id >= 0) {
1847 // if user asks for a vobsub id, use that first.
1848 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] + vobsub_index_id;
1849 } else if (dvdsub_id >= 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1850 // if user asks for a dvd sub id, use that next.
1851 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
1852 } else if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] >= 0) {
1853 // if there are text subs to use, use those. (autosubs come last here)
1854 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_SUBS];
1855 } else if (dvdsub_id == -1 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1856 // finally select subs by language and container hints
1857 if (dvdsub_id == -1 && dvdsub_lang)
1858 dvdsub_id = demuxer_sub_track_by_lang(mpctx->demuxer, dvdsub_lang);
1859 if (dvdsub_id == -1)
1860 dvdsub_id = demuxer_default_sub_track(mpctx->demuxer);
1861 if (dvdsub_id >= 0)
1862 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
1864 // rather than duplicate code, use the SUB_SELECT handler to init the right one.
1865 mpctx->global_sub_pos--;
1866 mp_property_do("sub",M_PROPERTY_STEP_UP,NULL, mpctx);
1869 #ifdef CONFIG_DVDNAV
1870 #ifndef FF_B_TYPE
1871 #define FF_B_TYPE 3
1872 #endif
1873 /// store decoded video image
1874 static mp_image_t * mp_dvdnav_copy_mpi(mp_image_t *to_mpi,
1875 mp_image_t *from_mpi) {
1876 mp_image_t *mpi;
1878 /// Do not store B-frames
1879 if (from_mpi->pict_type == FF_B_TYPE)
1880 return to_mpi;
1882 if (to_mpi &&
1883 to_mpi->w == from_mpi->w &&
1884 to_mpi->h == from_mpi->h &&
1885 to_mpi->imgfmt == from_mpi->imgfmt)
1886 mpi = to_mpi;
1887 else {
1888 if (to_mpi)
1889 free_mp_image(to_mpi);
1890 if (from_mpi->w == 0 || from_mpi->h == 0)
1891 return NULL;
1892 mpi = alloc_mpi(from_mpi->w,from_mpi->h,from_mpi->imgfmt);
1895 copy_mpi(mpi,from_mpi);
1896 return mpi;
1899 static void mp_dvdnav_reset_stream (MPContext *ctx) {
1900 if (ctx->sh_video) {
1901 /// clear video pts
1902 ctx->d_video->pts = 0.0f;
1903 ctx->sh_video->pts = 0.0f;
1904 ctx->sh_video->i_pts = 0.0f;
1905 ctx->sh_video->last_pts = 0.0f;
1906 ctx->sh_video->num_buffered_pts = 0;
1907 ctx->sh_video->num_frames = 0;
1908 ctx->sh_video->num_frames_decoded = 0;
1909 ctx->sh_video->timer = 0.0f;
1910 ctx->sh_video->stream_delay = 0.0f;
1911 ctx->sh_video->timer = 0;
1912 ctx->demuxer->stream_pts = MP_NOPTS_VALUE;
1915 if (ctx->sh_audio) {
1916 /// free audio packets and reset
1917 ds_free_packs(ctx->d_audio);
1918 audio_delay -= ctx->sh_audio->stream_delay;
1919 ctx->delay =- audio_delay;
1920 ctx->audio_out->reset();
1921 resync_audio_stream(ctx->sh_audio);
1924 audio_delay = 0.0f;
1925 if (dvdsub_lang && dvdsub_id == dvdsub_lang_id) {
1926 dvdsub_lang_id = mp_dvdnav_sid_from_lang(ctx->stream, dvdsub_lang);
1927 if (dvdsub_lang_id != dvdsub_id) {
1928 dvdsub_id = dvdsub_lang_id;
1929 select_subtitle(ctx);
1933 /// clear all EOF related flags
1934 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0;
1937 /// Restore last decoded DVDNAV (still frame)
1938 static mp_image_t *mp_dvdnav_restore_smpi(int *in_size,
1939 unsigned char **start,
1940 mp_image_t *decoded_frame)
1942 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
1943 return decoded_frame;
1945 /// a change occured in dvdnav stream
1946 if (mp_dvdnav_cell_has_changed(mpctx->stream,0)) {
1947 mp_dvdnav_read_wait(mpctx->stream, 1, 1);
1948 mp_dvdnav_context_free(mpctx);
1949 mp_dvdnav_reset_stream(mpctx);
1950 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
1951 mp_dvdnav_cell_has_changed(mpctx->stream,1);
1954 if (*in_size < 0) {
1955 float len;
1957 /// Display still frame, if any
1958 if (mpctx->nav_smpi && !mpctx->nav_buffer)
1959 decoded_frame = mpctx->nav_smpi;
1961 /// increment video frame : continue playing after still frame
1962 len = demuxer_get_time_length(mpctx->demuxer);
1963 if (mpctx->sh_video->pts >= len &&
1964 mpctx->sh_video->pts > 0.0 && len > 0.0) {
1965 mp_dvdnav_skip_still(mpctx->stream);
1966 mp_dvdnav_skip_wait(mpctx->stream);
1968 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps;
1970 if (mpctx->nav_buffer) {
1971 *start = mpctx->nav_start;
1972 *in_size = mpctx->nav_in_size;
1973 if (mpctx->nav_start)
1974 memcpy(*start,mpctx->nav_buffer,mpctx->nav_in_size);
1978 return decoded_frame;
1981 /// Save last decoded DVDNAV (still frame)
1982 static void mp_dvdnav_save_smpi(int in_size,
1983 unsigned char *start,
1984 mp_image_t *decoded_frame)
1986 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
1987 return;
1989 if (mpctx->nav_buffer)
1990 free(mpctx->nav_buffer);
1992 mpctx->nav_buffer = malloc(in_size);
1993 mpctx->nav_start = start;
1994 mpctx->nav_in_size = mpctx->nav_buffer ? in_size : -1;
1995 if (mpctx->nav_buffer)
1996 memcpy(mpctx->nav_buffer,start,in_size);
1998 if (decoded_frame && mpctx->nav_smpi != decoded_frame)
1999 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi,decoded_frame);
2001 #endif /* CONFIG_DVDNAV */
2003 static void adjust_sync_and_print_status(int between_frames, float timing_error)
2005 current_module="av_sync";
2007 if(mpctx->sh_audio){
2008 double a_pts, v_pts;
2010 if (autosync)
2012 * If autosync is enabled, the value for delay must be calculated
2013 * a bit differently. It is set only to the difference between
2014 * the audio and video timers. Any attempt to include the real
2015 * or corrected delay causes the pts_correction code below to
2016 * try to correct for the changes in delay which autosync is
2017 * trying to measure. This keeps the two from competing, but still
2018 * allows the code to correct for PTS drift *only*. (Using a delay
2019 * value here, even a "corrected" one, would be incompatible with
2020 * autosync mode.)
2022 a_pts = written_audio_pts(mpctx->sh_audio, mpctx->d_audio) - mpctx->delay;
2023 else
2024 a_pts = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
2026 v_pts = mpctx->sh_video->pts;
2029 static int drop_message=0;
2030 double AV_delay = a_pts - audio_delay - v_pts;
2031 double x;
2032 if (AV_delay>0.5 && drop_frame_cnt>50 && drop_message==0){
2033 ++drop_message;
2034 mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
2036 if (autosync)
2037 x = AV_delay*0.1f;
2038 else
2039 /* Do not correct target time for the next frame if this frame
2040 * was late not because of wrong target time but because the
2041 * target time could not be met */
2042 x = (AV_delay + timing_error * playback_speed) * 0.1f;
2043 if (x < -max_pts_correction)
2044 x = -max_pts_correction;
2045 else if (x> max_pts_correction)
2046 x = max_pts_correction;
2047 if (default_max_pts_correction >= 0)
2048 max_pts_correction = default_max_pts_correction;
2049 else
2050 max_pts_correction = mpctx->sh_video->frametime*0.10; // +-10% of time
2051 if (!between_frames) {
2052 mpctx->delay+=x;
2053 c_total+=x;
2055 if(!quiet)
2056 print_status(a_pts - audio_delay, AV_delay, c_total);
2059 } else {
2060 // No audio:
2062 if (!quiet)
2063 print_status(0, 0, 0);
2067 static int fill_audio_out_buffers(void)
2069 unsigned int t;
2070 double tt;
2071 int playsize;
2072 int playflags=0;
2073 int audio_eof=0;
2074 int bytes_to_write;
2075 sh_audio_t * const sh_audio = mpctx->sh_audio;
2077 current_module="play_audio";
2079 while (1) {
2080 int sleep_time;
2081 // all the current uses of ao_data.pts seem to be in aos that handle
2082 // sync completely wrong; there should be no need to use ao_data.pts
2083 // in get_space()
2084 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2085 bytes_to_write = mpctx->audio_out->get_space();
2086 if (mpctx->sh_video || bytes_to_write >= ao_data.outburst)
2087 break;
2089 // handle audio-only case:
2090 // this is where mplayer sleeps during audio-only playback
2091 // to avoid 100% CPU use
2092 sleep_time = (ao_data.outburst - bytes_to_write) * 1000 / ao_data.bps;
2093 if (sleep_time < 10) sleep_time = 10; // limit to 100 wakeups per second
2094 usec_sleep(sleep_time * 1000);
2097 while (bytes_to_write) {
2098 playsize = bytes_to_write;
2099 if (playsize > MAX_OUTBURST)
2100 playsize = MAX_OUTBURST;
2101 bytes_to_write -= playsize;
2103 // Fill buffer if needed:
2104 current_module="decode_audio";
2105 t = GetTimer();
2106 if (decode_audio(sh_audio, playsize) < 0) // EOF or error
2107 if (mpctx->d_audio->eof) {
2108 audio_eof = 1;
2109 if (sh_audio->a_out_buffer_len == 0)
2110 return 0;
2112 t = GetTimer() - t;
2113 tt = t*0.000001f; audio_time_usage+=tt;
2114 if (playsize > sh_audio->a_out_buffer_len) {
2115 playsize = sh_audio->a_out_buffer_len;
2116 if (audio_eof)
2117 playflags |= AOPLAY_FINAL_CHUNK;
2119 if (!playsize)
2120 break;
2122 // play audio:
2123 current_module="play_audio";
2125 // Is this pts value actually useful for the aos that access it?
2126 // They're obviously badly broken in the way they handle av sync;
2127 // would not having access to this make them more broken?
2128 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2129 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags);
2131 if (playsize > 0) {
2132 sh_audio->a_out_buffer_len -= playsize;
2133 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize],
2134 sh_audio->a_out_buffer_len);
2135 mpctx->delay += playback_speed*playsize/(double)ao_data.bps;
2137 else if (audio_eof && mpctx->audio_out->get_delay() < .04) {
2138 // Sanity check to avoid hanging in case current ao doesn't output
2139 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK
2140 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n");
2141 sh_audio->a_out_buffer_len = 0;
2144 return 1;
2147 static int sleep_until_update(float *time_frame, float *aq_sleep_time)
2149 int frame_time_remaining = 0;
2150 current_module="calc_sleep_time";
2152 *time_frame -= GetRelativeTime(); // reset timer
2154 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
2155 float delay = mpctx->audio_out->get_delay();
2156 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay);
2158 if (autosync) {
2160 * Adjust this raw delay value by calculating the expected
2161 * delay for this frame and generating a new value which is
2162 * weighted between the two. The higher autosync is, the
2163 * closer to the delay value gets to that which "-nosound"
2164 * would have used, and the longer it will take for A/V
2165 * sync to settle at the right value (but it eventually will.)
2166 * This settling time is very short for values below 100.
2168 float predicted = mpctx->delay / playback_speed + *time_frame;
2169 float difference = delay - predicted;
2170 delay = predicted + difference / (float)autosync;
2173 *time_frame = delay - mpctx->delay / playback_speed;
2175 // delay = amount of audio buffered in soundcard/driver
2176 if (delay > 0.25) delay=0.25; else
2177 if (delay < 0.10) delay=0.10;
2178 if (*time_frame > delay*0.6) {
2179 // sleep time too big - may cause audio drops (buffer underrun)
2180 frame_time_remaining = 1;
2181 *time_frame = delay*0.5;
2183 } else {
2184 // If we're lagging more than 200 ms behind the right playback rate,
2185 // don't try to "catch up".
2186 // If benchmark is set always output frames as fast as possible
2187 // without sleeping.
2188 if (*time_frame < -0.2 || benchmark)
2189 *time_frame = 0;
2192 *aq_sleep_time += *time_frame;
2195 //============================== SLEEP: ===================================
2197 // flag 256 means: libvo driver does its timing (dvb card)
2198 if (*time_frame > 0.001 && !(vo_flags&256))
2199 *time_frame = timing_sleep(*time_frame);
2200 return frame_time_remaining;
2203 int reinit_video_chain(void) {
2204 sh_video_t * const sh_video = mpctx->sh_video;
2205 double ar=-1.0;
2206 //================== Init VIDEO (codec & libvo) ==========================
2207 if(!fixed_vo || !(initialized_flags&INITIALIZED_VO)){
2208 current_module="preinit_libvo";
2210 //shouldn't we set dvideo->id=-2 when we fail?
2211 vo_config_count=0;
2212 //if((mpctx->video_out->preinit(vo_subdevice))!=0){
2213 if(!(mpctx->video_out=init_best_video_out(video_driver_list))){
2214 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorInitializingVODevice);
2215 goto err_out;
2217 initialized_flags|=INITIALIZED_VO;
2220 if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
2221 mpctx->sh_video->stream_aspect = ar;
2222 current_module="init_video_filters";
2224 char* vf_arg[] = { "_oldargs_", (char*)mpctx->video_out , NULL };
2225 sh_video->vfilter=(void*)vf_open_filter(NULL,"vo",vf_arg);
2227 #ifdef CONFIG_MENU
2228 if(use_menu) {
2229 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2230 vf_menu = vf_open_plugin(libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2231 if(!vf_menu) {
2232 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantOpenLibmenuFilterWithThisRootMenu,menu_root);
2233 use_menu = 0;
2236 if(vf_menu)
2237 sh_video->vfilter=(void*)vf_menu;
2238 #endif
2240 #ifdef CONFIG_ASS
2241 if(ass_enabled) {
2242 int i;
2243 int insert = 1;
2244 if (vf_settings)
2245 for (i = 0; vf_settings[i].name; ++i)
2246 if (strcmp(vf_settings[i].name, "ass") == 0) {
2247 insert = 0;
2248 break;
2250 if (insert) {
2251 extern vf_info_t vf_info_ass;
2252 const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
2253 char* vf_arg[] = {"auto", "1", NULL};
2254 vf_instance_t* vf_ass = vf_open_plugin(libass_vfs,sh_video->vfilter,"ass",vf_arg);
2255 if (vf_ass)
2256 sh_video->vfilter=(void*)vf_ass;
2257 else
2258 mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
2261 #endif
2263 sh_video->vfilter=(void*)append_filters(sh_video->vfilter);
2265 #ifdef CONFIG_ASS
2266 if (ass_enabled)
2267 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter, VFCTRL_INIT_EOSD, ass_library);
2268 #endif
2270 current_module="init_video_codec";
2272 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2273 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2274 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2276 if(!sh_video->initialized){
2277 if(!fixed_vo) uninit_player(INITIALIZED_VO);
2278 goto err_out;
2281 initialized_flags|=INITIALIZED_VCODEC;
2283 if (sh_video->codec)
2284 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2286 sh_video->last_pts = MP_NOPTS_VALUE;
2287 sh_video->num_buffered_pts = 0;
2288 sh_video->next_frame_time = 0;
2290 if(auto_quality>0){
2291 // Auto quality option enabled
2292 output_quality=get_video_quality_max(sh_video);
2293 if(auto_quality>output_quality) auto_quality=output_quality;
2294 else output_quality=auto_quality;
2295 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2296 set_video_quality(sh_video,output_quality);
2299 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2301 current_module="init_vo";
2303 return 1;
2305 err_out:
2306 mpctx->sh_video = mpctx->d_video->sh = NULL;
2307 return 0;
2310 static double update_video(int *blit_frame)
2312 sh_video_t * const sh_video = mpctx->sh_video;
2313 //-------------------- Decode a frame: -----------------------
2314 double frame_time;
2315 *blit_frame = 0; // Don't blit if we hit EOF
2316 if (!correct_pts) {
2317 unsigned char* start=NULL;
2318 void *decoded_frame = NULL;
2319 int drop_frame=0;
2320 int in_size;
2322 current_module = "video_read_frame";
2323 frame_time = sh_video->next_frame_time;
2324 in_size = video_read_frame(sh_video, &sh_video->next_frame_time,
2325 &start, force_fps);
2326 #ifdef CONFIG_DVDNAV
2327 /// wait, still frame or EOF
2328 if (mpctx->stream->type == STREAMTYPE_DVDNAV && in_size < 0) {
2329 if (mp_dvdnav_is_eof(mpctx->stream)) return -1;
2330 if (mpctx->d_video) mpctx->d_video->eof = 0;
2331 if (mpctx->d_audio) mpctx->d_audio->eof = 0;
2332 mpctx->stream->eof = 0;
2333 } else
2334 #endif
2335 if (in_size < 0)
2336 return -1;
2337 if (in_size > max_framesize)
2338 max_framesize = in_size; // stats
2339 sh_video->timer += frame_time;
2340 if (mpctx->sh_audio)
2341 mpctx->delay -= frame_time;
2342 // video_read_frame can change fps (e.g. for ASF video)
2343 vo_fps = sh_video->fps;
2344 drop_frame = check_framedrop(frame_time);
2345 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0);
2346 update_teletext(sh_video, mpctx->demuxer, 0);
2347 update_osd_msg();
2348 current_module = "decode_video";
2349 #ifdef CONFIG_DVDNAV
2350 decoded_frame = mp_dvdnav_restore_smpi(&in_size,&start,decoded_frame);
2351 /// still frame has been reached, no need to decode
2352 if (in_size > 0 && !decoded_frame)
2353 #endif
2354 decoded_frame = decode_video(sh_video, start, in_size, drop_frame,
2355 sh_video->pts);
2356 #ifdef CONFIG_DVDNAV
2357 /// save back last still frame for future display
2358 mp_dvdnav_save_smpi(in_size,start,decoded_frame);
2359 #endif
2360 current_module = "filter_video";
2361 *blit_frame = (decoded_frame && filter_video(sh_video, decoded_frame,
2362 sh_video->pts));
2364 else {
2365 int res = generate_video_frame(sh_video, mpctx->d_video);
2366 if (!res)
2367 return -1;
2368 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter,
2369 VFCTRL_GET_PTS, &sh_video->pts);
2370 if (sh_video->pts == MP_NOPTS_VALUE) {
2371 mp_msg(MSGT_CPLAYER, MSGL_ERR, "pts after filters MISSING\n");
2372 sh_video->pts = sh_video->last_pts;
2374 if (sh_video->last_pts == MP_NOPTS_VALUE)
2375 sh_video->last_pts= sh_video->pts;
2376 else if (sh_video->last_pts > sh_video->pts) {
2377 sh_video->last_pts = sh_video->pts;
2378 mp_msg(MSGT_CPLAYER, MSGL_INFO, "pts value < previous\n");
2380 frame_time = sh_video->pts - sh_video->last_pts;
2381 sh_video->last_pts = sh_video->pts;
2382 sh_video->timer += frame_time;
2383 if(mpctx->sh_audio)
2384 mpctx->delay -= frame_time;
2385 *blit_frame = res > 0;
2387 return frame_time;
2390 static void pause_loop(void)
2392 mp_cmd_t* cmd;
2393 if (!quiet) {
2394 // Small hack to display the pause message on the OSD line.
2395 // The pause string is: "\n == PAUSE == \r" so we need to
2396 // take the first and the last char out
2397 if (term_osd && !mpctx->sh_video) {
2398 char msg[128] = MSGTR_Paused;
2399 int mlen = strlen(msg);
2400 msg[mlen-1] = '\0';
2401 set_osd_msg(OSD_MSG_PAUSE, 1, 0, "%s", msg+1);
2402 update_osd_msg();
2403 } else
2404 mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
2405 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n");
2407 #ifdef CONFIG_GUI
2408 if (use_gui)
2409 guiGetEvent(guiCEvent, (char *)guiSetPause);
2410 #endif
2411 if (mpctx->video_out && mpctx->sh_video && vo_config_count)
2412 mpctx->video_out->control(VOCTRL_PAUSE, NULL);
2414 if (mpctx->audio_out && mpctx->sh_audio)
2415 mpctx->audio_out->pause(); // pause audio, keep data if possible
2417 while ( (cmd = mp_input_get_cmd(20, 1, 1)) == NULL || cmd->pausing == 4) {
2418 if (cmd) {
2419 cmd = mp_input_get_cmd(0,1,0);
2420 run_command(mpctx, cmd);
2421 mp_cmd_free(cmd);
2422 continue;
2424 if (mpctx->sh_video && mpctx->video_out && vo_config_count)
2425 mpctx->video_out->check_events();
2426 #ifdef CONFIG_GUI
2427 if (use_gui) {
2428 guiEventHandling();
2429 guiGetEvent(guiReDraw, NULL);
2430 if (guiIntfStruct.Playing!=2 || (rel_seek_secs || abs_seek_pos))
2431 break;
2433 #endif
2434 #ifdef CONFIG_MENU
2435 if (vf_menu)
2436 vf_menu_pause_update(vf_menu);
2437 #endif
2438 usec_sleep(20000);
2440 if (cmd && cmd->id == MP_CMD_PAUSE) {
2441 cmd = mp_input_get_cmd(0,1,0);
2442 mp_cmd_free(cmd);
2444 mpctx->osd_function=OSD_PLAY;
2445 if (mpctx->audio_out && mpctx->sh_audio)
2446 if (mpctx->eof) // do not play remaining audio if we e.g. switch to the next file
2447 mpctx->audio_out->reset();
2448 else
2449 mpctx->audio_out->resume(); // resume audio
2450 if (mpctx->video_out && mpctx->sh_video && vo_config_count)
2451 mpctx->video_out->control(VOCTRL_RESUME, NULL); // resume video
2452 (void)GetRelativeTime(); // ignore time that passed during pause
2453 #ifdef CONFIG_GUI
2454 if (use_gui) {
2455 if (guiIntfStruct.Playing == guiSetStop)
2456 mpctx->eof = 1;
2457 else
2458 guiGetEvent(guiCEvent, (char *)guiSetPlay);
2460 #endif
2464 // Find the right mute status and record position for new file position
2465 static void edl_seek_reset(MPContext *mpctx)
2467 mpctx->edl_muted = 0;
2468 next_edl_record = edl_records;
2470 while (next_edl_record) {
2471 if (next_edl_record->start_sec >= mpctx->sh_video->pts)
2472 break;
2474 if (next_edl_record->action == EDL_MUTE)
2475 mpctx->edl_muted = !mpctx->edl_muted;
2476 next_edl_record = next_edl_record->next;
2478 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2479 mixer_mute(&mpctx->mixer);
2483 // Execute EDL command for the current position if one exists
2484 static void edl_update(MPContext *mpctx)
2486 if (!next_edl_record)
2487 return;
2489 if (!mpctx->sh_video) {
2490 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlNOsh_video);
2491 free_edl(edl_records);
2492 next_edl_record = NULL;
2493 edl_records = NULL;
2494 return;
2497 if (mpctx->sh_video->pts >= next_edl_record->start_sec) {
2498 if (next_edl_record->action == EDL_SKIP) {
2499 mpctx->osd_function = OSD_FFW;
2500 abs_seek_pos = 0;
2501 rel_seek_secs = next_edl_record->length_sec;
2502 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop "
2503 "[%f], length [%f]\n", next_edl_record->start_sec,
2504 next_edl_record->stop_sec, next_edl_record->length_sec);
2505 edl_decision = 1;
2507 else if (next_edl_record->action == EDL_MUTE) {
2508 mpctx->edl_muted = !mpctx->edl_muted;
2509 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2510 mixer_mute(&mpctx->mixer);
2511 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n",
2512 next_edl_record->start_sec );
2514 next_edl_record = next_edl_record->next;
2519 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute
2520 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length
2521 // return -1 if seek failed (non-seekable stream?), 0 otherwise
2522 static int seek(MPContext *mpctx, double amount, int style)
2524 current_module = "seek";
2525 if (demux_seek(mpctx->demuxer, amount, audio_delay, style) == 0)
2526 return -1;
2528 if (mpctx->sh_video) {
2529 current_module = "seek_video_reset";
2530 resync_video_stream(mpctx->sh_video);
2531 if (vo_config_count)
2532 mpctx->video_out->control(VOCTRL_RESET, NULL);
2533 mpctx->sh_video->num_buffered_pts = 0;
2534 mpctx->sh_video->last_pts = MP_NOPTS_VALUE;
2535 mpctx->num_buffered_frames = 0;
2536 mpctx->delay = 0;
2537 // Not all demuxers set d_video->pts during seek, so this value
2538 // (which is used by at least vobsub and edl code below) may
2539 // be completely wrong (probably 0).
2540 mpctx->sh_video->pts = mpctx->d_video->pts;
2541 update_subtitles(mpctx->sh_video, mpctx->sh_video->pts, mpctx->d_sub, 1);
2542 update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
2545 if (mpctx->sh_audio) {
2546 current_module = "seek_audio_reset";
2547 mpctx->audio_out->reset(); // stop audio, throwing away buffered data
2548 mpctx->sh_audio->a_buffer_len = 0;
2549 mpctx->sh_audio->a_out_buffer_len = 0;
2550 if (!mpctx->sh_video)
2551 update_subtitles(NULL, mpctx->sh_audio->pts, mpctx->d_sub, 1);
2554 if (vo_vobsub && mpctx->sh_video) {
2555 current_module = "seek_vobsub_reset";
2556 vobsub_seek(vo_vobsub, mpctx->sh_video->pts);
2559 edl_seek_reset(mpctx);
2561 c_total = 0;
2562 max_pts_correction = 0.1;
2563 audio_time_usage = 0; video_time_usage = 0; vout_time_usage = 0;
2564 drop_frame_cnt = 0;
2566 current_module = NULL;
2567 return 0;
2570 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object
2571 * file for some tools to link against. */
2572 #ifndef DISABLE_MAIN
2573 int main(int argc,char* argv[]){
2576 char * mem_ptr;
2578 // movie info:
2580 /* Flag indicating whether MPlayer should exit without playing anything. */
2581 int opt_exit = 0;
2583 //float a_frame=0; // Audio
2585 int i;
2587 int gui_no_filename=0;
2589 InitTimer();
2590 srand(GetTimerMS());
2592 mp_msg_init();
2594 // Create the config context and register the options
2595 mconfig = m_config_new();
2596 m_config_register_options(mconfig,mplayer_opts);
2597 mp_input_register_options(mconfig);
2599 // Preparse the command line
2600 m_config_preparse_command_line(mconfig,argc,argv);
2602 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
2603 set_path_env();
2604 #endif
2606 #ifdef CONFIG_TV
2607 stream_tv_defaults.immediate = 1;
2608 #endif
2610 if (argc > 1 && argv[1] &&
2611 (!strcmp(argv[1], "-gui") || !strcmp(argv[1], "-nogui"))) {
2612 use_gui = !strcmp(argv[1], "-gui");
2613 } else
2614 if ( argv[0] )
2616 char *base = strrchr(argv[0], '/');
2617 if (!base)
2618 base = strrchr(argv[0], '\\');
2619 if (!base)
2620 base = argv[0];
2621 if(strstr(base, "gmplayer"))
2622 use_gui=1;
2625 parse_cfgfiles(mconfig);
2627 #ifdef CONFIG_GUI
2628 if ( use_gui ) cfg_read();
2629 #endif
2631 mpctx->playtree = m_config_parse_mp_command_line(mconfig, argc, argv);
2632 if(mpctx->playtree == NULL)
2633 opt_exit = 1;
2634 else {
2635 mpctx->playtree = play_tree_cleanup(mpctx->playtree);
2636 if(mpctx->playtree) {
2637 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mconfig);
2638 if(mpctx->playtree_iter) {
2639 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
2640 play_tree_iter_free(mpctx->playtree_iter);
2641 mpctx->playtree_iter = NULL;
2643 filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
2648 print_version("MPlayer");
2650 #if defined(__MINGW32__) || defined(__CYGWIN__)
2651 #ifdef CONFIG_GUI
2652 void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows");
2653 if(runningmplayer && filename && use_gui){
2654 COPYDATASTRUCT csData;
2655 char file[MAX_PATH];
2656 char *filepart = filename;
2657 if(GetFullPathName(filename, MAX_PATH, file, &filepart)){
2658 csData.dwData = 0;
2659 csData.cbData = strlen(file)*2;
2660 csData.lpData = file;
2661 SendMessage(runningmplayer, WM_COPYDATA, (WPARAM)runningmplayer, (LPARAM)&csData);
2664 #endif
2667 HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
2668 BOOL WINAPI (*setDEP)(DWORD) = NULL;
2669 if (kernel32)
2670 setDEP = GetProcAddress(kernel32, "SetProcessDEPPolicy");
2671 if (setDEP) setDEP(3);
2673 // stop Windows from showing all kinds of annoying error dialogs
2674 SetErrorMode(0x8003);
2675 // request 1ms timer resolution
2676 timeBeginPeriod(1);
2677 #endif
2679 #ifdef CONFIG_PRIORITY
2680 set_priority();
2681 #endif
2683 #ifndef CONFIG_GUI
2684 if(use_gui){
2685 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui);
2686 use_gui=0;
2688 #else
2689 #if !defined(__MINGW32__) && !defined(__CYGWIN__)
2690 if(use_gui && !vo_init()){
2691 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX);
2692 use_gui=0;
2694 #endif
2695 if (use_gui && mpctx->playtree_iter){
2696 char cwd[PATH_MAX+2];
2697 // Free Playtree and Playtree-Iter as it's not used by the GUI.
2698 play_tree_iter_free(mpctx->playtree_iter);
2699 mpctx->playtree_iter=NULL;
2701 if (getcwd(cwd, PATH_MAX) != (char *)NULL)
2703 strcat(cwd, "/");
2704 // Prefix relative paths with current working directory
2705 play_tree_add_bpf(mpctx->playtree, cwd);
2707 // Import initital playtree into GUI.
2708 import_initial_playtree_into_gui(mpctx->playtree, mconfig, enqueue);
2710 #endif /* CONFIG_GUI */
2712 if(video_driver_list && strcmp(video_driver_list[0],"help")==0){
2713 list_video_out();
2714 opt_exit = 1;
2717 if(audio_driver_list && strcmp(audio_driver_list[0],"help")==0){
2718 list_audio_out();
2719 opt_exit = 1;
2722 /* Check codecs.conf. */
2723 if(!codecs_file || !parse_codec_cfg(codecs_file)){
2724 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
2725 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
2726 if(!parse_codec_cfg(NULL)){
2727 exit_player_with_rc(EXIT_NONE, 0);
2729 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_BuiltinCodecsConf);
2732 free( mem_ptr ); // release the buffer created by get_path()
2735 #if 0
2736 if(video_codec_list){
2737 int i;
2738 video_codec=video_codec_list[0];
2739 for(i=0;video_codec_list[i];i++)
2740 mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]);
2742 #endif
2743 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
2744 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs);
2745 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n");
2746 list_codecs(1);
2747 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2748 opt_exit = 1;
2750 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
2751 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs);
2752 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n");
2753 list_codecs(0);
2754 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2755 opt_exit = 1;
2757 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
2758 vfm_help();
2759 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2760 opt_exit = 1;
2762 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
2763 afm_help();
2764 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2765 opt_exit = 1;
2767 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
2768 af_help();
2769 printf("\n");
2770 opt_exit = 1;
2772 #ifdef CONFIG_X11
2773 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
2774 fstype_help();
2775 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2776 opt_exit = 1;
2778 #endif
2779 if((demuxer_name && strcmp(demuxer_name,"help")==0) ||
2780 (audio_demuxer_name && strcmp(audio_demuxer_name,"help")==0) ||
2781 (sub_demuxer_name && strcmp(sub_demuxer_name,"help")==0)){
2782 demuxer_help();
2783 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2784 opt_exit = 1;
2786 if(list_properties) {
2787 property_print_help();
2788 opt_exit = 1;
2791 if(opt_exit)
2792 exit_player(EXIT_NONE);
2794 if (player_idle_mode && use_gui) {
2795 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NoIdleAndGui);
2796 exit_player_with_rc(EXIT_NONE, 1);
2799 if(!filename && !player_idle_mode){
2800 if(!use_gui){
2801 // no file/vcd/dvd -> show HELP:
2802 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text);
2803 exit_player_with_rc(EXIT_NONE, 0);
2804 } else gui_no_filename=1;
2807 /* Display what configure line was used */
2808 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
2810 // Many users forget to include command line in bugreports...
2811 if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
2812 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
2813 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
2814 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2817 //------ load global data first ------
2819 // check font
2820 #ifdef CONFIG_FREETYPE
2821 init_freetype();
2822 #endif
2823 #ifdef CONFIG_FONTCONFIG
2824 if(font_fontconfig <= 0)
2826 #endif
2827 #ifdef CONFIG_BITMAP_FONT
2828 if(font_name){
2829 vo_font=read_font_desc(font_name,font_factor,verbose>1);
2830 if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,
2831 filename_recode(font_name));
2832 } else {
2833 // try default:
2834 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
2835 free(mem_ptr); // release the buffer created by get_path()
2836 if(!vo_font)
2837 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
2839 if (sub_font_name)
2840 sub_font = read_font_desc(sub_font_name, font_factor, verbose>1);
2841 else
2842 sub_font = vo_font;
2843 #endif
2844 #ifdef CONFIG_FONTCONFIG
2846 #endif
2848 vo_init_osd();
2850 #ifdef CONFIG_ASS
2851 ass_library = ass_init();
2852 #endif
2854 #ifdef HAVE_RTC
2855 if(!nortc)
2857 // seteuid(0); /* Can't hurt to try to get root here */
2858 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
2859 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_RTCDeviceNotOpenable,
2860 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
2861 else {
2862 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
2864 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
2865 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno));
2866 mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp);
2867 close (rtc_fd);
2868 rtc_fd = -1;
2869 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
2870 /* variable only by the root */
2871 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno));
2872 close (rtc_fd);
2873 rtc_fd = -1;
2874 } else
2875 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_UsingRTCTiming, irqp);
2878 #ifdef CONFIG_GUI
2879 // breaks DGA and SVGAlib and VESA drivers: --A'rpi
2880 // and now ? -- Pontscho
2881 if(use_gui) setuid( getuid() ); // strongly test, please check this.
2882 #endif
2883 if(rtc_fd<0)
2884 #endif /* HAVE_RTC */
2885 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
2886 softsleep?"software":timer_name);
2888 #ifdef HAVE_TERMCAP
2889 if ( !use_gui ) load_termcap(NULL); // load key-codes
2890 #endif
2892 // ========== Init keyboard FIFO (connection to libvo) ============
2894 // Init input system
2895 current_module = "init_input";
2896 mp_input_init(use_gui);
2897 mp_input_add_key_fd(-1,0,mplayer_get_key,NULL);
2898 if(slave_mode)
2899 mp_input_add_cmd_fd(0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);
2900 else if(!noconsolecontrols)
2901 mp_input_add_event_fd(0, getch2);
2902 // Set the libstream interrupt callback
2903 stream_set_interrupt_callback(mp_input_check_interrupt);
2905 #ifdef CONFIG_MENU
2906 if(use_menu) {
2907 if(menu_cfg && menu_init(mpctx, menu_cfg))
2908 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
2909 else {
2910 menu_cfg = get_path("menu.conf");
2911 if(menu_init(mpctx, menu_cfg))
2912 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
2913 else {
2914 if(menu_init(mpctx, MPLAYER_CONFDIR "/menu.conf"))
2915 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
2916 else {
2917 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_MenuInitFailed);
2918 use_menu = 0;
2923 #endif
2925 initialized_flags|=INITIALIZED_INPUT;
2926 current_module = NULL;
2928 /// Catch signals
2929 #ifndef __MINGW32__
2930 signal(SIGCHLD,child_sighandler);
2931 #endif
2933 #ifdef CONFIG_CRASH_DEBUG
2934 prog_path = argv[0];
2935 #endif
2936 //========= Catch terminate signals: ================
2937 // terminate requests:
2938 signal(SIGTERM,exit_sighandler); // kill
2939 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
2941 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
2943 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
2944 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
2945 #ifdef CONFIG_SIGHANDLER
2946 // fatal errors:
2947 signal(SIGBUS,exit_sighandler); // bus error
2948 signal(SIGSEGV,exit_sighandler); // segfault
2949 signal(SIGILL,exit_sighandler); // illegal instruction
2950 signal(SIGFPE,exit_sighandler); // floating point exc.
2951 signal(SIGABRT,exit_sighandler); // abort()
2952 #ifdef CONFIG_CRASH_DEBUG
2953 if (crash_debug)
2954 signal(SIGTRAP,exit_sighandler);
2955 #endif
2956 #endif
2958 #ifdef CONFIG_GUI
2959 if(use_gui){
2960 guiInit();
2961 guiGetEvent(guiSetContext, mpctx);
2962 initialized_flags|=INITIALIZED_GUI;
2963 guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) );
2965 #endif
2967 // ******************* Now, let's see the per-file stuff ********************
2969 play_next_file:
2971 // init global sub numbers
2972 mpctx->global_sub_size = 0;
2973 { int i; for (i = 0; i < SUB_SOURCES; i++) mpctx->global_sub_indices[i] = -1; }
2975 if (filename) {
2976 load_per_protocol_config (mconfig, filename);
2977 load_per_extension_config (mconfig, filename);
2978 load_per_file_config (mconfig, filename);
2981 if (video_driver_list)
2982 load_per_output_config (mconfig, PROFILE_CFG_VO, video_driver_list[0]);
2983 if (audio_driver_list)
2984 load_per_output_config (mconfig, PROFILE_CFG_AO, audio_driver_list[0]);
2986 // We must enable getch2 here to be able to interrupt network connection
2987 // or cache filling
2988 if(!noconsolecontrols && !slave_mode){
2989 if(initialized_flags&INITIALIZED_GETCH2)
2990 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_Getch2InitializedTwice);
2991 else
2992 getch2_enable(); // prepare stdin for hotkeys...
2993 initialized_flags|=INITIALIZED_GETCH2;
2994 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
2997 // =================== GUI idle loop (STOP state) ===========================
2998 #ifdef CONFIG_GUI
2999 if ( use_gui ) {
3000 mpctx->file_format=DEMUXER_TYPE_UNKNOWN;
3001 guiGetEvent( guiSetDefaults,0 );
3002 while ( guiIntfStruct.Playing != 1 )
3004 mp_cmd_t* cmd;
3005 usec_sleep(20000);
3006 guiEventHandling();
3007 guiGetEvent( guiReDraw,NULL );
3008 if ( (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3009 guiGetEvent(guiIEvent, (char *)cmd->id);
3010 mp_cmd_free(cmd);
3013 guiGetEvent( guiSetParameters,NULL );
3014 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM )
3016 play_tree_t * entry = play_tree_new();
3017 play_tree_add_file( entry,guiIntfStruct.Filename );
3018 if ( mpctx->playtree ) play_tree_free_list( mpctx->playtree->child,1 );
3019 else mpctx->playtree=play_tree_new();
3020 play_tree_set_child( mpctx->playtree,entry );
3021 if(mpctx->playtree)
3023 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mconfig);
3024 if(mpctx->playtree_iter)
3026 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY)
3028 play_tree_iter_free(mpctx->playtree_iter);
3029 mpctx->playtree_iter = NULL;
3031 filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
3036 #endif /* CONFIG_GUI */
3038 while (player_idle_mode && !filename) {
3039 play_tree_t * entry = NULL;
3040 mp_cmd_t * cmd;
3041 while (!(cmd = mp_input_get_cmd(0,1,0))) { // wait for command
3042 if (mpctx->video_out && vo_config_count) mpctx->video_out->check_events();
3043 usec_sleep(20000);
3045 switch (cmd->id) {
3046 case MP_CMD_LOADFILE:
3047 // prepare a tree entry with the new filename
3048 entry = play_tree_new();
3049 play_tree_add_file(entry, cmd->args[0].v.s);
3050 // The entry is added to the main playtree after the switch().
3051 break;
3052 case MP_CMD_LOADLIST:
3053 entry = parse_playlist_file(cmd->args[0].v.s);
3054 break;
3055 case MP_CMD_QUIT:
3056 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3057 break;
3058 case MP_CMD_GET_PROPERTY:
3059 case MP_CMD_SET_PROPERTY:
3060 case MP_CMD_STEP_PROPERTY:
3061 run_command(mpctx, cmd);
3062 break;
3065 mp_cmd_free(cmd);
3067 if (entry) { // user entered a command that gave a valid entry
3068 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it
3069 play_tree_free_list(mpctx->playtree->child, 1);
3070 else mpctx->playtree=play_tree_new(); // .. or make a brand new playtree
3072 if (!mpctx->playtree) continue; // couldn't make playtree! wait for next command
3074 play_tree_set_child(mpctx->playtree, entry);
3076 /* Make iterator start at the top the of tree. */
3077 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mconfig);
3078 if (!mpctx->playtree_iter) continue;
3080 // find the first real item in the tree
3081 if (play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3082 // no items!
3083 play_tree_iter_free(mpctx->playtree_iter);
3084 mpctx->playtree_iter = NULL;
3085 continue; // wait for next command
3087 filename = play_tree_iter_get_file(mpctx->playtree_iter, 1);
3090 //---------------------------------------------------------------------------
3092 if(filename)
3093 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing,
3094 filename_recode(filename));
3096 if (edl_filename) {
3097 if (edl_records) free_edl(edl_records);
3098 next_edl_record = edl_records = edl_parse_file();
3100 if (edl_output_filename) {
3101 if (edl_fd) fclose(edl_fd);
3102 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
3104 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlCantOpenForWrite,
3105 filename_recode(edl_output_filename));
3109 //==================== Open VOB-Sub ============================
3111 current_module="vobsub";
3112 if (vobsub_name){
3113 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
3114 if(vo_vobsub==NULL)
3115 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,
3116 filename_recode(vobsub_name));
3117 } else if (sub_auto && filename){
3118 /* try to autodetect vobsub from movie filename ::atmos */
3119 char *buf = strdup(filename), *psub;
3120 char *pdot = strrchr(buf, '.');
3121 char *pslash = strrchr(buf, '/');
3122 #if defined(__MINGW32__) || defined(__CYGWIN__)
3123 if (!pslash) pslash = strrchr(buf, '\\');
3124 #endif
3125 if (pdot && (!pslash || pdot > pslash))
3126 *pdot = '\0';
3127 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
3128 /* try from ~/.mplayer/sub */
3129 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
3130 char *bname;
3131 int l;
3132 bname = strrchr(buf,'/');
3133 #if defined(__MINGW32__) || defined(__CYGWIN__)
3134 if(!bname) bname = strrchr(buf,'\\');
3135 #endif
3136 if(bname) bname++;
3137 else bname = buf;
3138 l = strlen(psub) + strlen(bname) + 1;
3139 psub = realloc(psub,l);
3140 strcat(psub,bname);
3141 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
3142 free(psub);
3144 free(buf);
3146 if(vo_vobsub){
3147 initialized_flags|=INITIALIZED_VOBSUB;
3148 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
3149 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
3151 // setup global sub numbering
3152 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] = mpctx->global_sub_size; // the global # of the first vobsub.
3153 mpctx->global_sub_size += vobsub_get_indexes_count(vo_vobsub);
3156 //============ Open & Sync STREAM --- fork cache2 ====================
3158 mpctx->stream=NULL;
3159 mpctx->demuxer=NULL;
3160 if (mpctx->d_audio) {
3161 //free_demuxer_stream(mpctx->d_audio);
3162 mpctx->d_audio=NULL;
3164 if (mpctx->d_video) {
3165 //free_demuxer_stream(d_video);
3166 mpctx->d_video=NULL;
3168 mpctx->sh_audio=NULL;
3169 mpctx->sh_video=NULL;
3171 current_module="open_stream";
3172 mpctx->stream=open_stream(filename,0,&mpctx->file_format);
3173 if(!mpctx->stream) { // error...
3174 mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY);
3175 goto goto_next_file;
3177 initialized_flags|=INITIALIZED_STREAM;
3179 #ifdef CONFIG_GUI
3180 if ( use_gui ) guiGetEvent( guiSetStream,(char *)mpctx->stream );
3181 #endif
3183 if(mpctx->file_format == DEMUXER_TYPE_PLAYLIST) {
3184 play_tree_t* entry;
3185 // Handle playlist
3186 current_module="handle_playlist";
3187 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",
3188 filename_recode(filename));
3189 entry = parse_playtree(mpctx->stream,0);
3190 mpctx->eof=playtree_add_playlist(entry);
3191 goto goto_next_file;
3193 mpctx->stream->start_pos+=seek_to_byte;
3195 if(stream_dump_type==5){
3196 unsigned char buf[4096];
3197 int len;
3198 FILE *f;
3199 current_module="dumpstream";
3200 if(mpctx->stream->type==STREAMTYPE_STREAM && mpctx->stream->fd<0){
3201 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpstreamFdUnavailable);
3202 exit_player(EXIT_ERROR);
3204 stream_reset(mpctx->stream);
3205 stream_seek(mpctx->stream,mpctx->stream->start_pos);
3206 f=fopen(stream_dump_name,"wb");
3207 if(!f){
3208 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3209 exit_player(EXIT_ERROR);
3211 if (dvd_chapter > 1) {
3212 int chapter = dvd_chapter - 1;
3213 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter);
3215 while(!mpctx->stream->eof && !async_quit_request){
3216 len=stream_read(mpctx->stream,buf,4096);
3217 if(len>0) {
3218 if(fwrite(buf,len,1,f) != 1) {
3219 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3220 exit_player(EXIT_ERROR);
3223 if(dvd_last_chapter > 0) {
3224 int chapter = -1;
3225 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER,
3226 &chapter) == STREAM_OK && chapter + 1 > dvd_last_chapter)
3227 break;
3230 if(fclose(f)) {
3231 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3232 exit_player(EXIT_ERROR);
3234 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3235 exit_player_with_rc(EXIT_EOF, 0);
3238 #ifdef CONFIG_DVDREAD
3239 if(mpctx->stream->type==STREAMTYPE_DVD){
3240 current_module="dvd lang->id";
3241 if(audio_id==-1) audio_id=dvd_aid_from_lang(mpctx->stream,audio_lang);
3242 if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvd_sid_from_lang(mpctx->stream,dvdsub_lang);
3243 // setup global sub numbering
3244 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3245 mpctx->global_sub_size += dvd_number_of_subs(mpctx->stream);
3246 current_module=NULL;
3248 #endif
3250 #ifdef CONFIG_DVDNAV
3251 if(mpctx->stream->type==STREAMTYPE_DVDNAV){
3252 current_module="dvdnav lang->id";
3253 if(audio_id==-1) audio_id=mp_dvdnav_aid_from_lang(mpctx->stream,audio_lang);
3254 dvdsub_lang_id = -3;
3255 if(dvdsub_lang && dvdsub_id==-1)
3256 dvdsub_lang_id=dvdsub_id=mp_dvdnav_sid_from_lang(mpctx->stream,dvdsub_lang);
3257 // setup global sub numbering
3258 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3259 mpctx->global_sub_size += mp_dvdnav_number_of_subs(mpctx->stream);
3260 current_module=NULL;
3262 #endif
3264 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
3265 goto_enable_cache:
3266 if(stream_cache_size>0){
3267 current_module="enable_cache";
3268 if(!stream_enable_cache(mpctx->stream,stream_cache_size*1024,
3269 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
3270 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0)))
3271 if((mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) goto goto_next_file;
3274 //============ Open DEMUXERS --- DETECT file type =======================
3275 current_module="demux_open";
3277 mpctx->demuxer=demux_open(mpctx->stream,mpctx->file_format,audio_id,video_id,dvdsub_id,filename);
3279 // HACK to get MOV Reference Files working
3281 if (mpctx->demuxer && mpctx->demuxer->type==DEMUXER_TYPE_PLAYLIST)
3283 unsigned char* playlist_entry;
3284 play_tree_t *list = NULL, *entry = NULL;
3286 current_module="handle_demux_playlist";
3287 while (ds_get_packet(mpctx->demuxer->video,&playlist_entry)>0)
3289 char *temp, *bname;
3291 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",
3292 filename_recode(playlist_entry));
3294 bname=mp_basename(playlist_entry);
3295 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
3296 continue;
3298 if (!strcmp(playlist_entry,filename)) // ignoring self-reference
3299 continue;
3301 entry = play_tree_new();
3303 if (filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
3305 temp=malloc((strlen(filename)-strlen(mp_basename(filename))+strlen(playlist_entry)+1));
3306 if (temp)
3308 strncpy(temp, filename, strlen(filename)-strlen(mp_basename(filename)));
3309 temp[strlen(filename)-strlen(mp_basename(filename))]='\0';
3310 strcat(temp, playlist_entry);
3311 if (!strcmp(temp, filename)) {
3312 free(temp);
3313 continue;
3315 play_tree_add_file(entry,temp);
3316 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
3317 free(temp);
3320 else
3321 play_tree_add_file(entry,playlist_entry);
3323 if(!list)
3324 list = entry;
3325 else
3326 play_tree_append_entry(list,entry);
3328 free_demuxer(mpctx->demuxer);
3329 mpctx->demuxer = NULL;
3331 if (list)
3333 entry = play_tree_new();
3334 play_tree_set_child(entry,list);
3335 mpctx->eof=playtree_add_playlist(entry);
3336 goto goto_next_file;
3340 if(!mpctx->demuxer)
3341 goto goto_next_file;
3342 if(dvd_chapter>1) {
3343 float pts;
3344 if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter-1, 1, &pts, NULL, NULL) >= 0 && pts > -1.0)
3345 seek(mpctx, pts, SEEK_ABSOLUTE);
3348 initialized_flags|=INITIALIZED_DEMUXER;
3350 if (mpctx->stream->type != STREAMTYPE_DVD && mpctx->stream->type != STREAMTYPE_DVDNAV) {
3351 int i;
3352 int maxid = -1;
3353 // setup global sub numbering
3354 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3355 for (i = 0; i < MAX_S_STREAMS; i++)
3356 if (mpctx->demuxer->s_streams[i])
3357 maxid = FFMAX(maxid, ((sh_sub_t *)mpctx->demuxer->s_streams[i])->sid);
3358 mpctx->global_sub_size += maxid + 1;
3360 // Make dvdsub_id always selectable if set.
3361 if (mpctx->global_sub_size <= mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id)
3362 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id + 1;
3364 #ifdef CONFIG_ASS
3365 if (ass_enabled && ass_library) {
3366 for (i = 0; i < mpctx->demuxer->num_attachments; ++i) {
3367 demux_attachment_t* att = mpctx->demuxer->attachments + i;
3368 if (extract_embedded_fonts &&
3369 att->name && att->type && att->data && att->data_size &&
3370 (strcmp(att->type, "application/x-truetype-font") == 0 ||
3371 strcmp(att->type, "application/x-font") == 0))
3372 ass_add_font(ass_library, att->name, att->data, att->data_size);
3375 #endif
3377 current_module="demux_open2";
3379 //file_format=demuxer->file_format;
3381 mpctx->d_audio=mpctx->demuxer->audio;
3382 mpctx->d_video=mpctx->demuxer->video;
3383 mpctx->d_sub=mpctx->demuxer->sub;
3385 if (ts_prog) {
3386 int tmp = ts_prog;
3387 mp_property_do("switch_program", M_PROPERTY_SET, &tmp, mpctx);
3389 // select audio stream
3390 select_audio(mpctx->demuxer, audio_id, audio_lang);
3392 // DUMP STREAMS:
3393 if((stream_dump_type)&&(stream_dump_type<4)){
3394 FILE *f;
3395 demux_stream_t *ds=NULL;
3396 current_module="dump";
3397 // select stream to dump
3398 switch(stream_dump_type){
3399 case 1: ds=mpctx->d_audio;break;
3400 case 2: ds=mpctx->d_video;break;
3401 case 3: ds=mpctx->d_sub;break;
3403 if(!ds){
3404 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedStreamMissing);
3405 exit_player(EXIT_ERROR);
3407 // disable other streams:
3408 if(mpctx->d_audio && mpctx->d_audio!=ds) {ds_free_packs(mpctx->d_audio); mpctx->d_audio->id=-2; }
3409 if(mpctx->d_video && mpctx->d_video!=ds) {ds_free_packs(mpctx->d_video); mpctx->d_video->id=-2; }
3410 if(mpctx->d_sub && mpctx->d_sub!=ds) {ds_free_packs(mpctx->d_sub); mpctx->d_sub->id=-2; }
3411 // let's dump it!
3412 f=fopen(stream_dump_name,"wb");
3413 if(!f){
3414 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3415 exit_player(EXIT_ERROR);
3417 while(!ds->eof){
3418 unsigned char* start;
3419 int in_size=ds_get_packet(ds,&start);
3420 if( (mpctx->demuxer->file_format==DEMUXER_TYPE_AVI || mpctx->demuxer->file_format==DEMUXER_TYPE_ASF || mpctx->demuxer->file_format==DEMUXER_TYPE_MOV)
3421 && stream_dump_type==2) fwrite(&in_size,1,4,f);
3422 if(in_size>0) fwrite(start,in_size,1,f);
3423 if(dvd_last_chapter>0) {
3424 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3425 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3426 break;
3429 fclose(f);
3430 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3431 exit_player_with_rc(EXIT_EOF, 0);
3434 mpctx->sh_audio=mpctx->d_audio->sh;
3435 mpctx->sh_video=mpctx->d_video->sh;
3437 if(mpctx->sh_video){
3439 current_module="video_read_properties";
3440 if(!video_read_properties(mpctx->sh_video)) {
3441 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
3442 mpctx->sh_video=mpctx->d_video->sh=NULL;
3443 } else {
3444 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_FilefmtFourccSizeFpsFtime,
3445 mpctx->demuxer->file_format,mpctx->sh_video->format, mpctx->sh_video->disp_w,mpctx->sh_video->disp_h,
3446 mpctx->sh_video->fps,mpctx->sh_video->frametime
3449 /* need to set fps here for output encoders to pick it up in their init */
3450 if(force_fps){
3451 mpctx->sh_video->fps=force_fps;
3452 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3454 vo_fps = mpctx->sh_video->fps;
3456 if(!mpctx->sh_video->fps && !force_fps){
3457 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
3458 mpctx->sh_video=mpctx->d_video->sh=NULL;
3464 if(!mpctx->sh_video && !mpctx->sh_audio){
3465 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NoStreamFound);
3466 #ifdef CONFIG_DVBIN
3467 if(mpctx->stream->type == STREAMTYPE_DVB)
3469 int dir;
3470 int v = mpctx->last_dvb_step;
3471 if(v > 0)
3472 dir = DVB_CHANNEL_HIGHER;
3473 else
3474 dir = DVB_CHANNEL_LOWER;
3476 if(dvb_step_channel(mpctx->stream, dir))
3477 mpctx->eof = mpctx->dvbin_reopen = 1;
3479 #endif
3480 goto goto_next_file; // exit_player(MSGTR_Exit_error);
3483 /* display clip info */
3484 demux_info_print(mpctx->demuxer);
3486 //================== Read SUBTITLES (DVD & TEXT) ==========================
3487 if(vo_spudec==NULL && mpctx->sh_video &&
3488 (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)){
3489 init_vo_spudec();
3492 if(1 || mpctx->sh_video) {
3493 // after reading video params we should load subtitles because
3494 // we know fps so now we can adjust subtitle time to ~6 seconds AST
3495 // check .sub
3496 double fps = mpctx->sh_video ? mpctx->sh_video->fps : 25;
3497 current_module="read_subtitles_file";
3498 if(sub_name){
3499 for (i = 0; sub_name[i] != NULL; ++i)
3500 add_subtitles (sub_name[i], fps, 0);
3502 if(sub_auto) { // auto load sub file ...
3503 char *psub = get_path( "sub/" );
3504 char **tmp = sub_filenames((psub ? psub : ""), filename);
3505 int i = 0;
3506 free(psub); // release the buffer created by get_path() above
3507 while (tmp[i]) {
3508 add_subtitles (tmp[i], fps, 1);
3509 free(tmp[i++]);
3511 free(tmp);
3513 if (mpctx->set_of_sub_size > 0) {
3514 // setup global sub numbering
3515 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = mpctx->global_sub_size; // the global # of the first sub.
3516 mpctx->global_sub_size += mpctx->set_of_sub_size;
3520 if (mpctx->global_sub_size) {
3521 select_subtitle(mpctx);
3522 if(subdata)
3523 switch (stream_dump_type) {
3524 case 3: list_sub_file(subdata); break;
3525 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break;
3526 case 6: dump_srt(subdata, mpctx->sh_video->fps); break;
3527 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break;
3528 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break;
3529 case 9: dump_sami(subdata, mpctx->sh_video->fps); break;
3533 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_FILENAME=%s\n",
3534 filename_recode(filename));
3535 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_DEMUXER=%s\n", mpctx->demuxer->desc->name);
3536 if (mpctx->sh_video) {
3537 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3538 if (mpctx->sh_video->format >= 0x20202020)
3539 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format);
3540 else
3541 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format);
3542 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps*8);
3543 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w);
3544 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h);
3545 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps);
3546 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect);
3548 if (mpctx->sh_audio) {
3549 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3550 if (mpctx->sh_audio->format >= 0x20202020)
3551 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format);
3552 else
3553 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format);
3554 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps*8);
3555 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate);
3556 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels);
3558 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_LENGTH=%.2lf\n", demuxer_get_time_length(mpctx->demuxer));
3559 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_SEEKABLE=%d\n",
3560 mpctx->stream->seek && (!mpctx->demuxer || mpctx->demuxer->seekable));
3561 if (mpctx->demuxer) {
3562 if (mpctx->demuxer->num_chapters == 0)
3563 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
3564 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters);
3567 if(!mpctx->sh_video) goto main; // audio-only
3569 if(!reinit_video_chain()) {
3570 if(!mpctx->sh_video){
3571 if(!mpctx->sh_audio) goto goto_next_file;
3572 goto main; // exit_player(MSGTR_Exit_error);
3576 if(vo_flags & 0x08 && vo_spudec)
3577 spudec_set_hw_spu(vo_spudec,mpctx->video_out);
3579 #ifdef CONFIG_FREETYPE
3580 force_load_font = 1;
3581 #endif
3583 //================== MAIN: ==========================
3584 main:
3585 current_module="main";
3587 if(playing_msg) {
3588 char* msg = property_expand_string(mpctx, playing_msg);
3589 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",msg);
3590 free(msg);
3594 // Disable the term OSD in verbose mode
3595 if(verbose) term_osd = 0;
3598 //int frame_corr_num=0; //
3599 //float v_frame=0; // Video
3600 float time_frame=0; // Timer
3601 //float num_frames=0; // number of frames played
3603 int frame_time_remaining=0; // flag
3604 int blit_frame=0;
3605 mpctx->num_buffered_frames=0;
3607 // Make sure old OSD does not stay around,
3608 // e.g. with -fixed-vo and same-resolution files
3609 clear_osd_msgs();
3610 update_osd_msg();
3612 //================ SETUP AUDIO ==========================
3614 if(mpctx->sh_audio){
3615 reinit_audio_chain();
3616 if (mpctx->sh_audio && mpctx->sh_audio->codec)
3617 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name);
3620 current_module="av_init";
3622 if(mpctx->sh_video){
3623 mpctx->sh_video->timer=0;
3624 if (! ignore_start)
3625 audio_delay += mpctx->sh_video->stream_delay;
3627 if(mpctx->sh_audio){
3628 if (start_volume >= 0)
3629 mixer_setvolume(&mpctx->mixer, start_volume, start_volume);
3630 if (! ignore_start)
3631 audio_delay -= mpctx->sh_audio->stream_delay;
3632 mpctx->delay=-audio_delay;
3635 if(!mpctx->sh_audio){
3636 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
3637 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",mpctx->d_audio->packs);
3638 ds_free_packs(mpctx->d_audio); // free buffered chunks
3639 //mpctx->d_audio->id=-2; // do not read audio chunks
3640 //uninit_player(INITIALIZED_AO); // close device
3642 if(!mpctx->sh_video){
3643 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
3644 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",mpctx->d_video->packs);
3645 ds_free_packs(mpctx->d_video);
3646 mpctx->d_video->id=-2;
3647 //if(!fixed_vo) uninit_player(INITIALIZED_VO);
3650 if (!mpctx->sh_video && !mpctx->sh_audio)
3651 goto goto_next_file;
3653 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
3654 if(force_fps && mpctx->sh_video){
3655 vo_fps = mpctx->sh_video->fps=force_fps;
3656 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3657 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,mpctx->sh_video->fps,mpctx->sh_video->frametime);
3660 #ifdef CONFIG_GUI
3661 if ( use_gui ) {
3662 if ( mpctx->sh_audio ) guiIntfStruct.AudioType=mpctx->sh_audio->channels; else guiIntfStruct.AudioType=0;
3663 if ( !mpctx->sh_video && mpctx->sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
3664 guiGetEvent( guiSetFileFormat,(char *)mpctx->demuxer->file_format );
3665 if ( guiGetEvent( guiSetValues,(char *)mpctx->sh_video ) ) goto goto_next_file;
3666 guiGetEvent( guiSetDemuxer,(char *)mpctx->demuxer );
3668 #endif
3670 mp_input_set_section(NULL);
3671 //TODO: add desired (stream-based) sections here
3672 if (mpctx->stream->type==STREAMTYPE_TV) mp_input_set_section("tv");
3673 if (mpctx->stream->type==STREAMTYPE_DVDNAV) mp_input_set_section("dvdnav");
3675 //==================== START PLAYING =======================
3677 if(mpctx->loop_times>1) mpctx->loop_times--; else
3678 if(mpctx->loop_times==1) mpctx->loop_times = -1;
3680 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);
3682 total_time_usage_start=GetTimer();
3683 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
3684 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
3685 play_n_frames=play_n_frames_mf;
3687 if(play_n_frames==0){
3688 mpctx->eof=PT_NEXT_ENTRY; goto goto_next_file;
3691 if (seek_to_sec) {
3692 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE);
3693 end_at.pos += seek_to_sec;
3696 if (end_at.type == END_AT_SIZE) {
3697 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_MPEndposNoSizeBased);
3698 end_at.type = END_AT_NONE;
3701 #ifdef CONFIG_DVDNAV
3702 mp_dvdnav_context_free(mpctx);
3703 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3704 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
3705 mp_dvdnav_cell_has_changed(mpctx->stream,1);
3707 #endif
3709 while(!mpctx->eof){
3710 float aq_sleep_time=0;
3712 if(dvd_last_chapter>0) {
3713 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3714 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3715 goto goto_next_file;
3718 if(!mpctx->sh_audio && mpctx->d_audio->sh) {
3719 mpctx->sh_audio = mpctx->d_audio->sh;
3720 mpctx->sh_audio->ds = mpctx->d_audio;
3721 reinit_audio_chain();
3724 /*========================== PLAY AUDIO ============================*/
3726 if (mpctx->sh_audio)
3727 if (!fill_audio_out_buffers())
3728 // at eof, all audio at least written to ao
3729 if (!mpctx->sh_video)
3730 mpctx->eof = PT_NEXT_ENTRY;
3733 if(!mpctx->sh_video) {
3734 // handle audio-only case:
3735 double a_pos=0;
3736 // sh_audio can be NULL due to video stream switching
3737 // TODO: handle this better
3738 if((!quiet || end_at.type == END_AT_TIME) && mpctx->sh_audio)
3739 a_pos = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
3741 if(!quiet)
3742 print_status(a_pos, 0, 0);
3744 if(end_at.type == END_AT_TIME && end_at.pos < a_pos)
3745 mpctx->eof = PT_NEXT_ENTRY;
3746 update_subtitles(NULL, a_pos, mpctx->d_sub, 0);
3747 update_osd_msg();
3749 } else {
3751 /*========================== PLAY VIDEO ============================*/
3753 vo_pts=mpctx->sh_video->timer*90000.0;
3754 vo_fps=mpctx->sh_video->fps;
3756 if (!mpctx->num_buffered_frames) {
3757 double frame_time = update_video(&blit_frame);
3758 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
3759 if (mpctx->sh_video->vf_initialized < 0) {
3760 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NotInitializeVOPorVO);
3761 mpctx->eof = 1; goto goto_next_file;
3763 if (frame_time < 0)
3764 mpctx->eof = 1;
3765 else {
3766 // might return with !eof && !blit_frame if !correct_pts
3767 mpctx->num_buffered_frames += blit_frame;
3768 time_frame += frame_time / playback_speed; // for nosound
3772 // ==========================================================================
3774 // current_module="draw_osd";
3775 // if(vo_config_count) mpctx->video_out->draw_osd();
3777 #ifdef CONFIG_GUI
3778 if(use_gui) guiEventHandling();
3779 #endif
3781 current_module="vo_check_events";
3782 if (vo_config_count) mpctx->video_out->check_events();
3784 #ifdef CONFIG_X11
3785 if (stop_xscreensaver) {
3786 current_module = "stop_xscreensaver";
3787 xscreensaver_heartbeat();
3789 #endif
3790 if (heartbeat_cmd) {
3791 static unsigned last_heartbeat;
3792 unsigned now = GetTimerMS();
3793 if (now - last_heartbeat > 30000) {
3794 last_heartbeat = now;
3795 system(heartbeat_cmd);
3799 frame_time_remaining = sleep_until_update(&time_frame, &aq_sleep_time);
3801 //====================== FLIP PAGE (VIDEO BLT): =========================
3803 current_module="flip_page";
3804 if (!frame_time_remaining && blit_frame) {
3805 unsigned int t2=GetTimer();
3807 if(vo_config_count) mpctx->video_out->flip_page();
3808 mpctx->num_buffered_frames--;
3810 vout_time_usage += (GetTimer() - t2) * 0.000001;
3812 //====================== A-V TIMESTAMP CORRECTION: =========================
3814 adjust_sync_and_print_status(frame_time_remaining, time_frame);
3816 //============================ Auto QUALITY ============================
3818 /*Output quality adjustments:*/
3819 if(auto_quality>0){
3820 current_module="autoq";
3821 // float total=0.000001f * (GetTimer()-aq_total_time);
3822 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
3823 if(output_quality<auto_quality && aq_sleep_time>0)
3824 ++output_quality;
3825 else
3826 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
3827 if(output_quality>1 && aq_sleep_time<0)
3828 --output_quality;
3829 else
3830 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
3831 output_quality=0;
3832 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
3833 set_video_quality(mpctx->sh_video,output_quality);
3836 if (play_n_frames >= 0 && !frame_time_remaining && blit_frame) {
3837 --play_n_frames;
3838 if (play_n_frames <= 0) mpctx->eof = PT_NEXT_ENTRY;
3842 // FIXME: add size based support for -endpos
3843 if (end_at.type == END_AT_TIME &&
3844 !frame_time_remaining && end_at.pos <= mpctx->sh_video->pts)
3845 mpctx->eof = PT_NEXT_ENTRY;
3847 } // end if(mpctx->sh_video)
3849 #ifdef CONFIG_DVDNAV
3850 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3851 nav_highlight_t hl;
3852 mp_dvdnav_get_highlight (mpctx->stream, &hl);
3853 osd_set_nav_box (hl.sx, hl.sy, hl.ex, hl.ey);
3854 vo_osd_changed (OSDTYPE_DVDNAV);
3856 if (mp_dvdnav_stream_has_changed(mpctx->stream)) {
3857 double ar = -1.0;
3858 if (stream_control (mpctx->demuxer->stream,
3859 STREAM_CTRL_GET_ASPECT_RATIO, &ar)
3860 != STREAM_UNSUPPORTED)
3861 mpctx->sh_video->stream_aspect = ar;
3864 #endif
3866 //============================ Handle PAUSE ===============================
3868 current_module="pause";
3870 if (mpctx->osd_function == OSD_PAUSE) {
3871 mpctx->was_paused = 1;
3872 pause_loop();
3875 // handle -sstep
3876 if(step_sec>0) {
3877 mpctx->osd_function=OSD_FFW;
3878 rel_seek_secs+=step_sec;
3881 edl_update(mpctx);
3883 //================= Keyboard events, SEEKing ====================
3885 current_module="key_events";
3888 mp_cmd_t* cmd;
3889 int brk_cmd = 0;
3890 while( !brk_cmd && (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3891 brk_cmd = run_command(mpctx, cmd);
3892 mp_cmd_free(cmd);
3893 if (brk_cmd == 2)
3894 goto goto_enable_cache;
3897 mpctx->was_paused = 0;
3899 /* Looping. */
3900 if(mpctx->eof==1 && mpctx->loop_times>=0) {
3901 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d, eof = %d\n", mpctx->loop_times,mpctx->eof);
3903 if(mpctx->loop_times>1) mpctx->loop_times--; else
3904 if(mpctx->loop_times==1) mpctx->loop_times=-1;
3905 play_n_frames=play_n_frames_mf;
3906 mpctx->eof=0;
3907 abs_seek_pos=SEEK_ABSOLUTE; rel_seek_secs=seek_to_sec;
3908 loop_seek = 1;
3911 if(rel_seek_secs || abs_seek_pos){
3912 if (seek(mpctx, rel_seek_secs, abs_seek_pos) >= 0) {
3913 // Set OSD:
3914 if(!loop_seek){
3915 if( !edl_decision )
3916 set_osd_bar(0,"Position",0,100,demuxer_get_percent_pos(mpctx->demuxer));
3920 rel_seek_secs=0;
3921 abs_seek_pos=0;
3922 loop_seek=0;
3923 edl_decision = 0;
3926 #ifdef CONFIG_GUI
3927 if(use_gui){
3928 guiEventHandling();
3929 if(mpctx->demuxer->file_format==DEMUXER_TYPE_AVI && mpctx->sh_video && mpctx->sh_video->video.dwLength>2){
3930 // get pos from frame number / total frames
3931 guiIntfStruct.Position=(float)mpctx->d_video->pack_no*100.0f/mpctx->sh_video->video.dwLength;
3932 } else {
3933 guiIntfStruct.Position=demuxer_get_percent_pos(mpctx->demuxer);
3935 if ( mpctx->sh_video ) guiIntfStruct.TimeSec=mpctx->sh_video->pts;
3936 else if ( mpctx->sh_audio ) guiIntfStruct.TimeSec=playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
3937 guiIntfStruct.LengthInSec=demuxer_get_time_length(mpctx->demuxer);
3938 guiGetEvent( guiReDraw,NULL );
3939 guiGetEvent( guiSetVolume,NULL );
3940 if(guiIntfStruct.Playing==0) break; // STOP
3941 if(guiIntfStruct.Playing==2) mpctx->osd_function=OSD_PAUSE;
3942 if ( guiIntfStruct.DiskChanged || guiIntfStruct.NewPlay ) goto goto_next_file;
3943 #ifdef CONFIG_DVDREAD
3944 if ( mpctx->stream->type == STREAMTYPE_DVD )
3946 dvd_priv_t * dvdp = mpctx->stream->priv;
3947 guiIntfStruct.DVD.current_chapter=dvd_chapter_from_cell(dvdp,guiIntfStruct.DVD.current_title-1, dvdp->cur_cell)+1;
3949 #endif
3951 #endif /* CONFIG_GUI */
3953 } // while(!mpctx->eof)
3955 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",mpctx->eof);
3957 #ifdef CONFIG_DVBIN
3958 if(mpctx->dvbin_reopen)
3960 mpctx->eof = 0;
3961 uninit_player(INITIALIZED_ALL-(INITIALIZED_GUI|INITIALIZED_STREAM|INITIALIZED_INPUT|INITIALIZED_GETCH2|(fixed_vo?INITIALIZED_VO:0)));
3962 cache_uninit(mpctx->stream);
3963 mpctx->dvbin_reopen = 0;
3964 goto goto_enable_cache;
3966 #endif
3969 goto_next_file: // don't jump here after ao/vo/getch initialization!
3971 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
3973 if(benchmark){
3974 double tot=video_time_usage+vout_time_usage+audio_time_usage;
3975 double total_time_usage;
3976 total_time_usage_start=GetTimer()-total_time_usage_start;
3977 total_time_usage = (float)total_time_usage_start*0.000001;
3978 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
3979 video_time_usage,vout_time_usage,audio_time_usage,
3980 total_time_usage-tot,total_time_usage);
3981 if(total_time_usage>0.0)
3982 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
3983 100.0*video_time_usage/total_time_usage,
3984 100.0*vout_time_usage/total_time_usage,
3985 100.0*audio_time_usage/total_time_usage,
3986 100.0*(total_time_usage-tot)/total_time_usage,
3987 100.0);
3988 if(total_frame_cnt && frame_dropping)
3989 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
3990 total_frame_cnt-drop_frame_cnt,
3991 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
3992 drop_frame_cnt,
3993 100*drop_frame_cnt/total_frame_cnt,
3994 total_frame_cnt,
3995 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
3998 // time to uninit all, except global stuff:
3999 uninit_player(INITIALIZED_ALL-(INITIALIZED_GUI+INITIALIZED_INPUT+(fixed_vo?INITIALIZED_VO:0)));
4001 if(mpctx->set_of_sub_size > 0) {
4002 current_module="sub_free";
4003 for(i = 0; i < mpctx->set_of_sub_size; ++i) {
4004 sub_free(mpctx->set_of_subtitles[i]);
4005 #ifdef CONFIG_ASS
4006 if(mpctx->set_of_ass_tracks[i])
4007 ass_free_track( mpctx->set_of_ass_tracks[i] );
4008 #endif
4010 mpctx->set_of_sub_size = 0;
4012 vo_sub_last = vo_sub=NULL;
4013 subdata=NULL;
4014 #ifdef CONFIG_ASS
4015 ass_track = NULL;
4016 if(ass_library)
4017 ass_clear_fonts(ass_library);
4018 #endif
4020 if(mpctx->eof == PT_NEXT_ENTRY || mpctx->eof == PT_PREV_ENTRY) {
4021 mpctx->eof = mpctx->eof == PT_NEXT_ENTRY ? 1 : -1;
4022 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->play_tree_step,0) == PLAY_TREE_ITER_ENTRY) {
4023 mpctx->eof = 1;
4024 } else {
4025 play_tree_iter_free(mpctx->playtree_iter);
4026 mpctx->playtree_iter = NULL;
4028 mpctx->play_tree_step = 1;
4029 } else if(mpctx->eof == PT_UP_NEXT || mpctx->eof == PT_UP_PREV) {
4030 mpctx->eof = mpctx->eof == PT_UP_NEXT ? 1 : -1;
4031 if(mpctx->playtree_iter) {
4032 if(play_tree_iter_up_step(mpctx->playtree_iter,mpctx->eof,0) == PLAY_TREE_ITER_ENTRY) {
4033 mpctx->eof = 1;
4034 } else {
4035 play_tree_iter_free(mpctx->playtree_iter);
4036 mpctx->playtree_iter = NULL;
4039 } else if (mpctx->eof == PT_STOP) {
4040 play_tree_iter_free(mpctx->playtree_iter);
4041 mpctx->playtree_iter = NULL;
4042 } else { // NEXT PREV SRC
4043 mpctx->eof = mpctx->eof == PT_PREV_SRC ? -1 : 1;
4046 if(mpctx->eof == 0) mpctx->eof = 1;
4048 while(mpctx->playtree_iter != NULL) {
4049 filename = play_tree_iter_get_file(mpctx->playtree_iter,mpctx->eof);
4050 if(filename == NULL) {
4051 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->eof,0) != PLAY_TREE_ITER_ENTRY) {
4052 play_tree_iter_free(mpctx->playtree_iter);
4053 mpctx->playtree_iter = NULL;
4055 } else
4056 break;
4059 #ifdef CONFIG_GUI
4060 if(use_gui && !mpctx->playtree_iter) {
4061 #ifdef CONFIG_DVDREAD
4062 if(!guiIntfStruct.DiskChanged)
4063 #endif
4064 mplEnd();
4066 #endif
4068 if(use_gui || mpctx->playtree_iter != NULL || player_idle_mode){
4069 if(!mpctx->playtree_iter) filename = NULL;
4070 mpctx->eof = 0;
4071 goto play_next_file;
4075 exit_player_with_rc(EXIT_EOF, 0);
4077 return 1;
4079 #endif /* DISABLE_MAIN */