Fix fps output with -identify when frame rate extension is used for MPEG-2
[mplayer.git] / mplayer.c
blobca51a1a3c66603b2b1d40f2358f05c3bb9ac1b6d
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 /// \file
20 /// \ingroup Properties Command2Property OSDMsgStack
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include "config.h"
26 #if defined(__MINGW32__) || defined(__CYGWIN__)
27 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/
28 #include <windows.h>
29 #endif
30 #include <string.h>
31 #include <unistd.h>
33 // #include <sys/mman.h>
34 #include <sys/types.h>
35 #ifndef __MINGW32__
36 #include <sys/ioctl.h>
37 #include <sys/wait.h>
38 #else
39 #define SIGHUP 1 /* hangup */
40 #define SIGQUIT 3 /* quit */
41 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
42 #define SIGBUS 10 /* bus error */
43 #define SIGPIPE 13 /* broken pipe */
44 #endif
46 #include <sys/time.h>
47 #include <sys/stat.h>
49 #include <signal.h>
50 #include <time.h>
51 #include <fcntl.h>
52 #include <limits.h>
54 #include <errno.h>
56 #include "mp_msg.h"
58 #define HELP_MP_DEFINE_STATIC
59 #include "help_mp.h"
61 #include "m_option.h"
62 #include "m_config.h"
63 #include "m_property.h"
65 #include "cfg-mplayer-def.h"
67 #include "libavutil/intreadwrite.h"
68 #include "libavutil/avstring.h"
70 #include "subreader.h"
72 #include "libvo/video_out.h"
74 #include "libvo/font_load.h"
75 #include "libvo/sub.h"
77 #ifdef CONFIG_X11
78 #include "libvo/x11_common.h"
79 #endif
81 #include "libao2/audio_out.h"
83 #include "codec-cfg.h"
85 #include "edl.h"
87 #include "spudec.h"
88 #include "vobsub.h"
90 #include "osdep/getch2.h"
91 #include "osdep/timer.h"
93 #include "gui/interface.h"
95 #include "input/input.h"
97 int slave_mode=0;
98 int player_idle_mode=0;
99 int quiet=0;
100 int enable_mouse_movements=0;
101 float start_volume = -1;
103 #include "osdep/priority.h"
105 char *heartbeat_cmd;
107 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
109 #ifdef HAVE_RTC
110 #ifdef __linux__
111 #include <linux/rtc.h>
112 #else
113 #include <rtc.h>
114 #define RTC_IRQP_SET RTCIO_IRQP_SET
115 #define RTC_PIE_ON RTCIO_PIE_ON
116 #endif /* __linux__ */
117 #endif /* HAVE_RTC */
119 #include "stream/tv.h"
120 #include "stream/stream_radio.h"
121 #ifdef CONFIG_DVBIN
122 #include "stream/dvbin.h"
123 #endif
124 #include "stream/cache2.h"
126 //**************************************************************************//
127 // Playtree
128 //**************************************************************************//
129 #include "playtree.h"
130 #include "playtreeparser.h"
132 //**************************************************************************//
133 // Config
134 //**************************************************************************//
135 #include "parser-cfg.h"
136 #include "parser-mpcmd.h"
138 m_config_t* mconfig;
140 //**************************************************************************//
141 // Config file
142 //**************************************************************************//
144 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
146 static int cfg_include(m_option_t *conf, char *filename){
147 return m_config_parse_config_file(mconfig, filename);
150 #include "get_path.h"
152 //**************************************************************************//
153 //**************************************************************************//
154 // Input media streaming & demultiplexer:
155 //**************************************************************************//
157 static int max_framesize=0;
159 #include "stream/stream.h"
160 #include "libmpdemux/demuxer.h"
161 #include "libmpdemux/stheader.h"
163 #ifdef CONFIG_DVDREAD
164 #include "stream/stream_dvd.h"
165 #endif
166 #include "stream/stream_dvdnav.h"
168 #include "libmpcodecs/dec_audio.h"
169 #include "libmpcodecs/dec_video.h"
170 #include "libmpcodecs/mp_image.h"
171 #include "libmpcodecs/vf.h"
172 #include "libmpcodecs/vd.h"
174 #include "mixer.h"
176 #include "mp_core.h"
178 //**************************************************************************//
179 //**************************************************************************//
181 // Common FIFO functions, and keyboard/event FIFO code
182 #include "mp_fifo.h"
183 int noconsolecontrols=0;
184 //**************************************************************************//
186 // Not all functions in mplayer.c take the context as an argument yet
187 static MPContext mpctx_s = {
188 .osd_function = OSD_PLAY,
189 .begin_skip = MP_NOPTS_VALUE,
190 .play_tree_step = 1,
191 .global_sub_pos = -1,
192 .set_of_sub_pos = -1,
193 .file_format = DEMUXER_TYPE_UNKNOWN,
194 .loop_times = -1,
195 #ifdef CONFIG_DVBIN
196 .last_dvb_step = 1,
197 #endif
200 static MPContext *mpctx = &mpctx_s;
202 int fixed_vo=0;
204 // benchmark:
205 double video_time_usage=0;
206 double vout_time_usage=0;
207 static double audio_time_usage=0;
208 static int total_time_usage_start=0;
209 static int total_frame_cnt=0;
210 static int drop_frame_cnt=0; // total number of dropped frames
211 int benchmark=0;
213 // options:
214 #define DEFAULT_STARTUP_DECODE_RETRY 8
215 int auto_quality=0;
216 static int output_quality=0;
218 float playback_speed=1.0;
220 int use_gui=0;
222 #ifdef CONFIG_GUI
223 int enqueue=0;
224 #endif
226 static int list_properties = 0;
228 int osd_level=1;
229 // if nonzero, hide current OSD contents when GetTimerMS() reaches this
230 unsigned int osd_visible;
231 int osd_duration = 1000;
233 int term_osd = 1;
234 static char* term_osd_esc = "\x1b[A\r\x1b[K";
235 static char* playing_msg = NULL;
236 // seek:
237 static double seek_to_sec;
238 static off_t seek_to_byte=0;
239 static off_t step_sec=0;
240 static int loop_seek=0;
242 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 };
244 // A/V sync:
245 int autosync=0; // 30 might be a good default value.
247 // may be changed by GUI: (FIXME!)
248 float rel_seek_secs=0;
249 int abs_seek_pos=0;
251 // codecs:
252 char **audio_codec_list=NULL; // override audio codec
253 char **video_codec_list=NULL; // override video codec
254 char **audio_fm_list=NULL; // override audio codec family
255 char **video_fm_list=NULL; // override video codec family
257 // demuxer:
258 extern char *demuxer_name; // override demuxer
259 extern char *audio_demuxer_name; // override audio demuxer
260 extern char *sub_demuxer_name; // override sub demuxer
262 // streaming:
263 int audio_id=-1;
264 int video_id=-1;
265 int dvdsub_id=-1;
266 // this dvdsub_id was selected via slang
267 // use this to allow dvdnav to follow -slang across stream resets,
268 // in particular the subtitle ID for a language changes
269 int dvdsub_lang_id;
270 int vobsub_id=-1;
271 char* audio_lang=NULL;
272 char* dvdsub_lang=NULL;
273 static char* spudec_ifo=NULL;
274 char* filename=NULL; //"MI2-Trailer.avi";
275 int forced_subs_only=0;
276 int file_filter=1;
278 // cache2:
279 int stream_cache_size=-1;
280 #ifdef CONFIG_STREAM_CACHE
281 extern int cache_fill_status;
283 float stream_cache_min_percent=20.0;
284 float stream_cache_seek_min_percent=50.0;
285 #else
286 #define cache_fill_status 0
287 #endif
289 // dump:
290 static char *stream_dump_name="stream.dump";
291 int stream_dump_type=0;
293 // A-V sync:
294 static float default_max_pts_correction=-1;//0.01f;
295 static float max_pts_correction=0;//default_max_pts_correction;
296 static float c_total=0;
297 float audio_delay=0;
298 static int ignore_start=0;
300 static int softsleep=0;
302 double force_fps=0;
303 static int force_srate=0;
304 static int audio_output_format=-1; // AF_FORMAT_UNKNOWN
305 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
306 static int play_n_frames=-1;
307 static int play_n_frames_mf=-1;
309 // screen info:
310 char** video_driver_list=NULL;
311 char** audio_driver_list=NULL;
313 // sub:
314 char *font_name=NULL;
315 char *sub_font_name=NULL;
316 extern int font_fontconfig;
317 float font_factor=0.75;
318 char **sub_name=NULL;
319 float sub_delay=0;
320 float sub_fps=0;
321 int sub_auto = 1;
322 char *vobsub_name=NULL;
323 /*DSP!!char *dsp=NULL;*/
324 int subcc_enabled=0;
325 int suboverlap_enabled = 1;
327 #include "libass/ass_mp.h"
329 char* current_module=NULL; // for debugging
332 // ---
334 #ifdef CONFIG_MENU
335 #include "m_struct.h"
336 #include "libmenu/menu.h"
337 extern vf_info_t vf_info_menu;
338 static vf_info_t* libmenu_vfs[] = {
339 &vf_info_menu,
340 NULL
342 static vf_instance_t* vf_menu = NULL;
343 int use_menu = 0;
344 static char* menu_cfg = NULL;
345 static char* menu_root = "main";
346 #endif
349 #ifdef HAVE_RTC
350 static int nortc = 1;
351 static char* rtc_device;
352 #endif
354 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
355 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
356 short edl_decision = 0; ///< 1 when an EDL operation has been made.
357 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode.
358 int use_filedir_conf;
359 int use_filename_title;
361 static unsigned int initialized_flags=0;
362 #include "mpcommon.h"
363 #include "command.h"
365 #include "metadata.h"
367 #define mp_basename2(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
369 const void *mpctx_get_video_out(MPContext *mpctx)
371 return mpctx->video_out;
374 const void *mpctx_get_audio_out(MPContext *mpctx)
376 return mpctx->audio_out;
379 void *mpctx_get_demuxer(MPContext *mpctx)
381 return mpctx->demuxer;
384 void *mpctx_get_playtree_iter(MPContext *mpctx)
386 return mpctx->playtree_iter;
389 void *mpctx_get_mixer(MPContext *mpctx)
391 return &mpctx->mixer;
394 int mpctx_get_global_sub_size(MPContext *mpctx)
396 return mpctx->global_sub_size;
399 int mpctx_get_osd_function(MPContext *mpctx)
401 return mpctx->osd_function;
404 static int is_valid_metadata_type (metadata_t type) {
405 switch (type)
407 /* check for valid video stream */
408 case META_VIDEO_CODEC:
409 case META_VIDEO_BITRATE:
410 case META_VIDEO_RESOLUTION:
412 if (!mpctx->sh_video)
413 return 0;
414 break;
417 /* check for valid audio stream */
418 case META_AUDIO_CODEC:
419 case META_AUDIO_BITRATE:
420 case META_AUDIO_SAMPLES:
422 if (!mpctx->sh_audio)
423 return 0;
424 break;
427 /* check for valid demuxer */
428 case META_INFO_TITLE:
429 case META_INFO_ARTIST:
430 case META_INFO_ALBUM:
431 case META_INFO_YEAR:
432 case META_INFO_COMMENT:
433 case META_INFO_TRACK:
434 case META_INFO_GENRE:
436 if (!mpctx->demuxer)
437 return 0;
438 break;
441 default:
442 break;
445 return 1;
448 static char *get_demuxer_info (char *tag) {
449 char **info = mpctx->demuxer->info;
450 int n;
452 if (!info || !tag)
453 return NULL;
455 for (n = 0; info[2*n] != NULL ; n++)
456 if (!strcasecmp (info[2*n], tag))
457 break;
459 return info[2*n+1] ? strdup (info[2*n+1]) : NULL;
462 char *get_metadata (metadata_t type) {
463 char *meta = NULL;
464 sh_audio_t * const sh_audio = mpctx->sh_audio;
465 sh_video_t * const sh_video = mpctx->sh_video;
467 if (!is_valid_metadata_type (type))
468 return NULL;
470 switch (type)
472 case META_NAME:
474 return strdup (mp_basename2 (filename));
477 case META_VIDEO_CODEC:
479 if (sh_video->format == 0x10000001)
480 meta = strdup ("mpeg1");
481 else if (sh_video->format == 0x10000002)
482 meta = strdup ("mpeg2");
483 else if (sh_video->format == 0x10000004)
484 meta = strdup ("mpeg4");
485 else if (sh_video->format == 0x10000005)
486 meta = strdup ("h264");
487 else if (sh_video->format >= 0x20202020)
489 meta = malloc (8);
490 sprintf (meta, "%.4s", (char *) &sh_video->format);
492 else
494 meta = malloc (8);
495 sprintf (meta, "0x%08X", sh_video->format);
497 return meta;
500 case META_VIDEO_BITRATE:
502 meta = malloc (16);
503 sprintf (meta, "%d kbps", (int) (sh_video->i_bps * 8 / 1024));
504 return meta;
507 case META_VIDEO_RESOLUTION:
509 meta = malloc (16);
510 sprintf (meta, "%d x %d", sh_video->disp_w, sh_video->disp_h);
511 return meta;
514 case META_AUDIO_CODEC:
516 if (sh_audio->codec && sh_audio->codec->name)
517 meta = strdup (sh_audio->codec->name);
518 return meta;
521 case META_AUDIO_BITRATE:
523 meta = malloc (16);
524 sprintf (meta, "%d kbps", (int) (sh_audio->i_bps * 8/1000));
525 return meta;
528 case META_AUDIO_SAMPLES:
530 meta = malloc (16);
531 sprintf (meta, "%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels);
532 return meta;
535 /* check for valid demuxer */
536 case META_INFO_TITLE:
537 return get_demuxer_info ("Title");
539 case META_INFO_ARTIST:
540 return get_demuxer_info ("Artist");
542 case META_INFO_ALBUM:
543 return get_demuxer_info ("Album");
545 case META_INFO_YEAR:
546 return get_demuxer_info ("Year");
548 case META_INFO_COMMENT:
549 return get_demuxer_info ("Comment");
551 case META_INFO_TRACK:
552 return get_demuxer_info ("Track");
554 case META_INFO_GENRE:
555 return get_demuxer_info ("Genre");
557 default:
558 break;
561 return meta;
564 /// step size of mixer changes
565 int volstep = 3;
567 #ifdef CONFIG_DVDNAV
568 static void mp_dvdnav_context_free(MPContext *ctx){
569 if (ctx->nav_smpi) free_mp_image(ctx->nav_smpi);
570 ctx->nav_smpi = NULL;
571 if (ctx->nav_buffer) free(ctx->nav_buffer);
572 ctx->nav_buffer = NULL;
573 ctx->nav_start = NULL;
574 ctx->nav_in_size = 0;
576 #endif
578 void uninit_player(unsigned int mask){
579 mask &= initialized_flags;
581 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
583 if(mask&INITIALIZED_ACODEC){
584 initialized_flags&=~INITIALIZED_ACODEC;
585 current_module="uninit_acodec";
586 if(mpctx->sh_audio) uninit_audio(mpctx->sh_audio);
587 #ifdef CONFIG_GUI
588 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
589 #endif
590 mpctx->sh_audio=NULL;
591 mpctx->mixer.afilter = NULL;
594 if(mask&INITIALIZED_VCODEC){
595 initialized_flags&=~INITIALIZED_VCODEC;
596 current_module="uninit_vcodec";
597 if(mpctx->sh_video) uninit_video(mpctx->sh_video);
598 mpctx->sh_video=NULL;
599 #ifdef CONFIG_MENU
600 vf_menu=NULL;
601 #endif
604 if(mask&INITIALIZED_DEMUXER){
605 initialized_flags&=~INITIALIZED_DEMUXER;
606 current_module="free_demuxer";
607 if(mpctx->demuxer){
608 mpctx->stream=mpctx->demuxer->stream;
609 free_demuxer(mpctx->demuxer);
611 mpctx->demuxer=NULL;
614 // kill the cache process:
615 if(mask&INITIALIZED_STREAM){
616 initialized_flags&=~INITIALIZED_STREAM;
617 current_module="uninit_stream";
618 if(mpctx->stream) free_stream(mpctx->stream);
619 mpctx->stream=NULL;
622 if(mask&INITIALIZED_VO){
623 initialized_flags&=~INITIALIZED_VO;
624 current_module="uninit_vo";
625 mpctx->video_out->uninit();
626 mpctx->video_out=NULL;
627 #ifdef CONFIG_DVDNAV
628 mp_dvdnav_context_free(mpctx);
629 #endif
632 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code.
633 if(mask&INITIALIZED_GETCH2){
634 initialized_flags&=~INITIALIZED_GETCH2;
635 current_module="uninit_getch2";
636 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
637 // restore terminal:
638 getch2_disable();
641 if(mask&INITIALIZED_VOBSUB){
642 initialized_flags&=~INITIALIZED_VOBSUB;
643 current_module="uninit_vobsub";
644 if(vo_vobsub) vobsub_close(vo_vobsub);
645 vo_vobsub=NULL;
648 if (mask&INITIALIZED_SPUDEC){
649 initialized_flags&=~INITIALIZED_SPUDEC;
650 current_module="uninit_spudec";
651 spudec_free(vo_spudec);
652 vo_spudec=NULL;
655 if(mask&INITIALIZED_AO){
656 initialized_flags&=~INITIALIZED_AO;
657 current_module="uninit_ao";
658 if (mpctx->edl_muted) mixer_mute(&mpctx->mixer);
659 if (mpctx->audio_out) mpctx->audio_out->uninit(mpctx->eof?0:1);
660 mpctx->audio_out=NULL;
663 #ifdef CONFIG_GUI
664 if(mask&INITIALIZED_GUI){
665 initialized_flags&=~INITIALIZED_GUI;
666 current_module="uninit_gui";
667 guiDone();
669 #endif
671 if(mask&INITIALIZED_INPUT){
672 initialized_flags&=~INITIALIZED_INPUT;
673 current_module="uninit_input";
674 mp_input_uninit();
675 #ifdef CONFIG_MENU
676 if (use_menu)
677 menu_uninit();
678 #endif
681 current_module=NULL;
684 void exit_player_with_rc(enum exit_reason how, int rc)
687 if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
688 uninit_player(INITIALIZED_ALL);
689 #if defined(__MINGW32__) || defined(__CYGWIN__)
690 timeEndPeriod(1);
691 #endif
692 #ifdef CONFIG_X11
693 #ifdef CONFIG_GUI
694 if ( !use_gui )
695 #endif
696 vo_uninit(); // Close the X11 connection (if any is open).
697 #endif
699 #ifdef CONFIG_FREETYPE
700 current_module="uninit_font";
701 if (sub_font && sub_font != vo_font) free_font_desc(sub_font);
702 sub_font = NULL;
703 if (vo_font) free_font_desc(vo_font);
704 vo_font = NULL;
705 done_freetype();
706 #endif
707 free_osd_list();
709 #ifdef CONFIG_ASS
710 ass_library_done(ass_library);
711 ass_library = NULL;
712 #endif
714 current_module="exit_player";
716 // free mplayer config
717 if(mconfig)
718 m_config_free(mconfig);
719 mconfig = NULL;
721 if(mpctx->playtree_iter)
722 play_tree_iter_free(mpctx->playtree_iter);
723 mpctx->playtree_iter = NULL;
724 if(mpctx->playtree)
725 play_tree_free(mpctx->playtree, 1);
726 mpctx->playtree = NULL;
729 if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
730 edl_records = NULL;
731 switch(how) {
732 case EXIT_QUIT:
733 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_quit);
734 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n");
735 break;
736 case EXIT_EOF:
737 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_eof);
738 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n");
739 break;
740 case EXIT_ERROR:
741 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_error);
742 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n");
743 break;
744 default:
745 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n");
747 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
749 exit(rc);
752 void exit_player(enum exit_reason how)
754 exit_player_with_rc(how, 1);
757 #ifndef __MINGW32__
758 static void child_sighandler(int x){
759 pid_t pid;
760 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
762 #endif
764 #ifdef CONFIG_CRASH_DEBUG
765 static char *prog_path;
766 static int crash_debug = 0;
767 #endif
769 static void exit_sighandler(int x){
770 static int sig_count=0;
771 #ifdef CONFIG_CRASH_DEBUG
772 if (!crash_debug || x != SIGTRAP)
773 #endif
774 ++sig_count;
775 if(initialized_flags==0 && sig_count>1) exit(1);
776 if(sig_count==5)
778 /* We're crashing bad and can't uninit cleanly :(
779 * by popular request, we make one last (dirty)
780 * effort to restore the user's
781 * terminal. */
782 getch2_disable();
783 exit(1);
785 if(sig_count==6) exit(1);
786 if(sig_count>6){
787 // can't stop :(
788 #ifndef __MINGW32__
789 kill(getpid(),SIGKILL);
790 #endif
792 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x,
793 current_module?current_module:"unknown"
795 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x);
796 if(sig_count<=1)
797 switch(x){
798 case SIGINT:
799 case SIGQUIT:
800 case SIGTERM:
801 case SIGKILL:
802 async_quit_request = 1;
803 return; // killed from keyboard (^C) or killed [-9]
804 case SIGILL:
805 #if CONFIG_RUNTIME_CPUDETECT
806 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL_RTCpuSel);
807 #else
808 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL);
809 #endif
810 case SIGFPE:
811 case SIGSEGV:
812 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGSEGV_SIGFPE);
813 default:
814 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGCRASH);
815 #ifdef CONFIG_CRASH_DEBUG
816 if (crash_debug) {
817 int gdb_pid;
818 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
819 gdb_pid = fork();
820 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
821 if (gdb_pid == 0) { // We are the child
822 char spid[20];
823 snprintf(spid, sizeof(spid), "%i", getppid());
824 getch2_disable(); // allow terminal to work properly with gdb
825 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1)
826 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
827 } else if (gdb_pid < 0)
828 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
829 else {
830 waitpid(gdb_pid, NULL, 0);
832 if (x == SIGTRAP) return;
834 #endif
836 getch2_disable();
837 exit(1);
840 #include "cfg-mplayer.h"
842 static void parse_cfgfiles( m_config_t* conf )
844 char *conffile;
845 int conffile_fd;
846 if (!disable_system_conf &&
847 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
848 exit_player(EXIT_NONE);
849 if ((conffile = get_path("")) == NULL) {
850 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
851 } else {
852 #ifdef __MINGW32__
853 mkdir(conffile);
854 #else
855 mkdir(conffile, 0777);
856 #endif
857 free(conffile);
858 if ((conffile = get_path("config")) == NULL) {
859 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
860 } else {
861 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
862 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);
863 write(conffile_fd, default_config, strlen(default_config));
864 close(conffile_fd);
866 if (!disable_user_conf &&
867 m_config_parse_config_file(conf, conffile) < 0)
868 exit_player(EXIT_NONE);
869 free(conffile);
874 #define PROFILE_CFG_PROTOCOL "protocol."
876 static void load_per_protocol_config (m_config_t* conf, const char *const file)
878 char *str;
879 char protocol[strlen (PROFILE_CFG_PROTOCOL) + strlen (file) + 1];
880 m_profile_t *p;
882 /* does filename actually uses a protocol ? */
883 str = strstr (file, "://");
884 if (!str)
885 return;
887 sprintf (protocol, "%s%s", PROFILE_CFG_PROTOCOL, file);
888 protocol[strlen (PROFILE_CFG_PROTOCOL)+strlen(file)-strlen(str)] = '\0';
889 p = m_config_get_profile (conf, protocol);
890 if (p)
892 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingProtocolProfile, protocol);
893 m_config_set_profile(conf,p);
897 #define PROFILE_CFG_EXTENSION "extension."
899 static void load_per_extension_config (m_config_t* conf, const char *const file)
901 char *str;
902 char extension[strlen (PROFILE_CFG_EXTENSION) + 8];
903 m_profile_t *p;
905 /* does filename actually have an extension ? */
906 str = strrchr (filename, '.');
907 if (!str)
908 return;
910 sprintf (extension, PROFILE_CFG_EXTENSION);
911 strncat (extension, ++str, 7);
912 p = m_config_get_profile (conf, extension);
913 if (p)
915 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, extension);
916 m_config_set_profile(conf,p);
920 #define PROFILE_CFG_VO "vo."
921 #define PROFILE_CFG_AO "ao."
923 static void load_per_output_config (m_config_t* conf, char *cfg, char *out)
925 char profile[strlen (cfg) + strlen (out) + 1];
926 m_profile_t *p;
928 sprintf (profile, "%s%s", cfg, out);
929 p = m_config_get_profile (conf, profile);
930 if (p)
932 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, profile);
933 m_config_set_profile(conf,p);
938 * Tries to load a config file
939 * @return 0 if file was not found, 1 otherwise
941 static int try_load_config(m_config_t *conf, const char *file)
943 struct stat st;
944 if (stat(file, &st))
945 return 0;
946 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, file);
947 m_config_parse_config_file (conf, file);
948 return 1;
951 static void load_per_file_config (m_config_t* conf, const char *const file)
953 char *confpath;
954 char cfg[PATH_MAX];
955 char *name;
957 if (strlen(file) > PATH_MAX - 14) {
958 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Filename is too long, can not load file or directory specific config files\n");
959 return;
961 sprintf (cfg, "%s.conf", file);
963 name = strrchr(cfg, '/');
964 if (HAVE_DOS_PATHS) {
965 char *tmp = strrchr(cfg, '\\');
966 if (!name || tmp > name)
967 name = tmp;
968 tmp = strrchr(cfg, ':');
969 if (!name || tmp > name)
970 name = tmp;
972 if (!name)
973 name = cfg;
974 else
975 name++;
977 if (use_filedir_conf) {
978 char dircfg[PATH_MAX];
979 strcpy(dircfg, cfg);
980 strcpy(dircfg + (name - cfg), "mplayer.conf");
981 try_load_config(conf, dircfg);
983 if (try_load_config(conf, cfg))
984 return;
987 if ((confpath = get_path (name)) != NULL)
989 try_load_config(conf, confpath);
991 free (confpath);
995 /* When libmpdemux performs a blocking operation (network connection or
996 * cache filling) if the operation fails we use this function to check
997 * if it was interrupted by the user.
998 * The function returns a new value for eof. */
999 static int libmpdemux_was_interrupted(int eof) {
1000 mp_cmd_t* cmd;
1001 if((cmd = mp_input_get_cmd(0,0,0)) != NULL) {
1002 switch(cmd->id) {
1003 case MP_CMD_QUIT:
1004 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
1005 case MP_CMD_PLAY_TREE_STEP: {
1006 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
1007 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i;
1008 } break;
1009 case MP_CMD_PLAY_TREE_UP_STEP: {
1010 eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
1011 } break;
1012 case MP_CMD_PLAY_ALT_SRC_STEP: {
1013 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
1014 } break;
1016 mp_cmd_free(cmd);
1018 return eof;
1021 #define mp_basename(s) (strrchr(s,'\\')==NULL?(mp_basename2(s)):(strrchr(s,'\\')+1))
1023 static int playtree_add_playlist(play_tree_t* entry)
1025 play_tree_add_bpf(entry,filename);
1027 #ifdef CONFIG_GUI
1028 if (use_gui) {
1029 if (entry) {
1030 import_playtree_playlist_into_gui(entry, mconfig);
1031 play_tree_free_list(entry,1);
1033 } else
1034 #endif
1036 if(!entry) {
1037 entry = mpctx->playtree_iter->tree;
1038 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1039 return PT_NEXT_ENTRY;
1041 if(mpctx->playtree_iter->tree == entry ) { // Loop with a single file
1042 if(play_tree_iter_up_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1043 return PT_NEXT_ENTRY;
1046 play_tree_remove(entry,1,1);
1047 return PT_NEXT_SRC;
1049 play_tree_insert_entry(mpctx->playtree_iter->tree,entry);
1050 play_tree_set_params_from(entry,mpctx->playtree_iter->tree);
1051 entry = mpctx->playtree_iter->tree;
1052 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1053 return PT_NEXT_ENTRY;
1055 play_tree_remove(entry,1,1);
1057 return PT_NEXT_SRC;
1060 void add_subtitles(char *filename, float fps, int noerr)
1062 sub_data *subd;
1063 #ifdef CONFIG_ASS
1064 ass_track_t *asst = 0;
1065 #endif
1067 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) {
1068 return;
1071 subd = sub_read_file(filename, fps);
1072 #ifdef CONFIG_ASS
1073 if (ass_enabled)
1074 #ifdef CONFIG_ICONV
1075 asst = ass_read_stream(ass_library, filename, sub_cp);
1076 #else
1077 asst = ass_read_stream(ass_library, filename, 0);
1078 #endif
1079 if (ass_enabled && subd && !asst)
1080 asst = ass_read_subdata(ass_library, subd, fps);
1082 if (!asst && !subd)
1083 #else
1084 if(!subd)
1085 #endif
1086 mp_msg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR, MSGTR_CantLoadSub,
1087 filename_recode(filename));
1089 #ifdef CONFIG_ASS
1090 if (!asst && !subd) return;
1091 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst;
1092 #else
1093 if (!subd) return;
1094 #endif
1095 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd;
1096 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size);
1097 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n",
1098 filename_recode(filename));
1099 ++mpctx->set_of_sub_size;
1100 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AddedSubtitleFile, mpctx->set_of_sub_size,
1101 filename_recode(filename));
1104 // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken.
1105 void update_set_of_subtitles(void)
1106 // subdata was changed, set_of_sub... have to be updated.
1108 sub_data ** const set_of_subtitles = mpctx->set_of_subtitles;
1109 int i;
1110 if (mpctx->set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted
1111 for (i = mpctx->set_of_sub_pos + 1; i < mpctx->set_of_sub_size; ++i)
1112 set_of_subtitles[i-1] = set_of_subtitles[i];
1113 set_of_subtitles[mpctx->set_of_sub_size-1] = NULL;
1114 --mpctx->set_of_sub_size;
1115 if (mpctx->set_of_sub_size > 0) subdata = set_of_subtitles[mpctx->set_of_sub_pos=0];
1117 else if (mpctx->set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed
1118 set_of_subtitles[mpctx->set_of_sub_pos] = subdata;
1120 else if (mpctx->set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added
1121 set_of_subtitles[mpctx->set_of_sub_pos=mpctx->set_of_sub_size] = subdata;
1122 ++mpctx->set_of_sub_size;
1126 void init_vo_spudec(void) {
1127 if (vo_spudec)
1128 spudec_free(vo_spudec);
1129 initialized_flags &= ~INITIALIZED_SPUDEC;
1130 vo_spudec = NULL;
1132 // we currently can't work without video stream
1133 if (!mpctx->sh_video)
1134 return;
1136 if (spudec_ifo) {
1137 unsigned int palette[16], width, height;
1138 current_module="spudec_init_vobsub";
1139 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1140 vo_spudec=spudec_new_scaled(palette, width, height, NULL, 0);
1143 #ifdef CONFIG_DVDREAD
1144 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVD) {
1145 current_module="spudec_init_dvdread";
1146 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(mpctx->stream->priv))->cur_pgc->palette,
1147 mpctx->sh_video->disp_w, mpctx->sh_video->disp_h,
1148 NULL, 0);
1150 #endif
1152 #ifdef CONFIG_DVDNAV
1153 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVDNAV) {
1154 unsigned int *palette = mp_dvdnav_get_spu_clut(mpctx->stream);
1155 current_module="spudec_init_dvdnav";
1156 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1158 #endif
1160 if (vo_spudec==NULL) {
1161 sh_sub_t *sh = (sh_sub_t *)mpctx->d_sub->sh;
1162 current_module="spudec_init_normal";
1163 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1164 spudec_set_font_factor(vo_spudec,font_factor);
1167 if (vo_spudec!=NULL) {
1168 initialized_flags|=INITIALIZED_SPUDEC;
1169 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
1174 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
1175 * make it all work is to use the builtin SDL-bootstrap code, which
1176 * will be done automatically by replacing our main() if we include SDL.h.
1178 #if defined(__APPLE__) && defined(CONFIG_SDL)
1179 #ifdef CONFIG_SDL_SDL_H
1180 #include <SDL/SDL.h>
1181 #else
1182 #include <SDL.h>
1183 #endif
1184 #endif
1187 * \brief append a formatted string
1188 * \param buf buffer to print into
1189 * \param pos position of terminating 0 in buf
1190 * \param len maximum number of characters in buf, not including terminating 0
1191 * \param format printf format string
1193 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
1195 va_list va;
1196 va_start(va, format);
1197 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
1198 va_end(va);
1199 if (*pos >= len ) {
1200 buf[len] = 0;
1201 *pos = len;
1206 * \brief append time in the hh:mm:ss.f format
1207 * \param buf buffer to print into
1208 * \param pos position of terminating 0 in buf
1209 * \param len maximum number of characters in buf, not including terminating 0
1210 * \param time time value to convert/append
1212 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
1213 long tenths = 10 * time;
1214 int f1 = tenths % 10;
1215 int ss = (tenths / 10) % 60;
1216 int mm = (tenths / 600) % 60;
1217 int hh = tenths / 36000;
1218 if (time <= 0) {
1219 saddf(buf, pos, len, "unknown");
1220 return;
1222 if (hh > 0)
1223 saddf(buf, pos, len, "%2d:", hh);
1224 if (hh > 0 || mm > 0)
1225 saddf(buf, pos, len, "%02d:", mm);
1226 saddf(buf, pos, len, "%02d.%1d", ss, f1);
1230 * \brief print the status line
1231 * \param a_pos audio position
1232 * \param a_v A-V desynchronization
1233 * \param corr amount out A-V synchronization
1235 static void print_status(float a_pos, float a_v, float corr)
1237 sh_video_t * const sh_video = mpctx->sh_video;
1238 int width;
1239 char *line;
1240 unsigned pos = 0;
1241 get_screen_size();
1242 if (screen_width > 0)
1243 width = screen_width;
1244 else
1245 width = 80;
1246 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1247 /* Windows command line is broken (MinGW's rxvt works, but we
1248 * should not depend on that). */
1249 width--;
1250 #endif
1251 line = malloc(width + 1); // one additional char for the terminating null
1253 // Audio time
1254 if (mpctx->sh_audio) {
1255 saddf(line, &pos, width, "A:%6.1f ", a_pos);
1256 if (!sh_video) {
1257 float len = demuxer_get_time_length(mpctx->demuxer);
1258 saddf(line, &pos, width, "(");
1259 sadd_hhmmssf(line, &pos, width, a_pos);
1260 saddf(line, &pos, width, ") of %.1f (", len);
1261 sadd_hhmmssf(line, &pos, width, len);
1262 saddf(line, &pos, width, ") ");
1266 // Video time
1267 if (sh_video)
1268 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
1270 // A-V sync
1271 if (mpctx->sh_audio && sh_video)
1272 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ", a_v, corr);
1274 // Video stats
1275 if (sh_video)
1276 saddf(line, &pos, width, "%3d/%3d ",
1277 (int)sh_video->num_frames,
1278 (int)sh_video->num_frames_decoded);
1280 // CPU usage
1281 if (sh_video) {
1282 if (sh_video->timer > 0.5)
1283 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
1284 (int)(100.0*video_time_usage*playback_speed/(double)sh_video->timer),
1285 (int)(100.0*vout_time_usage*playback_speed/(double)sh_video->timer),
1286 (100.0*audio_time_usage*playback_speed/(double)sh_video->timer));
1287 else
1288 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
1289 } else if (mpctx->sh_audio) {
1290 if (mpctx->delay > 0.5)
1291 saddf(line, &pos, width, "%4.1f%% ",
1292 100.0*audio_time_usage/(double)mpctx->delay);
1293 else
1294 saddf(line, &pos, width, "??,?%% ");
1297 // VO stats
1298 if (sh_video)
1299 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
1301 #ifdef CONFIG_STREAM_CACHE
1302 // cache stats
1303 if (stream_cache_size > 0)
1304 saddf(line, &pos, width, "%d%% ", cache_fill_status);
1305 #endif
1307 // other
1308 if (playback_speed != 1)
1309 saddf(line, &pos, width, "%4.2fx ", playback_speed);
1311 // end
1312 if (erase_to_end_of_line) {
1313 line[pos] = 0;
1314 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
1315 } else {
1316 memset(&line[pos], ' ', width - pos);
1317 line[width] = 0;
1318 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
1320 free(line);
1324 * \brief build a chain of audio filters that converts the input format
1325 * to the ao's format, taking into account the current playback_speed.
1326 * \param sh_audio describes the requested input format of the chain.
1327 * \param ao_data describes the requested output format of the chain.
1329 int build_afilter_chain(sh_audio_t *sh_audio, ao_data_t *ao_data)
1331 int new_srate;
1332 int result;
1333 if (!sh_audio)
1335 #ifdef CONFIG_GUI
1336 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
1337 #endif
1338 mpctx->mixer.afilter = NULL;
1339 return 0;
1341 if(af_control_any_rev(sh_audio->afilter,
1342 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET,
1343 &playback_speed)) {
1344 new_srate = sh_audio->samplerate;
1345 } else {
1346 new_srate = sh_audio->samplerate * playback_speed;
1347 if (new_srate != ao_data->samplerate) {
1348 // limits are taken from libaf/af_resample.c
1349 if (new_srate < 8000)
1350 new_srate = 8000;
1351 if (new_srate > 192000)
1352 new_srate = 192000;
1353 playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1356 result = init_audio_filters(sh_audio, new_srate,
1357 &ao_data->samplerate, &ao_data->channels, &ao_data->format);
1358 mpctx->mixer.afilter = sh_audio->afilter;
1359 #ifdef CONFIG_GUI
1360 if (use_gui) guiGetEvent(guiSetAfilter, (char *)sh_audio->afilter);
1361 #endif
1362 return result;
1366 typedef struct mp_osd_msg mp_osd_msg_t;
1367 struct mp_osd_msg {
1368 /// Previous message on the stack.
1369 mp_osd_msg_t* prev;
1370 /// Message text.
1371 char msg[128];
1372 int id,level,started;
1373 /// Display duration in ms.
1374 unsigned time;
1377 /// OSD message stack.
1378 static mp_osd_msg_t* osd_msg_stack = NULL;
1381 * \brief Add a message on the OSD message stack
1383 * If a message with the same id is already present in the stack
1384 * it is pulled on top of the stack, otherwise a new message is created.
1388 void set_osd_msg(int id, int level, int time, const char* fmt, ...) {
1389 mp_osd_msg_t *msg,*last=NULL;
1390 va_list va;
1391 int r;
1393 // look if the id is already in the stack
1394 for(msg = osd_msg_stack ; msg && msg->id != id ;
1395 last = msg, msg = msg->prev);
1396 // not found: alloc it
1397 if(!msg) {
1398 msg = calloc(1,sizeof(mp_osd_msg_t));
1399 msg->prev = osd_msg_stack;
1400 osd_msg_stack = msg;
1401 } else if(last) { // found, but it's not on top of the stack
1402 last->prev = msg->prev;
1403 msg->prev = osd_msg_stack;
1404 osd_msg_stack = msg;
1406 // write the msg
1407 va_start(va,fmt);
1408 r = vsnprintf(msg->msg, 128, fmt, va);
1409 va_end(va);
1410 if(r >= 128) msg->msg[127] = 0;
1411 // set id and time
1412 msg->id = id;
1413 msg->level = level;
1414 msg->time = time;
1419 * \brief Remove a message from the OSD stack
1421 * This function can be used to get rid of a message right away.
1425 void rm_osd_msg(int id) {
1426 mp_osd_msg_t *msg,*last=NULL;
1428 // Search for the msg
1429 for(msg = osd_msg_stack ; msg && msg->id != id ;
1430 last = msg, msg = msg->prev);
1431 if(!msg) return;
1433 // Detach it from the stack and free it
1434 if(last)
1435 last->prev = msg->prev;
1436 else
1437 osd_msg_stack = msg->prev;
1438 free(msg);
1442 * \brief Remove all messages from the OSD stack
1446 static void clear_osd_msgs(void) {
1447 mp_osd_msg_t* msg = osd_msg_stack, *prev = NULL;
1448 while(msg) {
1449 prev = msg->prev;
1450 free(msg);
1451 msg = prev;
1453 osd_msg_stack = NULL;
1457 * \brief Get the current message from the OSD stack.
1459 * This function decrements the message timer and destroys the old ones.
1460 * The message that should be displayed is returned (if any).
1464 static mp_osd_msg_t* get_osd_msg(void) {
1465 mp_osd_msg_t *msg,*prev,*last = NULL;
1466 static unsigned last_update = 0;
1467 unsigned now = GetTimerMS();
1468 unsigned diff;
1469 char hidden_dec_done = 0;
1471 if (osd_visible) {
1472 // 36000000 means max timed visibility is 1 hour into the future, if
1473 // the difference is greater assume it's wrapped around from below 0
1474 if (osd_visible - now > 36000000) {
1475 osd_visible = 0;
1476 vo_osd_progbar_type = -1; // disable
1477 vo_osd_changed(OSDTYPE_PROGBAR);
1478 if (mpctx->osd_function != OSD_PAUSE)
1479 mpctx->osd_function = OSD_PLAY;
1483 if(!last_update) last_update = now;
1484 diff = now >= last_update ? now - last_update : 0;
1486 last_update = now;
1488 // Look for the first message in the stack with high enough level.
1489 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1490 prev = msg->prev;
1491 if(msg->level > osd_level && hidden_dec_done) continue;
1492 // The message has a high enough level or it is the first hidden one
1493 // in both cases we decrement the timer or kill it.
1494 if(!msg->started || msg->time > diff) {
1495 if(msg->started) msg->time -= diff;
1496 else msg->started = 1;
1497 // display it
1498 if(msg->level <= osd_level) return msg;
1499 hidden_dec_done = 1;
1500 continue;
1502 // kill the message
1503 free(msg);
1504 if(last) {
1505 last->prev = prev;
1506 msg = last;
1507 } else {
1508 osd_msg_stack = prev;
1509 msg = NULL;
1512 // Nothing found
1513 return NULL;
1517 * \brief Display the OSD bar.
1519 * Display the OSD bar or fall back on a simple message.
1523 void set_osd_bar(int type,const char* name,double min,double max,double val) {
1525 if(osd_level < 1) return;
1527 if(mpctx->sh_video) {
1528 osd_visible = (GetTimerMS() + 1000) | 1;
1529 vo_osd_progbar_type = type;
1530 vo_osd_progbar_value = 256*(val-min)/(max-min);
1531 vo_osd_changed(OSDTYPE_PROGBAR);
1532 return;
1535 set_osd_msg(OSD_MSG_BAR,1,osd_duration,"%s: %d %%",
1536 name,ROUND(100*(val-min)/(max-min)));
1540 * \brief Display text subtitles on the OSD
1542 void set_osd_subtitle(subtitle *subs) {
1543 int i;
1544 vo_sub = subs;
1545 vo_osd_changed(OSDTYPE_SUBTITLE);
1546 if (!mpctx->sh_video) {
1547 // reverse order, since newest set_osd_msg is displayed first
1548 for (i = SUB_MAX_TEXT - 1; i >= 0; i--) {
1549 if (!subs || i >= subs->lines || !subs->text[i])
1550 rm_osd_msg(OSD_MSG_SUB_BASE + i);
1551 else {
1552 // HACK: currently display time for each sub line except the last is set to 2 seconds.
1553 int display_time = i == subs->lines - 1 ? 180000 : 2000;
1554 set_osd_msg(OSD_MSG_SUB_BASE + i, 1, display_time, "%s", subs->text[i]);
1561 * \brief Update the OSD message line.
1563 * This function displays the current message on the vo OSD or on the term.
1564 * If the stack is empty and the OSD level is high enough the timer
1565 * is displayed (only on the vo OSD).
1569 static void update_osd_msg(void) {
1570 mp_osd_msg_t *msg;
1571 static char osd_text[128] = "";
1572 static char osd_text_timer[128];
1574 // we need some mem for vo_osd_text
1575 vo_osd_text = (unsigned char*)osd_text;
1577 // Look if we have a msg
1578 if((msg = get_osd_msg())) {
1579 if(strcmp(osd_text,msg->msg)) {
1580 strncpy((char*)osd_text, msg->msg, 127);
1581 if(mpctx->sh_video) vo_osd_changed(OSDTYPE_OSD); else
1582 if(term_osd) mp_msg(MSGT_CPLAYER,MSGL_STATUS,"%s%s\n",term_osd_esc,msg->msg);
1584 return;
1587 if(mpctx->sh_video) {
1588 // fallback on the timer
1589 if(osd_level>=2) {
1590 int len = demuxer_get_time_length(mpctx->demuxer);
1591 int percentage = -1;
1592 char percentage_text[10];
1593 int pts = demuxer_get_current_time(mpctx->demuxer);
1595 if (mpctx->osd_show_percentage)
1596 percentage = demuxer_get_percent_pos(mpctx->demuxer);
1598 if (percentage >= 0)
1599 snprintf(percentage_text, 9, " (%d%%)", percentage);
1600 else
1601 percentage_text[0] = 0;
1603 if (osd_level == 3)
1604 snprintf(osd_text_timer, 63,
1605 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1606 mpctx->osd_function,pts/3600,(pts/60)%60,pts%60,
1607 len/3600,(len/60)%60,len%60,percentage_text);
1608 else
1609 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1610 mpctx->osd_function,pts/3600,(pts/60)%60,
1611 pts%60,percentage_text);
1612 } else
1613 osd_text_timer[0]=0;
1615 // always decrement the percentage timer
1616 if(mpctx->osd_show_percentage)
1617 mpctx->osd_show_percentage--;
1619 if(strcmp(osd_text,osd_text_timer)) {
1620 strncpy(osd_text, osd_text_timer, 63);
1621 vo_osd_changed(OSDTYPE_OSD);
1623 return;
1626 // Clear the term osd line
1627 if(term_osd && osd_text[0]) {
1628 osd_text[0] = 0;
1629 printf("%s\n",term_osd_esc);
1633 ///@}
1634 // OSDMsgStack
1637 void reinit_audio_chain(void) {
1638 if (!mpctx->sh_audio)
1639 return;
1640 current_module="init_audio_codec";
1641 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1642 if(!init_best_audio_codec(mpctx->sh_audio,audio_codec_list,audio_fm_list)){
1643 goto init_error;
1645 initialized_flags|=INITIALIZED_ACODEC;
1646 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1649 current_module="af_preinit";
1650 ao_data.samplerate=force_srate;
1651 ao_data.channels=0;
1652 ao_data.format=audio_output_format;
1653 // first init to detect best values
1654 if(!init_audio_filters(mpctx->sh_audio, // preliminary init
1655 // input:
1656 mpctx->sh_audio->samplerate,
1657 // output:
1658 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
1659 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_AudioFilterChainPreinitError);
1660 exit_player(EXIT_ERROR);
1662 current_module="ao2_init";
1663 mpctx->audio_out = init_best_audio_out(audio_driver_list,
1664 0, // plugin flag
1665 ao_data.samplerate,
1666 ao_data.channels,
1667 ao_data.format, 0);
1668 if(!mpctx->audio_out){
1669 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
1670 goto init_error;
1672 initialized_flags|=INITIALIZED_AO;
1673 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bytes per sample)\n",
1674 mpctx->audio_out->info->short_name,
1675 ao_data.samplerate, ao_data.channels,
1676 af_fmt2str_short(ao_data.format),
1677 af_fmt2bits(ao_data.format)/8 );
1678 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n",
1679 mpctx->audio_out->info->name, mpctx->audio_out->info->author);
1680 if(strlen(mpctx->audio_out->info->comment) > 0)
1681 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", mpctx->audio_out->info->comment);
1682 // init audio filters:
1683 current_module="af_init";
1684 if(!build_afilter_chain(mpctx->sh_audio, &ao_data)) {
1685 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_NoMatchingFilter);
1686 goto init_error;
1688 mpctx->mixer.audio_out = mpctx->audio_out;
1689 mpctx->mixer.volstep = volstep;
1690 return;
1692 init_error:
1693 uninit_player(INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO
1694 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1695 mpctx->d_audio->id = -2;
1699 ///@}
1700 // Command2Property
1703 // Return pts value corresponding to the end point of audio written to the
1704 // ao so far.
1705 static double written_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio)
1707 double buffered_output;
1708 // first calculate the end pts of audio that has been output by decoder
1709 double a_pts = sh_audio->pts;
1710 if (a_pts != MP_NOPTS_VALUE)
1711 // Good, decoder supports new way of calculating audio pts.
1712 // sh_audio->pts is the timestamp of the latest input packet with
1713 // known pts that the decoder has decoded. sh_audio->pts_bytes is
1714 // the amount of bytes the decoder has written after that timestamp.
1715 a_pts += sh_audio->pts_bytes / (double) sh_audio->o_bps;
1716 else {
1717 // Decoder doesn't support new way of calculating pts (or we're
1718 // being called before it has decoded anything with known timestamp).
1719 // Use the old method of audio pts calculation: take the timestamp
1720 // of last packet with known pts the decoder has read data from,
1721 // and add amount of bytes read after the beginning of that packet
1722 // divided by input bps. This will be inaccurate if the input/output
1723 // ratio is not constant for every audio packet or if it is constant
1724 // but not accurately known in sh_audio->i_bps.
1726 a_pts = d_audio->pts;
1727 // ds_tell_pts returns bytes read after last timestamp from
1728 // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes
1729 // it has read but not decoded
1730 if (sh_audio->i_bps)
1731 a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) /
1732 (double)sh_audio->i_bps;
1734 // Now a_pts hopefully holds the pts for end of audio from decoder.
1735 // Substract data in buffers between decoder and audio out.
1737 // Decoded but not filtered
1738 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps;
1740 // Data buffered in audio filters, measured in bytes of "missing" output
1741 buffered_output = af_calc_delay(sh_audio->afilter);
1743 // Data that was ready for ao but was buffered because ao didn't fully
1744 // accept everything to internal buffers yet
1745 buffered_output += sh_audio->a_out_buffer_len;
1747 // Filters divide audio length by playback_speed, so multiply by it
1748 // to get the length in original units without speedup or slowdown
1749 a_pts -= buffered_output * playback_speed / ao_data.bps;
1751 return a_pts;
1754 // Return pts value corresponding to currently playing audio.
1755 double playing_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio,
1756 const ao_functions_t *audio_out)
1758 return written_audio_pts(sh_audio, d_audio) - playback_speed *
1759 audio_out->get_delay();
1762 static int check_framedrop(double frame_time) {
1763 // check for frame-drop:
1764 current_module = "check_framedrop";
1765 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
1766 static int dropped_frames;
1767 float delay = playback_speed*mpctx->audio_out->get_delay();
1768 float d = delay-mpctx->delay;
1769 ++total_frame_cnt;
1770 // we should avoid dropping too many frames in sequence unless we
1771 // are too late. and we allow 100ms A-V delay here:
1772 if (d < -dropped_frames*frame_time-0.100 &&
1773 mpctx->osd_function != OSD_PAUSE) {
1774 ++drop_frame_cnt;
1775 ++dropped_frames;
1776 return frame_dropping;
1777 } else
1778 dropped_frames = 0;
1780 return 0;
1783 static int generate_video_frame(sh_video_t *sh_video, demux_stream_t *d_video)
1785 unsigned char *start;
1786 int in_size;
1787 int hit_eof=0;
1788 double pts;
1790 while (1) {
1791 int drop_frame = check_framedrop(sh_video->frametime);
1792 void *decoded_frame;
1793 current_module = "decode video";
1794 // XXX Time used in this call is not counted in any performance
1795 // timer now, OSD is not updated correctly for filter-added frames
1796 if (vf_output_queued_frame(sh_video->vfilter))
1797 break;
1798 current_module = "video_read_frame";
1799 in_size = ds_get_packet_pts(d_video, &start, &pts);
1800 if (in_size < 0) {
1801 // try to extract last frames in case of decoder lag
1802 in_size = 0;
1803 pts = 1e300;
1804 hit_eof = 1;
1806 if (in_size > max_framesize)
1807 max_framesize = in_size;
1808 current_module = "decode video";
1809 decoded_frame = decode_video(sh_video, start, in_size, drop_frame, pts);
1810 if (decoded_frame) {
1811 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0);
1812 update_teletext(sh_video, mpctx->demuxer, 0);
1813 update_osd_msg();
1814 current_module = "filter video";
1815 if (filter_video(sh_video, decoded_frame, sh_video->pts))
1816 break;
1817 } else if (drop_frame)
1818 return -1;
1819 if (hit_eof)
1820 return 0;
1822 return 1;
1825 #ifdef HAVE_RTC
1826 int rtc_fd = -1;
1827 #endif
1829 static float timing_sleep(float time_frame)
1831 #ifdef HAVE_RTC
1832 if (rtc_fd >= 0){
1833 // -------- RTC -----------
1834 current_module="sleep_rtc";
1835 while (time_frame > 0.000) {
1836 unsigned long rtc_ts;
1837 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
1838 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno));
1839 time_frame -= GetRelativeTime();
1841 } else
1842 #endif
1844 // assume kernel HZ=100 for softsleep, works with larger HZ but with
1845 // unnecessarily high CPU usage
1846 float margin = softsleep ? 0.011 : 0;
1847 current_module = "sleep_timer";
1848 while (time_frame > margin) {
1849 usec_sleep(1000000 * (time_frame - margin));
1850 time_frame -= GetRelativeTime();
1852 if (softsleep){
1853 current_module = "sleep_soft";
1854 if (time_frame < 0)
1855 mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow);
1856 while (time_frame > 0)
1857 time_frame-=GetRelativeTime(); // burn the CPU
1860 return time_frame;
1863 static void select_subtitle(MPContext *mpctx) {
1864 // find the best sub to use
1865 int vobsub_index_id = vobsub_get_index_by_id(vo_vobsub, vobsub_id);
1866 mpctx->global_sub_pos = -1; // no subs by default
1867 if (vobsub_index_id >= 0) {
1868 // if user asks for a vobsub id, use that first.
1869 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] + vobsub_index_id;
1870 } else if (dvdsub_id >= 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1871 // if user asks for a dvd sub id, use that next.
1872 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
1873 } else if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] >= 0) {
1874 // if there are text subs to use, use those. (autosubs come last here)
1875 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_SUBS];
1876 } else if (dvdsub_id == -1 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1877 // finally select subs by language and container hints
1878 if (dvdsub_id == -1 && dvdsub_lang)
1879 dvdsub_id = demuxer_sub_track_by_lang(mpctx->demuxer, dvdsub_lang);
1880 if (dvdsub_id == -1)
1881 dvdsub_id = demuxer_default_sub_track(mpctx->demuxer);
1882 if (dvdsub_id >= 0)
1883 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
1885 // rather than duplicate code, use the SUB_SELECT handler to init the right one.
1886 mpctx->global_sub_pos--;
1887 mp_property_do("sub",M_PROPERTY_STEP_UP,NULL, mpctx);
1890 #ifdef CONFIG_DVDNAV
1891 #ifndef FF_B_TYPE
1892 #define FF_B_TYPE 3
1893 #endif
1894 /// store decoded video image
1895 static mp_image_t * mp_dvdnav_copy_mpi(mp_image_t *to_mpi,
1896 mp_image_t *from_mpi) {
1897 mp_image_t *mpi;
1899 /// Do not store B-frames
1900 if (from_mpi->pict_type == FF_B_TYPE)
1901 return to_mpi;
1903 if (to_mpi &&
1904 to_mpi->w == from_mpi->w &&
1905 to_mpi->h == from_mpi->h &&
1906 to_mpi->imgfmt == from_mpi->imgfmt)
1907 mpi = to_mpi;
1908 else {
1909 if (to_mpi)
1910 free_mp_image(to_mpi);
1911 if (from_mpi->w == 0 || from_mpi->h == 0)
1912 return NULL;
1913 mpi = alloc_mpi(from_mpi->w,from_mpi->h,from_mpi->imgfmt);
1916 copy_mpi(mpi,from_mpi);
1917 return mpi;
1920 static void mp_dvdnav_reset_stream (MPContext *ctx) {
1921 if (ctx->sh_video) {
1922 /// clear video pts
1923 ctx->d_video->pts = 0.0f;
1924 ctx->sh_video->pts = 0.0f;
1925 ctx->sh_video->i_pts = 0.0f;
1926 ctx->sh_video->last_pts = 0.0f;
1927 ctx->sh_video->num_buffered_pts = 0;
1928 ctx->sh_video->num_frames = 0;
1929 ctx->sh_video->num_frames_decoded = 0;
1930 ctx->sh_video->timer = 0.0f;
1931 ctx->sh_video->stream_delay = 0.0f;
1932 ctx->sh_video->timer = 0;
1933 ctx->demuxer->stream_pts = MP_NOPTS_VALUE;
1936 if (ctx->sh_audio) {
1937 /// free audio packets and reset
1938 ds_free_packs(ctx->d_audio);
1939 audio_delay -= ctx->sh_audio->stream_delay;
1940 ctx->delay =- audio_delay;
1941 ctx->audio_out->reset();
1942 resync_audio_stream(ctx->sh_audio);
1945 audio_delay = 0.0f;
1946 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + mp_dvdnav_number_of_subs(mpctx->stream);
1947 if (dvdsub_lang && dvdsub_id == dvdsub_lang_id) {
1948 dvdsub_lang_id = mp_dvdnav_sid_from_lang(ctx->stream, dvdsub_lang);
1949 if (dvdsub_lang_id != dvdsub_id) {
1950 dvdsub_id = dvdsub_lang_id;
1951 select_subtitle(ctx);
1955 /// clear all EOF related flags
1956 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0;
1959 /// Restore last decoded DVDNAV (still frame)
1960 static mp_image_t *mp_dvdnav_restore_smpi(int *in_size,
1961 unsigned char **start,
1962 mp_image_t *decoded_frame)
1964 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
1965 return decoded_frame;
1967 /// a change occured in dvdnav stream
1968 if (mp_dvdnav_cell_has_changed(mpctx->stream,0)) {
1969 mp_dvdnav_read_wait(mpctx->stream, 1, 1);
1970 mp_dvdnav_context_free(mpctx);
1971 mp_dvdnav_reset_stream(mpctx);
1972 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
1973 mp_dvdnav_cell_has_changed(mpctx->stream,1);
1976 if (*in_size < 0) {
1977 float len;
1979 /// Display still frame, if any
1980 if (mpctx->nav_smpi && !mpctx->nav_buffer)
1981 decoded_frame = mpctx->nav_smpi;
1983 /// increment video frame : continue playing after still frame
1984 len = demuxer_get_time_length(mpctx->demuxer);
1985 if (mpctx->sh_video->pts >= len &&
1986 mpctx->sh_video->pts > 0.0 && len > 0.0) {
1987 mp_dvdnav_skip_still(mpctx->stream);
1988 mp_dvdnav_skip_wait(mpctx->stream);
1990 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps;
1992 if (mpctx->nav_buffer) {
1993 *start = mpctx->nav_start;
1994 *in_size = mpctx->nav_in_size;
1995 if (mpctx->nav_start)
1996 memcpy(*start,mpctx->nav_buffer,mpctx->nav_in_size);
2000 return decoded_frame;
2003 /// Save last decoded DVDNAV (still frame)
2004 static void mp_dvdnav_save_smpi(int in_size,
2005 unsigned char *start,
2006 mp_image_t *decoded_frame)
2008 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2009 return;
2011 if (mpctx->nav_buffer)
2012 free(mpctx->nav_buffer);
2014 mpctx->nav_buffer = malloc(in_size);
2015 mpctx->nav_start = start;
2016 mpctx->nav_in_size = mpctx->nav_buffer ? in_size : -1;
2017 if (mpctx->nav_buffer)
2018 memcpy(mpctx->nav_buffer,start,in_size);
2020 if (decoded_frame && mpctx->nav_smpi != decoded_frame)
2021 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi,decoded_frame);
2023 #endif /* CONFIG_DVDNAV */
2025 static void adjust_sync_and_print_status(int between_frames, float timing_error)
2027 current_module="av_sync";
2029 if(mpctx->sh_audio){
2030 double a_pts, v_pts;
2032 if (autosync)
2034 * If autosync is enabled, the value for delay must be calculated
2035 * a bit differently. It is set only to the difference between
2036 * the audio and video timers. Any attempt to include the real
2037 * or corrected delay causes the pts_correction code below to
2038 * try to correct for the changes in delay which autosync is
2039 * trying to measure. This keeps the two from competing, but still
2040 * allows the code to correct for PTS drift *only*. (Using a delay
2041 * value here, even a "corrected" one, would be incompatible with
2042 * autosync mode.)
2044 a_pts = written_audio_pts(mpctx->sh_audio, mpctx->d_audio) - mpctx->delay;
2045 else
2046 a_pts = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
2048 v_pts = mpctx->sh_video->pts;
2051 static int drop_message=0;
2052 double AV_delay = a_pts - audio_delay - v_pts;
2053 double x;
2054 if (AV_delay>0.5 && drop_frame_cnt>50 && drop_message==0){
2055 ++drop_message;
2056 mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
2058 if (autosync)
2059 x = AV_delay*0.1f;
2060 else
2061 /* Do not correct target time for the next frame if this frame
2062 * was late not because of wrong target time but because the
2063 * target time could not be met */
2064 x = (AV_delay + timing_error * playback_speed) * 0.1f;
2065 if (x < -max_pts_correction)
2066 x = -max_pts_correction;
2067 else if (x> max_pts_correction)
2068 x = max_pts_correction;
2069 if (default_max_pts_correction >= 0)
2070 max_pts_correction = default_max_pts_correction;
2071 else
2072 max_pts_correction = mpctx->sh_video->frametime*0.10; // +-10% of time
2073 if (!between_frames) {
2074 mpctx->delay+=x;
2075 c_total+=x;
2077 if(!quiet)
2078 print_status(a_pts - audio_delay, AV_delay, c_total);
2081 } else {
2082 // No audio:
2084 if (!quiet)
2085 print_status(0, 0, 0);
2089 static int fill_audio_out_buffers(void)
2091 unsigned int t;
2092 double tt;
2093 int playsize;
2094 int playflags=0;
2095 int audio_eof=0;
2096 int bytes_to_write;
2097 sh_audio_t * const sh_audio = mpctx->sh_audio;
2099 current_module="play_audio";
2101 while (1) {
2102 int sleep_time;
2103 // all the current uses of ao_data.pts seem to be in aos that handle
2104 // sync completely wrong; there should be no need to use ao_data.pts
2105 // in get_space()
2106 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2107 bytes_to_write = mpctx->audio_out->get_space();
2108 if (mpctx->sh_video || bytes_to_write >= ao_data.outburst)
2109 break;
2111 // handle audio-only case:
2112 // this is where mplayer sleeps during audio-only playback
2113 // to avoid 100% CPU use
2114 sleep_time = (ao_data.outburst - bytes_to_write) * 1000 / ao_data.bps;
2115 if (sleep_time < 10) sleep_time = 10; // limit to 100 wakeups per second
2116 usec_sleep(sleep_time * 1000);
2119 while (bytes_to_write) {
2120 playsize = bytes_to_write;
2121 if (playsize > MAX_OUTBURST)
2122 playsize = MAX_OUTBURST;
2123 bytes_to_write -= playsize;
2125 // Fill buffer if needed:
2126 current_module="decode_audio";
2127 t = GetTimer();
2128 if (decode_audio(sh_audio, playsize) < 0) // EOF or error
2129 if (mpctx->d_audio->eof) {
2130 audio_eof = 1;
2131 if (sh_audio->a_out_buffer_len == 0)
2132 return 0;
2134 t = GetTimer() - t;
2135 tt = t*0.000001f; audio_time_usage+=tt;
2136 if (playsize > sh_audio->a_out_buffer_len) {
2137 playsize = sh_audio->a_out_buffer_len;
2138 if (audio_eof)
2139 playflags |= AOPLAY_FINAL_CHUNK;
2141 if (!playsize)
2142 break;
2144 // play audio:
2145 current_module="play_audio";
2147 // Is this pts value actually useful for the aos that access it?
2148 // They're obviously badly broken in the way they handle av sync;
2149 // would not having access to this make them more broken?
2150 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2151 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags);
2153 if (playsize > 0) {
2154 sh_audio->a_out_buffer_len -= playsize;
2155 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize],
2156 sh_audio->a_out_buffer_len);
2157 mpctx->delay += playback_speed*playsize/(double)ao_data.bps;
2159 else if (audio_eof && mpctx->audio_out->get_delay() < .04) {
2160 // Sanity check to avoid hanging in case current ao doesn't output
2161 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK
2162 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n");
2163 sh_audio->a_out_buffer_len = 0;
2166 return 1;
2169 static int sleep_until_update(float *time_frame, float *aq_sleep_time)
2171 int frame_time_remaining = 0;
2172 current_module="calc_sleep_time";
2174 *time_frame -= GetRelativeTime(); // reset timer
2176 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
2177 float delay = mpctx->audio_out->get_delay();
2178 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay);
2180 if (autosync) {
2182 * Adjust this raw delay value by calculating the expected
2183 * delay for this frame and generating a new value which is
2184 * weighted between the two. The higher autosync is, the
2185 * closer to the delay value gets to that which "-nosound"
2186 * would have used, and the longer it will take for A/V
2187 * sync to settle at the right value (but it eventually will.)
2188 * This settling time is very short for values below 100.
2190 float predicted = mpctx->delay / playback_speed + *time_frame;
2191 float difference = delay - predicted;
2192 delay = predicted + difference / (float)autosync;
2195 *time_frame = delay - mpctx->delay / playback_speed;
2197 // delay = amount of audio buffered in soundcard/driver
2198 if (delay > 0.25) delay=0.25; else
2199 if (delay < 0.10) delay=0.10;
2200 if (*time_frame > delay*0.6) {
2201 // sleep time too big - may cause audio drops (buffer underrun)
2202 frame_time_remaining = 1;
2203 *time_frame = delay*0.5;
2205 } else {
2206 // If we're lagging more than 200 ms behind the right playback rate,
2207 // don't try to "catch up".
2208 // If benchmark is set always output frames as fast as possible
2209 // without sleeping.
2210 if (*time_frame < -0.2 || benchmark)
2211 *time_frame = 0;
2214 *aq_sleep_time += *time_frame;
2217 //============================== SLEEP: ===================================
2219 // flag 256 means: libvo driver does its timing (dvb card)
2220 if (*time_frame > 0.001 && !(vo_flags&256))
2221 *time_frame = timing_sleep(*time_frame);
2222 return frame_time_remaining;
2225 int reinit_video_chain(void) {
2226 sh_video_t * const sh_video = mpctx->sh_video;
2227 double ar=-1.0;
2228 //================== Init VIDEO (codec & libvo) ==========================
2229 if(!fixed_vo || !(initialized_flags&INITIALIZED_VO)){
2230 current_module="preinit_libvo";
2232 //shouldn't we set dvideo->id=-2 when we fail?
2233 vo_config_count=0;
2234 //if((mpctx->video_out->preinit(vo_subdevice))!=0){
2235 if(!(mpctx->video_out=init_best_video_out(video_driver_list))){
2236 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorInitializingVODevice);
2237 goto err_out;
2239 initialized_flags|=INITIALIZED_VO;
2242 if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
2243 mpctx->sh_video->stream_aspect = ar;
2244 current_module="init_video_filters";
2246 char* vf_arg[] = { "_oldargs_", (char*)mpctx->video_out , NULL };
2247 sh_video->vfilter=(void*)vf_open_filter(NULL,"vo",vf_arg);
2249 #ifdef CONFIG_MENU
2250 if(use_menu) {
2251 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2252 vf_menu = vf_open_plugin(libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2253 if(!vf_menu) {
2254 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantOpenLibmenuFilterWithThisRootMenu,menu_root);
2255 use_menu = 0;
2258 if(vf_menu)
2259 sh_video->vfilter=(void*)vf_menu;
2260 #endif
2262 #ifdef CONFIG_ASS
2263 if(ass_enabled) {
2264 int i;
2265 int insert = 1;
2266 if (vf_settings)
2267 for (i = 0; vf_settings[i].name; ++i)
2268 if (strcmp(vf_settings[i].name, "ass") == 0) {
2269 insert = 0;
2270 break;
2272 if (insert) {
2273 extern vf_info_t vf_info_ass;
2274 const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
2275 char* vf_arg[] = {"auto", "1", NULL};
2276 vf_instance_t* vf_ass = vf_open_plugin(libass_vfs,sh_video->vfilter,"ass",vf_arg);
2277 if (vf_ass)
2278 sh_video->vfilter=(void*)vf_ass;
2279 else
2280 mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
2283 #endif
2285 sh_video->vfilter=(void*)append_filters(sh_video->vfilter);
2287 #ifdef CONFIG_ASS
2288 if (ass_enabled)
2289 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter, VFCTRL_INIT_EOSD, ass_library);
2290 #endif
2292 current_module="init_video_codec";
2294 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2295 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2296 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2298 if(!sh_video->initialized){
2299 if(!fixed_vo) uninit_player(INITIALIZED_VO);
2300 goto err_out;
2303 initialized_flags|=INITIALIZED_VCODEC;
2305 if (sh_video->codec)
2306 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2308 sh_video->last_pts = MP_NOPTS_VALUE;
2309 sh_video->num_buffered_pts = 0;
2310 sh_video->next_frame_time = 0;
2312 if(auto_quality>0){
2313 // Auto quality option enabled
2314 output_quality=get_video_quality_max(sh_video);
2315 if(auto_quality>output_quality) auto_quality=output_quality;
2316 else output_quality=auto_quality;
2317 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2318 set_video_quality(sh_video,output_quality);
2321 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2323 current_module="init_vo";
2325 return 1;
2327 err_out:
2328 mpctx->sh_video = mpctx->d_video->sh = NULL;
2329 return 0;
2332 static double update_video(int *blit_frame)
2334 sh_video_t * const sh_video = mpctx->sh_video;
2335 //-------------------- Decode a frame: -----------------------
2336 double frame_time;
2337 *blit_frame = 0; // Don't blit if we hit EOF
2338 if (!correct_pts) {
2339 unsigned char* start=NULL;
2340 void *decoded_frame = NULL;
2341 int drop_frame=0;
2342 int in_size;
2344 current_module = "video_read_frame";
2345 frame_time = sh_video->next_frame_time;
2346 in_size = video_read_frame(sh_video, &sh_video->next_frame_time,
2347 &start, force_fps);
2348 #ifdef CONFIG_DVDNAV
2349 /// wait, still frame or EOF
2350 if (mpctx->stream->type == STREAMTYPE_DVDNAV && in_size < 0) {
2351 if (mp_dvdnav_is_eof(mpctx->stream)) return -1;
2352 if (mpctx->d_video) mpctx->d_video->eof = 0;
2353 if (mpctx->d_audio) mpctx->d_audio->eof = 0;
2354 mpctx->stream->eof = 0;
2355 } else
2356 #endif
2357 if (in_size < 0)
2358 return -1;
2359 if (in_size > max_framesize)
2360 max_framesize = in_size; // stats
2361 sh_video->timer += frame_time;
2362 if (mpctx->sh_audio)
2363 mpctx->delay -= frame_time;
2364 // video_read_frame can change fps (e.g. for ASF video)
2365 vo_fps = sh_video->fps;
2366 drop_frame = check_framedrop(frame_time);
2367 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0);
2368 update_teletext(sh_video, mpctx->demuxer, 0);
2369 update_osd_msg();
2370 current_module = "decode_video";
2371 #ifdef CONFIG_DVDNAV
2372 decoded_frame = mp_dvdnav_restore_smpi(&in_size,&start,decoded_frame);
2373 /// still frame has been reached, no need to decode
2374 if (in_size > 0 && !decoded_frame)
2375 #endif
2376 decoded_frame = decode_video(sh_video, start, in_size, drop_frame,
2377 sh_video->pts);
2378 #ifdef CONFIG_DVDNAV
2379 /// save back last still frame for future display
2380 mp_dvdnav_save_smpi(in_size,start,decoded_frame);
2381 #endif
2382 current_module = "filter_video";
2383 *blit_frame = (decoded_frame && filter_video(sh_video, decoded_frame,
2384 sh_video->pts));
2386 else {
2387 int res = generate_video_frame(sh_video, mpctx->d_video);
2388 if (!res)
2389 return -1;
2390 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter,
2391 VFCTRL_GET_PTS, &sh_video->pts);
2392 if (sh_video->pts == MP_NOPTS_VALUE) {
2393 mp_msg(MSGT_CPLAYER, MSGL_ERR, "pts after filters MISSING\n");
2394 sh_video->pts = sh_video->last_pts;
2396 if (sh_video->last_pts == MP_NOPTS_VALUE)
2397 sh_video->last_pts= sh_video->pts;
2398 else if (sh_video->last_pts > sh_video->pts) {
2399 sh_video->last_pts = sh_video->pts;
2400 mp_msg(MSGT_CPLAYER, MSGL_INFO, "pts value < previous\n");
2402 frame_time = sh_video->pts - sh_video->last_pts;
2403 sh_video->last_pts = sh_video->pts;
2404 sh_video->timer += frame_time;
2405 if(mpctx->sh_audio)
2406 mpctx->delay -= frame_time;
2407 *blit_frame = res > 0;
2409 return frame_time;
2412 static void pause_loop(void)
2414 mp_cmd_t* cmd;
2415 if (!quiet) {
2416 // Small hack to display the pause message on the OSD line.
2417 // The pause string is: "\n == PAUSE == \r" so we need to
2418 // take the first and the last char out
2419 if (term_osd && !mpctx->sh_video) {
2420 char msg[128] = MSGTR_Paused;
2421 int mlen = strlen(msg);
2422 msg[mlen-1] = '\0';
2423 set_osd_msg(OSD_MSG_PAUSE, 1, 0, "%s", msg+1);
2424 update_osd_msg();
2425 } else
2426 mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
2427 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n");
2429 #ifdef CONFIG_GUI
2430 if (use_gui)
2431 guiGetEvent(guiCEvent, (char *)guiSetPause);
2432 #endif
2433 if (mpctx->video_out && mpctx->sh_video && vo_config_count)
2434 mpctx->video_out->control(VOCTRL_PAUSE, NULL);
2436 if (mpctx->audio_out && mpctx->sh_audio)
2437 mpctx->audio_out->pause(); // pause audio, keep data if possible
2439 while ( (cmd = mp_input_get_cmd(20, 1, 1)) == NULL || cmd->pausing == 4) {
2440 if (cmd) {
2441 cmd = mp_input_get_cmd(0,1,0);
2442 run_command(mpctx, cmd);
2443 mp_cmd_free(cmd);
2444 continue;
2446 if (mpctx->sh_video && mpctx->video_out && vo_config_count)
2447 mpctx->video_out->check_events();
2448 #ifdef CONFIG_GUI
2449 if (use_gui) {
2450 guiEventHandling();
2451 guiGetEvent(guiReDraw, NULL);
2452 if (guiIntfStruct.Playing!=2 || (rel_seek_secs || abs_seek_pos))
2453 break;
2455 #endif
2456 #ifdef CONFIG_MENU
2457 if (vf_menu)
2458 vf_menu_pause_update(vf_menu);
2459 #endif
2460 usec_sleep(20000);
2462 if (cmd && cmd->id == MP_CMD_PAUSE) {
2463 cmd = mp_input_get_cmd(0,1,0);
2464 mp_cmd_free(cmd);
2466 mpctx->osd_function=OSD_PLAY;
2467 if (mpctx->audio_out && mpctx->sh_audio) {
2468 if (mpctx->eof) // do not play remaining audio if we e.g. switch to the next file
2469 mpctx->audio_out->reset();
2470 else
2471 mpctx->audio_out->resume(); // resume audio
2473 if (mpctx->video_out && mpctx->sh_video && vo_config_count)
2474 mpctx->video_out->control(VOCTRL_RESUME, NULL); // resume video
2475 (void)GetRelativeTime(); // ignore time that passed during pause
2476 #ifdef CONFIG_GUI
2477 if (use_gui) {
2478 if (guiIntfStruct.Playing == guiSetStop)
2479 mpctx->eof = 1;
2480 else
2481 guiGetEvent(guiCEvent, (char *)guiSetPlay);
2483 #endif
2487 // Find the right mute status and record position for new file position
2488 static void edl_seek_reset(MPContext *mpctx)
2490 mpctx->edl_muted = 0;
2491 next_edl_record = edl_records;
2493 while (next_edl_record) {
2494 if (next_edl_record->start_sec >= mpctx->sh_video->pts)
2495 break;
2497 if (next_edl_record->action == EDL_MUTE)
2498 mpctx->edl_muted = !mpctx->edl_muted;
2499 next_edl_record = next_edl_record->next;
2501 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2502 mixer_mute(&mpctx->mixer);
2506 // Execute EDL command for the current position if one exists
2507 static void edl_update(MPContext *mpctx)
2509 if (!next_edl_record)
2510 return;
2512 if (!mpctx->sh_video) {
2513 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlNOsh_video);
2514 free_edl(edl_records);
2515 next_edl_record = NULL;
2516 edl_records = NULL;
2517 return;
2520 if (mpctx->sh_video->pts >= next_edl_record->start_sec) {
2521 if (next_edl_record->action == EDL_SKIP) {
2522 mpctx->osd_function = OSD_FFW;
2523 abs_seek_pos = 0;
2524 rel_seek_secs = next_edl_record->length_sec;
2525 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop "
2526 "[%f], length [%f]\n", next_edl_record->start_sec,
2527 next_edl_record->stop_sec, next_edl_record->length_sec);
2528 edl_decision = 1;
2530 else if (next_edl_record->action == EDL_MUTE) {
2531 mpctx->edl_muted = !mpctx->edl_muted;
2532 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2533 mixer_mute(&mpctx->mixer);
2534 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n",
2535 next_edl_record->start_sec );
2537 next_edl_record = next_edl_record->next;
2542 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute
2543 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length
2544 // return -1 if seek failed (non-seekable stream?), 0 otherwise
2545 static int seek(MPContext *mpctx, double amount, int style)
2547 current_module = "seek";
2548 if (demux_seek(mpctx->demuxer, amount, audio_delay, style) == 0)
2549 return -1;
2551 mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY;
2552 if (mpctx->sh_video) {
2553 current_module = "seek_video_reset";
2554 if (vo_config_count)
2555 mpctx->video_out->control(VOCTRL_RESET, NULL);
2556 mpctx->num_buffered_frames = 0;
2557 mpctx->delay = 0;
2558 mpctx->time_frame = 0;
2559 // Not all demuxers set d_video->pts during seek, so this value
2560 // (which is used by at least vobsub and edl code below) may
2561 // be completely wrong (probably 0).
2562 mpctx->sh_video->pts = mpctx->d_video->pts;
2563 update_subtitles(mpctx->sh_video, mpctx->sh_video->pts, mpctx->d_sub, 1);
2564 update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
2567 if (mpctx->sh_audio) {
2568 current_module = "seek_audio_reset";
2569 mpctx->audio_out->reset(); // stop audio, throwing away buffered data
2570 if (!mpctx->sh_video)
2571 update_subtitles(NULL, mpctx->sh_audio->pts, mpctx->d_sub, 1);
2574 if (vo_vobsub && mpctx->sh_video) {
2575 current_module = "seek_vobsub_reset";
2576 vobsub_seek(vo_vobsub, mpctx->sh_video->pts);
2579 edl_seek_reset(mpctx);
2581 c_total = 0;
2582 max_pts_correction = 0.1;
2583 audio_time_usage = 0; video_time_usage = 0; vout_time_usage = 0;
2584 drop_frame_cnt = 0;
2586 current_module = NULL;
2587 return 0;
2590 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object
2591 * file for some tools to link against. */
2592 #ifndef DISABLE_MAIN
2593 int main(int argc,char* argv[]){
2596 char * mem_ptr;
2598 // movie info:
2600 /* Flag indicating whether MPlayer should exit without playing anything. */
2601 int opt_exit = 0;
2603 //float a_frame=0; // Audio
2605 int i;
2607 int gui_no_filename=0;
2609 InitTimer();
2610 srand(GetTimerMS());
2612 mp_msg_init();
2614 // Create the config context and register the options
2615 mconfig = m_config_new();
2616 m_config_register_options(mconfig,mplayer_opts);
2617 mp_input_register_options(mconfig);
2619 // Preparse the command line
2620 m_config_preparse_command_line(mconfig,argc,argv);
2622 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
2623 set_path_env();
2624 #endif
2626 #ifdef CONFIG_TV
2627 stream_tv_defaults.immediate = 1;
2628 #endif
2630 if (argc > 1 && argv[1] &&
2631 (!strcmp(argv[1], "-gui") || !strcmp(argv[1], "-nogui"))) {
2632 use_gui = !strcmp(argv[1], "-gui");
2633 } else
2634 if ( argv[0] )
2636 char *base = strrchr(argv[0], '/');
2637 if (!base)
2638 base = strrchr(argv[0], '\\');
2639 if (!base)
2640 base = argv[0];
2641 if(strstr(base, "gmplayer"))
2642 use_gui=1;
2645 parse_cfgfiles(mconfig);
2647 #ifdef CONFIG_GUI
2648 if ( use_gui ) cfg_read();
2649 #endif
2651 mpctx->playtree = m_config_parse_mp_command_line(mconfig, argc, argv);
2652 if(mpctx->playtree == NULL)
2653 opt_exit = 1;
2654 else {
2655 mpctx->playtree = play_tree_cleanup(mpctx->playtree);
2656 if(mpctx->playtree) {
2657 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mconfig);
2658 if(mpctx->playtree_iter) {
2659 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
2660 play_tree_iter_free(mpctx->playtree_iter);
2661 mpctx->playtree_iter = NULL;
2663 filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
2668 print_version("MPlayer");
2670 #if defined(__MINGW32__) || defined(__CYGWIN__)
2671 #ifdef CONFIG_GUI
2672 void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows");
2673 if(runningmplayer && filename && use_gui){
2674 COPYDATASTRUCT csData;
2675 char file[MAX_PATH];
2676 char *filepart = filename;
2677 if(GetFullPathName(filename, MAX_PATH, file, &filepart)){
2678 csData.dwData = 0;
2679 csData.cbData = strlen(file)*2;
2680 csData.lpData = file;
2681 SendMessage(runningmplayer, WM_COPYDATA, (WPARAM)runningmplayer, (LPARAM)&csData);
2684 #endif
2687 HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
2688 BOOL WINAPI (*setDEP)(DWORD) = NULL;
2689 if (kernel32)
2690 setDEP = GetProcAddress(kernel32, "SetProcessDEPPolicy");
2691 if (setDEP) setDEP(3);
2693 // stop Windows from showing all kinds of annoying error dialogs
2694 SetErrorMode(0x8003);
2695 // request 1ms timer resolution
2696 timeBeginPeriod(1);
2697 #endif
2699 #ifdef CONFIG_PRIORITY
2700 set_priority();
2701 #endif
2703 #ifndef CONFIG_GUI
2704 if(use_gui){
2705 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui);
2706 use_gui=0;
2708 #else
2709 #if !defined(__MINGW32__) && !defined(__CYGWIN__)
2710 if(use_gui && !vo_init()){
2711 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX);
2712 use_gui=0;
2714 #endif
2715 if (use_gui && mpctx->playtree_iter){
2716 char cwd[PATH_MAX+2];
2717 // Free Playtree and Playtree-Iter as it's not used by the GUI.
2718 play_tree_iter_free(mpctx->playtree_iter);
2719 mpctx->playtree_iter=NULL;
2721 if (getcwd(cwd, PATH_MAX) != (char *)NULL)
2723 strcat(cwd, "/");
2724 // Prefix relative paths with current working directory
2725 play_tree_add_bpf(mpctx->playtree, cwd);
2727 // Import initital playtree into GUI.
2728 import_initial_playtree_into_gui(mpctx->playtree, mconfig, enqueue);
2730 #endif /* CONFIG_GUI */
2732 if(video_driver_list && strcmp(video_driver_list[0],"help")==0){
2733 list_video_out();
2734 opt_exit = 1;
2737 if(audio_driver_list && strcmp(audio_driver_list[0],"help")==0){
2738 list_audio_out();
2739 opt_exit = 1;
2742 /* Check codecs.conf. */
2743 if(!codecs_file || !parse_codec_cfg(codecs_file)){
2744 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
2745 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
2746 if(!parse_codec_cfg(NULL)){
2747 exit_player_with_rc(EXIT_NONE, 0);
2749 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_BuiltinCodecsConf);
2752 free( mem_ptr ); // release the buffer created by get_path()
2755 #if 0
2756 if(video_codec_list){
2757 int i;
2758 video_codec=video_codec_list[0];
2759 for(i=0;video_codec_list[i];i++)
2760 mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]);
2762 #endif
2763 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
2764 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs);
2765 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n");
2766 list_codecs(1);
2767 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2768 opt_exit = 1;
2770 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
2771 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs);
2772 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n");
2773 list_codecs(0);
2774 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2775 opt_exit = 1;
2777 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
2778 vfm_help();
2779 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2780 opt_exit = 1;
2782 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
2783 afm_help();
2784 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2785 opt_exit = 1;
2787 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
2788 af_help();
2789 printf("\n");
2790 opt_exit = 1;
2792 #ifdef CONFIG_X11
2793 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
2794 fstype_help();
2795 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2796 opt_exit = 1;
2798 #endif
2799 if((demuxer_name && strcmp(demuxer_name,"help")==0) ||
2800 (audio_demuxer_name && strcmp(audio_demuxer_name,"help")==0) ||
2801 (sub_demuxer_name && strcmp(sub_demuxer_name,"help")==0)){
2802 demuxer_help();
2803 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2804 opt_exit = 1;
2806 if(list_properties) {
2807 property_print_help();
2808 opt_exit = 1;
2811 if(opt_exit)
2812 exit_player(EXIT_NONE);
2814 if (player_idle_mode && use_gui) {
2815 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NoIdleAndGui);
2816 exit_player_with_rc(EXIT_NONE, 1);
2819 if(!filename && !player_idle_mode){
2820 if(!use_gui){
2821 // no file/vcd/dvd -> show HELP:
2822 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text);
2823 exit_player_with_rc(EXIT_NONE, 0);
2824 } else gui_no_filename=1;
2827 /* Display what configure line was used */
2828 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
2830 // Many users forget to include command line in bugreports...
2831 if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
2832 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
2833 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
2834 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2837 //------ load global data first ------
2839 // check font
2840 #ifdef CONFIG_FREETYPE
2841 init_freetype();
2842 #endif
2843 #ifdef CONFIG_FONTCONFIG
2844 if(font_fontconfig <= 0)
2846 #endif
2847 #ifdef CONFIG_BITMAP_FONT
2848 if(font_name){
2849 vo_font=read_font_desc(font_name,font_factor,verbose>1);
2850 if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,
2851 filename_recode(font_name));
2852 } else {
2853 // try default:
2854 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
2855 free(mem_ptr); // release the buffer created by get_path()
2856 if(!vo_font)
2857 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
2859 if (sub_font_name)
2860 sub_font = read_font_desc(sub_font_name, font_factor, verbose>1);
2861 else
2862 sub_font = vo_font;
2863 #endif
2864 #ifdef CONFIG_FONTCONFIG
2866 #endif
2868 vo_init_osd();
2870 #ifdef CONFIG_ASS
2871 ass_library = ass_init();
2872 #endif
2874 #ifdef HAVE_RTC
2875 if(!nortc)
2877 // seteuid(0); /* Can't hurt to try to get root here */
2878 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
2879 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_RTCDeviceNotOpenable,
2880 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
2881 else {
2882 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
2884 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
2885 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno));
2886 mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp);
2887 close (rtc_fd);
2888 rtc_fd = -1;
2889 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
2890 /* variable only by the root */
2891 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno));
2892 close (rtc_fd);
2893 rtc_fd = -1;
2894 } else
2895 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_UsingRTCTiming, irqp);
2898 #ifdef CONFIG_GUI
2899 // breaks DGA and SVGAlib and VESA drivers: --A'rpi
2900 // and now ? -- Pontscho
2901 if(use_gui) setuid( getuid() ); // strongly test, please check this.
2902 #endif
2903 if(rtc_fd<0)
2904 #endif /* HAVE_RTC */
2905 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
2906 softsleep?"software":timer_name);
2908 #ifdef HAVE_TERMCAP
2909 if ( !use_gui ) load_termcap(NULL); // load key-codes
2910 #endif
2912 // ========== Init keyboard FIFO (connection to libvo) ============
2914 // Init input system
2915 current_module = "init_input";
2916 mp_input_init(use_gui);
2917 mp_input_add_key_fd(-1,0,mplayer_get_key,NULL);
2918 if(slave_mode)
2919 mp_input_add_cmd_fd(0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);
2920 else if(!noconsolecontrols)
2921 mp_input_add_event_fd(0, getch2);
2922 // Set the libstream interrupt callback
2923 stream_set_interrupt_callback(mp_input_check_interrupt);
2925 #ifdef CONFIG_MENU
2926 if(use_menu) {
2927 if(menu_cfg && menu_init(mpctx, menu_cfg))
2928 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
2929 else {
2930 menu_cfg = get_path("menu.conf");
2931 if(menu_init(mpctx, menu_cfg))
2932 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
2933 else {
2934 if(menu_init(mpctx, MPLAYER_CONFDIR "/menu.conf"))
2935 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
2936 else {
2937 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_MenuInitFailed);
2938 use_menu = 0;
2943 #endif
2945 initialized_flags|=INITIALIZED_INPUT;
2946 current_module = NULL;
2948 /// Catch signals
2949 #ifndef __MINGW32__
2950 signal(SIGCHLD,child_sighandler);
2951 #endif
2953 #ifdef CONFIG_CRASH_DEBUG
2954 prog_path = argv[0];
2955 #endif
2956 //========= Catch terminate signals: ================
2957 // terminate requests:
2958 signal(SIGTERM,exit_sighandler); // kill
2959 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
2961 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
2963 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
2964 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
2965 #ifdef CONFIG_SIGHANDLER
2966 // fatal errors:
2967 signal(SIGBUS,exit_sighandler); // bus error
2968 signal(SIGSEGV,exit_sighandler); // segfault
2969 signal(SIGILL,exit_sighandler); // illegal instruction
2970 signal(SIGFPE,exit_sighandler); // floating point exc.
2971 signal(SIGABRT,exit_sighandler); // abort()
2972 #ifdef CONFIG_CRASH_DEBUG
2973 if (crash_debug)
2974 signal(SIGTRAP,exit_sighandler);
2975 #endif
2976 #endif
2978 #ifdef CONFIG_GUI
2979 if(use_gui){
2980 guiInit();
2981 guiGetEvent(guiSetContext, mpctx);
2982 initialized_flags|=INITIALIZED_GUI;
2983 guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) );
2985 #endif
2987 // ******************* Now, let's see the per-file stuff ********************
2989 play_next_file:
2991 // init global sub numbers
2992 mpctx->global_sub_size = 0;
2993 { int i; for (i = 0; i < SUB_SOURCES; i++) mpctx->global_sub_indices[i] = -1; }
2995 if (filename) {
2996 load_per_protocol_config (mconfig, filename);
2997 load_per_extension_config (mconfig, filename);
2998 load_per_file_config (mconfig, filename);
3001 if (video_driver_list)
3002 load_per_output_config (mconfig, PROFILE_CFG_VO, video_driver_list[0]);
3003 if (audio_driver_list)
3004 load_per_output_config (mconfig, PROFILE_CFG_AO, audio_driver_list[0]);
3006 // We must enable getch2 here to be able to interrupt network connection
3007 // or cache filling
3008 if(!noconsolecontrols && !slave_mode){
3009 if(initialized_flags&INITIALIZED_GETCH2)
3010 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_Getch2InitializedTwice);
3011 else
3012 getch2_enable(); // prepare stdin for hotkeys...
3013 initialized_flags|=INITIALIZED_GETCH2;
3014 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
3017 // =================== GUI idle loop (STOP state) ===========================
3018 #ifdef CONFIG_GUI
3019 if ( use_gui ) {
3020 mpctx->file_format=DEMUXER_TYPE_UNKNOWN;
3021 guiGetEvent( guiSetDefaults,0 );
3022 while ( guiIntfStruct.Playing != 1 )
3024 mp_cmd_t* cmd;
3025 usec_sleep(20000);
3026 guiEventHandling();
3027 guiGetEvent( guiReDraw,NULL );
3028 if ( (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3029 guiGetEvent(guiIEvent, (char *)cmd->id);
3030 mp_cmd_free(cmd);
3033 guiGetEvent( guiSetParameters,NULL );
3034 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM )
3036 play_tree_t * entry = play_tree_new();
3037 play_tree_add_file( entry,guiIntfStruct.Filename );
3038 if ( mpctx->playtree ) play_tree_free_list( mpctx->playtree->child,1 );
3039 else mpctx->playtree=play_tree_new();
3040 play_tree_set_child( mpctx->playtree,entry );
3041 if(mpctx->playtree)
3043 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mconfig);
3044 if(mpctx->playtree_iter)
3046 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY)
3048 play_tree_iter_free(mpctx->playtree_iter);
3049 mpctx->playtree_iter = NULL;
3051 filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
3056 #endif /* CONFIG_GUI */
3058 while (player_idle_mode && !filename) {
3059 play_tree_t * entry = NULL;
3060 mp_cmd_t * cmd;
3061 if (mpctx->video_out && vo_config_count)
3062 mpctx->video_out->control(VOCTRL_PAUSE, NULL);
3063 while (!(cmd = mp_input_get_cmd(0,1,0))) { // wait for command
3064 if (mpctx->video_out && vo_config_count) mpctx->video_out->check_events();
3065 usec_sleep(20000);
3067 switch (cmd->id) {
3068 case MP_CMD_LOADFILE:
3069 // prepare a tree entry with the new filename
3070 entry = play_tree_new();
3071 play_tree_add_file(entry, cmd->args[0].v.s);
3072 // The entry is added to the main playtree after the switch().
3073 break;
3074 case MP_CMD_LOADLIST:
3075 entry = parse_playlist_file(cmd->args[0].v.s);
3076 break;
3077 case MP_CMD_QUIT:
3078 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3079 break;
3080 case MP_CMD_GET_PROPERTY:
3081 case MP_CMD_SET_PROPERTY:
3082 case MP_CMD_STEP_PROPERTY:
3083 run_command(mpctx, cmd);
3084 break;
3087 mp_cmd_free(cmd);
3089 if (entry) { // user entered a command that gave a valid entry
3090 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it
3091 play_tree_free_list(mpctx->playtree->child, 1);
3092 else mpctx->playtree=play_tree_new(); // .. or make a brand new playtree
3094 if (!mpctx->playtree) continue; // couldn't make playtree! wait for next command
3096 play_tree_set_child(mpctx->playtree, entry);
3098 /* Make iterator start at the top the of tree. */
3099 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mconfig);
3100 if (!mpctx->playtree_iter) continue;
3102 // find the first real item in the tree
3103 if (play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3104 // no items!
3105 play_tree_iter_free(mpctx->playtree_iter);
3106 mpctx->playtree_iter = NULL;
3107 continue; // wait for next command
3109 filename = play_tree_iter_get_file(mpctx->playtree_iter, 1);
3112 //---------------------------------------------------------------------------
3114 if (mpctx->video_out && vo_config_count)
3115 mpctx->video_out->control(VOCTRL_RESUME, NULL);
3117 if(filename) {
3118 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing,
3119 filename_recode(filename));
3120 if(use_filename_title && vo_wintitle == NULL)
3121 vo_wintitle = strdup ( mp_basename2 (filename));
3124 if (edl_filename) {
3125 if (edl_records) free_edl(edl_records);
3126 next_edl_record = edl_records = edl_parse_file();
3128 if (edl_output_filename) {
3129 if (edl_fd) fclose(edl_fd);
3130 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
3132 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlCantOpenForWrite,
3133 filename_recode(edl_output_filename));
3137 //==================== Open VOB-Sub ============================
3139 current_module="vobsub";
3140 if (vobsub_name){
3141 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
3142 if(vo_vobsub==NULL)
3143 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,
3144 filename_recode(vobsub_name));
3145 } else if (sub_auto && filename){
3146 /* try to autodetect vobsub from movie filename ::atmos */
3147 char *buf = strdup(filename), *psub;
3148 char *pdot = strrchr(buf, '.');
3149 char *pslash = strrchr(buf, '/');
3150 #if defined(__MINGW32__) || defined(__CYGWIN__)
3151 if (!pslash) pslash = strrchr(buf, '\\');
3152 #endif
3153 if (pdot && (!pslash || pdot > pslash))
3154 *pdot = '\0';
3155 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
3156 /* try from ~/.mplayer/sub */
3157 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
3158 char *bname;
3159 int l;
3160 bname = strrchr(buf,'/');
3161 #if defined(__MINGW32__) || defined(__CYGWIN__)
3162 if(!bname) bname = strrchr(buf,'\\');
3163 #endif
3164 if(bname) bname++;
3165 else bname = buf;
3166 l = strlen(psub) + strlen(bname) + 1;
3167 psub = realloc(psub,l);
3168 strcat(psub,bname);
3169 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
3170 free(psub);
3172 free(buf);
3174 if(vo_vobsub){
3175 initialized_flags|=INITIALIZED_VOBSUB;
3176 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
3177 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
3179 // setup global sub numbering
3180 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] = mpctx->global_sub_size; // the global # of the first vobsub.
3181 mpctx->global_sub_size += vobsub_get_indexes_count(vo_vobsub);
3184 //============ Open & Sync STREAM --- fork cache2 ====================
3186 mpctx->stream=NULL;
3187 mpctx->demuxer=NULL;
3188 if (mpctx->d_audio) {
3189 //free_demuxer_stream(mpctx->d_audio);
3190 mpctx->d_audio=NULL;
3192 if (mpctx->d_video) {
3193 //free_demuxer_stream(d_video);
3194 mpctx->d_video=NULL;
3196 mpctx->sh_audio=NULL;
3197 mpctx->sh_video=NULL;
3199 current_module="open_stream";
3200 mpctx->stream=open_stream(filename,0,&mpctx->file_format);
3201 if(!mpctx->stream) { // error...
3202 mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY);
3203 goto goto_next_file;
3205 initialized_flags|=INITIALIZED_STREAM;
3207 #ifdef CONFIG_GUI
3208 if ( use_gui ) guiGetEvent( guiSetStream,(char *)mpctx->stream );
3209 #endif
3211 if(mpctx->file_format == DEMUXER_TYPE_PLAYLIST) {
3212 play_tree_t* entry;
3213 // Handle playlist
3214 current_module="handle_playlist";
3215 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",
3216 filename_recode(filename));
3217 entry = parse_playtree(mpctx->stream,0);
3218 mpctx->eof=playtree_add_playlist(entry);
3219 goto goto_next_file;
3221 mpctx->stream->start_pos+=seek_to_byte;
3223 if(stream_dump_type==5){
3224 unsigned char buf[4096];
3225 int len;
3226 FILE *f;
3227 current_module="dumpstream";
3228 stream_reset(mpctx->stream);
3229 stream_seek(mpctx->stream,mpctx->stream->start_pos);
3230 f=fopen(stream_dump_name,"wb");
3231 if(!f){
3232 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3233 exit_player(EXIT_ERROR);
3235 if (dvd_chapter > 1) {
3236 int chapter = dvd_chapter - 1;
3237 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter);
3239 while(!mpctx->stream->eof && !async_quit_request){
3240 len=stream_read(mpctx->stream,buf,4096);
3241 if(len>0) {
3242 if(fwrite(buf,len,1,f) != 1) {
3243 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3244 exit_player(EXIT_ERROR);
3247 if(dvd_last_chapter > 0) {
3248 int chapter = -1;
3249 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER,
3250 &chapter) == STREAM_OK && chapter + 1 > dvd_last_chapter)
3251 break;
3254 if(fclose(f)) {
3255 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3256 exit_player(EXIT_ERROR);
3258 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3259 exit_player_with_rc(EXIT_EOF, 0);
3262 #ifdef CONFIG_DVDREAD
3263 if(mpctx->stream->type==STREAMTYPE_DVD){
3264 current_module="dvd lang->id";
3265 if(audio_id==-1) audio_id=dvd_aid_from_lang(mpctx->stream,audio_lang);
3266 if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvd_sid_from_lang(mpctx->stream,dvdsub_lang);
3267 // setup global sub numbering
3268 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3269 mpctx->global_sub_size += dvd_number_of_subs(mpctx->stream);
3270 current_module=NULL;
3272 #endif
3274 #ifdef CONFIG_DVDNAV
3275 if(mpctx->stream->type==STREAMTYPE_DVDNAV){
3276 current_module="dvdnav lang->id";
3277 if(audio_id==-1) audio_id=mp_dvdnav_aid_from_lang(mpctx->stream,audio_lang);
3278 dvdsub_lang_id = -3;
3279 if(dvdsub_lang && dvdsub_id==-1)
3280 dvdsub_lang_id=dvdsub_id=mp_dvdnav_sid_from_lang(mpctx->stream,dvdsub_lang);
3281 // setup global sub numbering
3282 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3283 mpctx->global_sub_size += mp_dvdnav_number_of_subs(mpctx->stream);
3284 current_module=NULL;
3286 #endif
3288 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
3289 goto_enable_cache:
3290 if(stream_cache_size>0){
3291 int res;
3292 current_module="enable_cache";
3293 res = stream_enable_cache(mpctx->stream,stream_cache_size*1024,
3294 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
3295 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0));
3296 if(res == 0)
3297 if((mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) goto goto_next_file;
3300 //============ Open DEMUXERS --- DETECT file type =======================
3301 current_module="demux_open";
3303 mpctx->demuxer=demux_open(mpctx->stream,mpctx->file_format,audio_id,video_id,dvdsub_id,filename);
3305 // HACK to get MOV Reference Files working
3307 if (mpctx->demuxer && mpctx->demuxer->type==DEMUXER_TYPE_PLAYLIST)
3309 unsigned char* playlist_entry;
3310 play_tree_t *list = NULL, *entry = NULL;
3312 current_module="handle_demux_playlist";
3313 while (ds_get_packet(mpctx->demuxer->video,&playlist_entry)>0)
3315 char *temp, *bname;
3317 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",
3318 filename_recode(playlist_entry));
3320 bname=mp_basename(playlist_entry);
3321 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
3322 continue;
3324 if (!strcmp(playlist_entry,filename)) // ignoring self-reference
3325 continue;
3327 entry = play_tree_new();
3329 if (filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
3331 temp=malloc((strlen(filename)-strlen(mp_basename(filename))+strlen(playlist_entry)+1));
3332 if (temp)
3334 strncpy(temp, filename, strlen(filename)-strlen(mp_basename(filename)));
3335 temp[strlen(filename)-strlen(mp_basename(filename))]='\0';
3336 strcat(temp, playlist_entry);
3337 if (!strcmp(temp, filename)) {
3338 free(temp);
3339 continue;
3341 play_tree_add_file(entry,temp);
3342 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
3343 free(temp);
3346 else
3347 play_tree_add_file(entry,playlist_entry);
3349 if(!list)
3350 list = entry;
3351 else
3352 play_tree_append_entry(list,entry);
3354 free_demuxer(mpctx->demuxer);
3355 mpctx->demuxer = NULL;
3357 if (list)
3359 entry = play_tree_new();
3360 play_tree_set_child(entry,list);
3361 mpctx->eof=playtree_add_playlist(entry);
3362 goto goto_next_file;
3366 if(!mpctx->demuxer)
3367 goto goto_next_file;
3368 if(dvd_chapter>1) {
3369 float pts;
3370 if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter-1, 1, &pts, NULL, NULL) >= 0 && pts > -1.0)
3371 seek(mpctx, pts, SEEK_ABSOLUTE);
3374 initialized_flags|=INITIALIZED_DEMUXER;
3376 if (mpctx->stream->type != STREAMTYPE_DVD && mpctx->stream->type != STREAMTYPE_DVDNAV) {
3377 int i;
3378 int maxid = -1;
3379 // setup global sub numbering
3380 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3381 for (i = 0; i < MAX_S_STREAMS; i++)
3382 if (mpctx->demuxer->s_streams[i])
3383 maxid = FFMAX(maxid, ((sh_sub_t *)mpctx->demuxer->s_streams[i])->sid);
3384 mpctx->global_sub_size += maxid + 1;
3386 // Make dvdsub_id always selectable if set.
3387 if (mpctx->global_sub_size <= mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id)
3388 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id + 1;
3390 #ifdef CONFIG_ASS
3391 if (ass_enabled && ass_library) {
3392 for (i = 0; i < mpctx->demuxer->num_attachments; ++i) {
3393 demux_attachment_t* att = mpctx->demuxer->attachments + i;
3394 if (extract_embedded_fonts &&
3395 att->name && att->type && att->data && att->data_size &&
3396 (strcmp(att->type, "application/x-truetype-font") == 0 ||
3397 strcmp(att->type, "application/x-font") == 0))
3398 ass_add_font(ass_library, att->name, att->data, att->data_size);
3401 #endif
3403 current_module="demux_open2";
3405 //file_format=demuxer->file_format;
3407 mpctx->d_audio=mpctx->demuxer->audio;
3408 mpctx->d_video=mpctx->demuxer->video;
3409 mpctx->d_sub=mpctx->demuxer->sub;
3411 if (ts_prog) {
3412 int tmp = ts_prog;
3413 mp_property_do("switch_program", M_PROPERTY_SET, &tmp, mpctx);
3415 // select audio stream
3416 select_audio(mpctx->demuxer, audio_id, audio_lang);
3418 // DUMP STREAMS:
3419 if((stream_dump_type)&&(stream_dump_type<4)){
3420 FILE *f;
3421 demux_stream_t *ds=NULL;
3422 current_module="dump";
3423 // select stream to dump
3424 switch(stream_dump_type){
3425 case 1: ds=mpctx->d_audio;break;
3426 case 2: ds=mpctx->d_video;break;
3427 case 3: ds=mpctx->d_sub;break;
3429 if(!ds){
3430 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedStreamMissing);
3431 exit_player(EXIT_ERROR);
3433 // disable other streams:
3434 if(mpctx->d_audio && mpctx->d_audio!=ds) {ds_free_packs(mpctx->d_audio); mpctx->d_audio->id=-2; }
3435 if(mpctx->d_video && mpctx->d_video!=ds) {ds_free_packs(mpctx->d_video); mpctx->d_video->id=-2; }
3436 if(mpctx->d_sub && mpctx->d_sub!=ds) {ds_free_packs(mpctx->d_sub); mpctx->d_sub->id=-2; }
3437 // let's dump it!
3438 f=fopen(stream_dump_name,"wb");
3439 if(!f){
3440 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3441 exit_player(EXIT_ERROR);
3443 while(!ds->eof){
3444 unsigned char* start;
3445 int in_size=ds_get_packet(ds,&start);
3446 if( (mpctx->demuxer->file_format==DEMUXER_TYPE_AVI || mpctx->demuxer->file_format==DEMUXER_TYPE_ASF || mpctx->demuxer->file_format==DEMUXER_TYPE_MOV)
3447 && stream_dump_type==2) fwrite(&in_size,1,4,f);
3448 if(in_size>0) fwrite(start,in_size,1,f);
3449 if(dvd_last_chapter>0) {
3450 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3451 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3452 break;
3455 fclose(f);
3456 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3457 exit_player_with_rc(EXIT_EOF, 0);
3460 mpctx->sh_audio=mpctx->d_audio->sh;
3461 mpctx->sh_video=mpctx->d_video->sh;
3463 if(mpctx->sh_video){
3465 current_module="video_read_properties";
3466 if(!video_read_properties(mpctx->sh_video)) {
3467 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
3468 mpctx->sh_video=mpctx->d_video->sh=NULL;
3469 } else {
3470 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_FilefmtFourccSizeFpsFtime,
3471 mpctx->demuxer->file_format,mpctx->sh_video->format, mpctx->sh_video->disp_w,mpctx->sh_video->disp_h,
3472 mpctx->sh_video->fps,mpctx->sh_video->frametime
3475 /* need to set fps here for output encoders to pick it up in their init */
3476 if(force_fps){
3477 mpctx->sh_video->fps=force_fps;
3478 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3480 vo_fps = mpctx->sh_video->fps;
3482 if(!mpctx->sh_video->fps && !force_fps){
3483 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
3484 mpctx->sh_video=mpctx->d_video->sh=NULL;
3490 if(!mpctx->sh_video && !mpctx->sh_audio){
3491 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NoStreamFound);
3492 #ifdef CONFIG_DVBIN
3493 if(mpctx->stream->type == STREAMTYPE_DVB)
3495 int dir;
3496 int v = mpctx->last_dvb_step;
3497 if(v > 0)
3498 dir = DVB_CHANNEL_HIGHER;
3499 else
3500 dir = DVB_CHANNEL_LOWER;
3502 if(dvb_step_channel(mpctx->stream, dir))
3503 mpctx->eof = mpctx->dvbin_reopen = 1;
3505 #endif
3506 goto goto_next_file; // exit_player(MSGTR_Exit_error);
3509 /* display clip info */
3510 demux_info_print(mpctx->demuxer);
3512 //================== Read SUBTITLES (DVD & TEXT) ==========================
3513 if(vo_spudec==NULL &&
3514 (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)){
3515 init_vo_spudec();
3518 if(1 || mpctx->sh_video) {
3519 // after reading video params we should load subtitles because
3520 // we know fps so now we can adjust subtitle time to ~6 seconds AST
3521 // check .sub
3522 double fps = mpctx->sh_video ? mpctx->sh_video->fps : 25;
3523 current_module="read_subtitles_file";
3524 if(sub_name){
3525 for (i = 0; sub_name[i] != NULL; ++i)
3526 add_subtitles (sub_name[i], fps, 0);
3528 if(sub_auto) { // auto load sub file ...
3529 char *psub = get_path( "sub/" );
3530 char **tmp = sub_filenames((psub ? psub : ""), filename);
3531 int i = 0;
3532 free(psub); // release the buffer created by get_path() above
3533 while (tmp[i]) {
3534 add_subtitles (tmp[i], fps, 1);
3535 free(tmp[i++]);
3537 free(tmp);
3539 if (mpctx->set_of_sub_size > 0) {
3540 // setup global sub numbering
3541 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = mpctx->global_sub_size; // the global # of the first sub.
3542 mpctx->global_sub_size += mpctx->set_of_sub_size;
3546 if (mpctx->global_sub_size) {
3547 select_subtitle(mpctx);
3548 if(subdata)
3549 switch (stream_dump_type) {
3550 case 3: list_sub_file(subdata); break;
3551 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break;
3552 case 6: dump_srt(subdata, mpctx->sh_video->fps); break;
3553 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break;
3554 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break;
3555 case 9: dump_sami(subdata, mpctx->sh_video->fps); break;
3559 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_FILENAME=%s\n",
3560 filename_recode(filename));
3561 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_DEMUXER=%s\n", mpctx->demuxer->desc->name);
3562 if (mpctx->sh_video) {
3563 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3564 if (mpctx->sh_video->format >= 0x20202020)
3565 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format);
3566 else
3567 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format);
3568 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps*8);
3569 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w);
3570 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h);
3571 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps);
3572 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect);
3574 if (mpctx->sh_audio) {
3575 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3576 if (mpctx->sh_audio->format >= 0x20202020)
3577 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format);
3578 else
3579 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format);
3580 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps*8);
3581 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate);
3582 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels);
3584 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_LENGTH=%.2lf\n", demuxer_get_time_length(mpctx->demuxer));
3585 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_SEEKABLE=%d\n",
3586 mpctx->stream->seek && (!mpctx->demuxer || mpctx->demuxer->seekable));
3587 if (mpctx->demuxer) {
3588 if (mpctx->demuxer->num_chapters == 0)
3589 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
3590 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters);
3593 if(!mpctx->sh_video) goto main; // audio-only
3595 if(!reinit_video_chain()) {
3596 if(!mpctx->sh_video){
3597 if(!mpctx->sh_audio) goto goto_next_file;
3598 goto main; // exit_player(MSGTR_Exit_error);
3602 if(vo_flags & 0x08 && vo_spudec)
3603 spudec_set_hw_spu(vo_spudec,mpctx->video_out);
3605 #ifdef CONFIG_FREETYPE
3606 force_load_font = 1;
3607 #endif
3609 //================== MAIN: ==========================
3610 main:
3611 current_module="main";
3613 if(playing_msg) {
3614 char* msg = property_expand_string(mpctx, playing_msg);
3615 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",msg);
3616 free(msg);
3620 // Disable the term OSD in verbose mode
3621 if(verbose) term_osd = 0;
3624 //int frame_corr_num=0; //
3625 //float v_frame=0; // Video
3626 //float num_frames=0; // number of frames played
3628 int frame_time_remaining=0; // flag
3629 int blit_frame=0;
3630 mpctx->num_buffered_frames=0;
3632 // Make sure old OSD does not stay around,
3633 // e.g. with -fixed-vo and same-resolution files
3634 clear_osd_msgs();
3635 update_osd_msg();
3637 //================ SETUP AUDIO ==========================
3639 if(mpctx->sh_audio){
3640 reinit_audio_chain();
3641 if (mpctx->sh_audio && mpctx->sh_audio->codec)
3642 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name);
3645 current_module="av_init";
3647 if(mpctx->sh_video){
3648 mpctx->sh_video->timer=0;
3649 if (! ignore_start)
3650 audio_delay += mpctx->sh_video->stream_delay;
3652 if(mpctx->sh_audio){
3653 if (start_volume >= 0)
3654 mixer_setvolume(&mpctx->mixer, start_volume, start_volume);
3655 if (! ignore_start)
3656 audio_delay -= mpctx->sh_audio->stream_delay;
3657 mpctx->delay=-audio_delay;
3660 if(!mpctx->sh_audio){
3661 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
3662 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",mpctx->d_audio->packs);
3663 ds_free_packs(mpctx->d_audio); // free buffered chunks
3664 //mpctx->d_audio->id=-2; // do not read audio chunks
3665 //uninit_player(INITIALIZED_AO); // close device
3667 if(!mpctx->sh_video){
3668 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
3669 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",mpctx->d_video->packs);
3670 ds_free_packs(mpctx->d_video);
3671 mpctx->d_video->id=-2;
3672 //if(!fixed_vo) uninit_player(INITIALIZED_VO);
3675 if (!mpctx->sh_video && !mpctx->sh_audio)
3676 goto goto_next_file;
3678 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
3679 if(force_fps && mpctx->sh_video){
3680 vo_fps = mpctx->sh_video->fps=force_fps;
3681 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3682 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,mpctx->sh_video->fps,mpctx->sh_video->frametime);
3685 #ifdef CONFIG_GUI
3686 if ( use_gui ) {
3687 if ( mpctx->sh_audio ) guiIntfStruct.AudioType=mpctx->sh_audio->channels; else guiIntfStruct.AudioType=0;
3688 if ( !mpctx->sh_video && mpctx->sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
3689 guiGetEvent( guiSetFileFormat,(char *)mpctx->demuxer->file_format );
3690 if ( guiGetEvent( guiSetValues,(char *)mpctx->sh_video ) ) goto goto_next_file;
3691 guiGetEvent( guiSetDemuxer,(char *)mpctx->demuxer );
3693 #endif
3695 mp_input_set_section(NULL);
3696 //TODO: add desired (stream-based) sections here
3697 if (mpctx->stream->type==STREAMTYPE_TV) mp_input_set_section("tv");
3698 if (mpctx->stream->type==STREAMTYPE_DVDNAV) mp_input_set_section("dvdnav");
3700 //==================== START PLAYING =======================
3702 if(mpctx->loop_times>1) mpctx->loop_times--; else
3703 if(mpctx->loop_times==1) mpctx->loop_times = -1;
3705 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);
3707 total_time_usage_start=GetTimer();
3708 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
3709 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
3710 play_n_frames=play_n_frames_mf;
3711 mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY;
3713 if(play_n_frames==0){
3714 mpctx->eof=PT_NEXT_ENTRY; goto goto_next_file;
3717 if (seek_to_sec) {
3718 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE);
3719 end_at.pos += seek_to_sec;
3722 if (end_at.type == END_AT_SIZE) {
3723 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_MPEndposNoSizeBased);
3724 end_at.type = END_AT_NONE;
3727 #ifdef CONFIG_DVDNAV
3728 mp_dvdnav_context_free(mpctx);
3729 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3730 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
3731 mp_dvdnav_cell_has_changed(mpctx->stream,1);
3733 #endif
3735 while(!mpctx->eof){
3736 float aq_sleep_time=0;
3738 if(dvd_last_chapter>0) {
3739 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3740 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3741 goto goto_next_file;
3744 if(!mpctx->sh_audio && mpctx->d_audio->sh) {
3745 mpctx->sh_audio = mpctx->d_audio->sh;
3746 mpctx->sh_audio->ds = mpctx->d_audio;
3747 reinit_audio_chain();
3750 /*========================== PLAY AUDIO ============================*/
3752 if (mpctx->sh_audio)
3753 if (!fill_audio_out_buffers())
3754 // at eof, all audio at least written to ao
3755 if (!mpctx->sh_video)
3756 mpctx->eof = PT_NEXT_ENTRY;
3759 if(!mpctx->sh_video) {
3760 // handle audio-only case:
3761 double a_pos=0;
3762 // sh_audio can be NULL due to video stream switching
3763 // TODO: handle this better
3764 if((!quiet || end_at.type == END_AT_TIME) && mpctx->sh_audio)
3765 a_pos = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
3767 if(!quiet)
3768 print_status(a_pos, 0, 0);
3770 if(end_at.type == END_AT_TIME && end_at.pos < a_pos)
3771 mpctx->eof = PT_NEXT_ENTRY;
3772 update_subtitles(NULL, a_pos, mpctx->d_sub, 0);
3773 update_osd_msg();
3775 } else {
3777 /*========================== PLAY VIDEO ============================*/
3779 vo_pts=mpctx->sh_video->timer*90000.0;
3780 vo_fps=mpctx->sh_video->fps;
3782 if (!mpctx->num_buffered_frames) {
3783 double frame_time = update_video(&blit_frame);
3784 while (!blit_frame && mpctx->startup_decode_retry > 0) {
3785 double delay = mpctx->delay;
3786 // these initial decode failures are probably due to codec delay,
3787 // ignore them and also their probably nonsense durations
3788 update_video(&blit_frame);
3789 mpctx->delay = delay;
3790 mpctx->startup_decode_retry--;
3792 mpctx->startup_decode_retry = 0;
3793 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
3794 if (mpctx->sh_video->vf_initialized < 0) {
3795 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NotInitializeVOPorVO);
3796 mpctx->eof = 1; goto goto_next_file;
3798 if (frame_time < 0)
3799 mpctx->eof = 1;
3800 else {
3801 // might return with !eof && !blit_frame if !correct_pts
3802 mpctx->num_buffered_frames += blit_frame;
3803 mpctx->time_frame += frame_time / playback_speed; // for nosound
3807 // ==========================================================================
3809 // current_module="draw_osd";
3810 // if(vo_config_count) mpctx->video_out->draw_osd();
3812 #ifdef CONFIG_GUI
3813 if(use_gui) guiEventHandling();
3814 #endif
3816 current_module="vo_check_events";
3817 if (vo_config_count) mpctx->video_out->check_events();
3819 #ifdef CONFIG_X11
3820 if (stop_xscreensaver) {
3821 current_module = "stop_xscreensaver";
3822 xscreensaver_heartbeat();
3824 #endif
3825 if (heartbeat_cmd) {
3826 static unsigned last_heartbeat;
3827 unsigned now = GetTimerMS();
3828 if (now - last_heartbeat > 30000) {
3829 last_heartbeat = now;
3830 system(heartbeat_cmd);
3834 frame_time_remaining = sleep_until_update(&mpctx->time_frame, &aq_sleep_time);
3836 //====================== FLIP PAGE (VIDEO BLT): =========================
3838 current_module="flip_page";
3839 if (!frame_time_remaining && blit_frame) {
3840 unsigned int t2=GetTimer();
3842 if(vo_config_count) mpctx->video_out->flip_page();
3843 mpctx->num_buffered_frames--;
3845 vout_time_usage += (GetTimer() - t2) * 0.000001;
3847 //====================== A-V TIMESTAMP CORRECTION: =========================
3849 adjust_sync_and_print_status(frame_time_remaining, mpctx->time_frame);
3851 //============================ Auto QUALITY ============================
3853 /*Output quality adjustments:*/
3854 if(auto_quality>0){
3855 current_module="autoq";
3856 // float total=0.000001f * (GetTimer()-aq_total_time);
3857 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
3858 if(output_quality<auto_quality && aq_sleep_time>0)
3859 ++output_quality;
3860 else
3861 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
3862 if(output_quality>1 && aq_sleep_time<0)
3863 --output_quality;
3864 else
3865 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
3866 output_quality=0;
3867 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
3868 set_video_quality(mpctx->sh_video,output_quality);
3871 if (play_n_frames >= 0 && !frame_time_remaining && blit_frame) {
3872 --play_n_frames;
3873 if (play_n_frames <= 0) mpctx->eof = PT_NEXT_ENTRY;
3877 // FIXME: add size based support for -endpos
3878 if (end_at.type == END_AT_TIME &&
3879 !frame_time_remaining && end_at.pos <= mpctx->sh_video->pts)
3880 mpctx->eof = PT_NEXT_ENTRY;
3882 } // end if(mpctx->sh_video)
3884 #ifdef CONFIG_DVDNAV
3885 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3886 nav_highlight_t hl;
3887 mp_dvdnav_get_highlight (mpctx->stream, &hl);
3888 osd_set_nav_box (hl.sx, hl.sy, hl.ex, hl.ey);
3889 vo_osd_changed (OSDTYPE_DVDNAV);
3891 if (mp_dvdnav_stream_has_changed(mpctx->stream)) {
3892 double ar = -1.0;
3893 if (stream_control (mpctx->demuxer->stream,
3894 STREAM_CTRL_GET_ASPECT_RATIO, &ar)
3895 != STREAM_UNSUPPORTED)
3896 mpctx->sh_video->stream_aspect = ar;
3899 #endif
3901 //============================ Handle PAUSE ===============================
3903 current_module="pause";
3905 if (mpctx->osd_function == OSD_PAUSE) {
3906 mpctx->was_paused = 1;
3907 pause_loop();
3910 // handle -sstep
3911 if(step_sec>0) {
3912 mpctx->osd_function=OSD_FFW;
3913 rel_seek_secs+=step_sec;
3916 edl_update(mpctx);
3918 //================= Keyboard events, SEEKing ====================
3920 current_module="key_events";
3923 mp_cmd_t* cmd;
3924 int brk_cmd = 0;
3925 while( !brk_cmd && (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3926 brk_cmd = run_command(mpctx, cmd);
3927 mp_cmd_free(cmd);
3928 if (brk_cmd == 2)
3929 goto goto_enable_cache;
3932 mpctx->was_paused = 0;
3934 /* Looping. */
3935 if(mpctx->eof==1 && mpctx->loop_times>=0) {
3936 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d, eof = %d\n", mpctx->loop_times,mpctx->eof);
3938 if(mpctx->loop_times>1) mpctx->loop_times--; else
3939 if(mpctx->loop_times==1) mpctx->loop_times=-1;
3940 play_n_frames=play_n_frames_mf;
3941 mpctx->eof=0;
3942 abs_seek_pos=SEEK_ABSOLUTE; rel_seek_secs=seek_to_sec;
3943 loop_seek = 1;
3946 if(rel_seek_secs || abs_seek_pos){
3947 if (seek(mpctx, rel_seek_secs, abs_seek_pos) >= 0) {
3948 // Set OSD:
3949 if(!loop_seek){
3950 if( !edl_decision )
3951 set_osd_bar(0,"Position",0,100,demuxer_get_percent_pos(mpctx->demuxer));
3955 rel_seek_secs=0;
3956 abs_seek_pos=0;
3957 loop_seek=0;
3958 edl_decision = 0;
3961 #ifdef CONFIG_GUI
3962 if(use_gui){
3963 guiEventHandling();
3964 if(mpctx->demuxer->file_format==DEMUXER_TYPE_AVI && mpctx->sh_video && mpctx->sh_video->video.dwLength>2){
3965 // get pos from frame number / total frames
3966 guiIntfStruct.Position=(float)mpctx->d_video->pack_no*100.0f/mpctx->sh_video->video.dwLength;
3967 } else {
3968 guiIntfStruct.Position=demuxer_get_percent_pos(mpctx->demuxer);
3970 if ( mpctx->sh_video ) guiIntfStruct.TimeSec=mpctx->sh_video->pts;
3971 else if ( mpctx->sh_audio ) guiIntfStruct.TimeSec=playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
3972 guiIntfStruct.LengthInSec=demuxer_get_time_length(mpctx->demuxer);
3973 guiGetEvent( guiReDraw,NULL );
3974 guiGetEvent( guiSetVolume,NULL );
3975 if(guiIntfStruct.Playing==0) break; // STOP
3976 if(guiIntfStruct.Playing==2) mpctx->osd_function=OSD_PAUSE;
3977 if ( guiIntfStruct.DiskChanged || guiIntfStruct.NewPlay ) goto goto_next_file;
3978 #ifdef CONFIG_DVDREAD
3979 if ( mpctx->stream->type == STREAMTYPE_DVD )
3981 dvd_priv_t * dvdp = mpctx->stream->priv;
3982 guiIntfStruct.DVD.current_chapter=dvd_chapter_from_cell(dvdp,guiIntfStruct.DVD.current_title-1, dvdp->cur_cell)+1;
3984 #endif
3986 #endif /* CONFIG_GUI */
3988 } // while(!mpctx->eof)
3990 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",mpctx->eof);
3992 #ifdef CONFIG_DVBIN
3993 if(mpctx->dvbin_reopen)
3995 mpctx->eof = 0;
3996 uninit_player(INITIALIZED_ALL-(INITIALIZED_GUI|INITIALIZED_STREAM|INITIALIZED_INPUT|INITIALIZED_GETCH2|(fixed_vo?INITIALIZED_VO:0)));
3997 cache_uninit(mpctx->stream);
3998 mpctx->dvbin_reopen = 0;
3999 goto goto_enable_cache;
4001 #endif
4004 goto_next_file: // don't jump here after ao/vo/getch initialization!
4006 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
4008 if(benchmark){
4009 double tot=video_time_usage+vout_time_usage+audio_time_usage;
4010 double total_time_usage;
4011 total_time_usage_start=GetTimer()-total_time_usage_start;
4012 total_time_usage = (float)total_time_usage_start*0.000001;
4013 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
4014 video_time_usage,vout_time_usage,audio_time_usage,
4015 total_time_usage-tot,total_time_usage);
4016 if(total_time_usage>0.0)
4017 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
4018 100.0*video_time_usage/total_time_usage,
4019 100.0*vout_time_usage/total_time_usage,
4020 100.0*audio_time_usage/total_time_usage,
4021 100.0*(total_time_usage-tot)/total_time_usage,
4022 100.0);
4023 if(total_frame_cnt && frame_dropping)
4024 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
4025 total_frame_cnt-drop_frame_cnt,
4026 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
4027 drop_frame_cnt,
4028 100*drop_frame_cnt/total_frame_cnt,
4029 total_frame_cnt,
4030 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
4033 // time to uninit all, except global stuff:
4034 uninit_player(INITIALIZED_ALL-(INITIALIZED_GUI+INITIALIZED_INPUT+(fixed_vo?INITIALIZED_VO:0)));
4036 if(mpctx->set_of_sub_size > 0) {
4037 current_module="sub_free";
4038 for(i = 0; i < mpctx->set_of_sub_size; ++i) {
4039 sub_free(mpctx->set_of_subtitles[i]);
4040 #ifdef CONFIG_ASS
4041 if(mpctx->set_of_ass_tracks[i])
4042 ass_free_track( mpctx->set_of_ass_tracks[i] );
4043 #endif
4045 mpctx->set_of_sub_size = 0;
4047 vo_sub_last = vo_sub=NULL;
4048 subdata=NULL;
4049 #ifdef CONFIG_ASS
4050 ass_track = NULL;
4051 if(ass_library)
4052 ass_clear_fonts(ass_library);
4053 #endif
4055 if(mpctx->eof == PT_NEXT_ENTRY || mpctx->eof == PT_PREV_ENTRY) {
4056 mpctx->eof = mpctx->eof == PT_NEXT_ENTRY ? 1 : -1;
4057 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->play_tree_step,0) == PLAY_TREE_ITER_ENTRY) {
4058 mpctx->eof = 1;
4059 } else {
4060 play_tree_iter_free(mpctx->playtree_iter);
4061 mpctx->playtree_iter = NULL;
4063 mpctx->play_tree_step = 1;
4064 } else if(mpctx->eof == PT_UP_NEXT || mpctx->eof == PT_UP_PREV) {
4065 mpctx->eof = mpctx->eof == PT_UP_NEXT ? 1 : -1;
4066 if(mpctx->playtree_iter) {
4067 if(play_tree_iter_up_step(mpctx->playtree_iter,mpctx->eof,0) == PLAY_TREE_ITER_ENTRY) {
4068 mpctx->eof = 1;
4069 } else {
4070 play_tree_iter_free(mpctx->playtree_iter);
4071 mpctx->playtree_iter = NULL;
4074 } else if (mpctx->eof == PT_STOP) {
4075 play_tree_iter_free(mpctx->playtree_iter);
4076 mpctx->playtree_iter = NULL;
4077 } else { // NEXT PREV SRC
4078 mpctx->eof = mpctx->eof == PT_PREV_SRC ? -1 : 1;
4081 if(mpctx->eof == 0) mpctx->eof = 1;
4083 while(mpctx->playtree_iter != NULL) {
4084 filename = play_tree_iter_get_file(mpctx->playtree_iter,mpctx->eof);
4085 if(filename == NULL) {
4086 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->eof,0) != PLAY_TREE_ITER_ENTRY) {
4087 play_tree_iter_free(mpctx->playtree_iter);
4088 mpctx->playtree_iter = NULL;
4090 } else
4091 break;
4094 #ifdef CONFIG_GUI
4095 if(use_gui && !mpctx->playtree_iter) {
4096 #ifdef CONFIG_DVDREAD
4097 if(!guiIntfStruct.DiskChanged)
4098 #endif
4099 mplEnd();
4101 #endif
4103 if(use_gui || mpctx->playtree_iter != NULL || player_idle_mode){
4104 if(!mpctx->playtree_iter) filename = NULL;
4105 mpctx->eof = 0;
4106 goto play_next_file;
4110 exit_player_with_rc(EXIT_EOF, 0);
4112 return 1;
4114 #endif /* DISABLE_MAIN */