Support GEOV video codec: Hangs on exit
[mplayer/glamo.git] / mplayer.c
blobf76548def217398f8cf2148c9a4e6b7df086c809
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 int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config);
133 int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue);
135 //**************************************************************************//
136 // Config
137 //**************************************************************************//
138 #include "parser-cfg.h"
139 #include "parser-mpcmd.h"
141 m_config_t* mconfig;
143 //**************************************************************************//
144 // Config file
145 //**************************************************************************//
147 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
149 static int cfg_include(m_option_t *conf, char *filename){
150 return m_config_parse_config_file(mconfig, filename);
153 #include "get_path.h"
155 //**************************************************************************//
156 // XScreensaver
157 //**************************************************************************//
159 void xscreensaver_heartbeat(void);
161 //**************************************************************************//
162 //**************************************************************************//
163 // Input media streaming & demultiplexer:
164 //**************************************************************************//
166 static int max_framesize=0;
168 #include "stream/stream.h"
169 #include "libmpdemux/demuxer.h"
170 #include "libmpdemux/stheader.h"
172 #ifdef CONFIG_DVDREAD
173 #include "stream/stream_dvd.h"
174 #endif
175 #include "stream/stream_dvdnav.h"
177 #include "libmpcodecs/dec_audio.h"
178 #include "libmpcodecs/dec_video.h"
179 #include "libmpcodecs/mp_image.h"
180 #include "libmpcodecs/vf.h"
181 #include "libmpcodecs/vd.h"
183 #include "mixer.h"
185 #include "mp_core.h"
187 //**************************************************************************//
188 //**************************************************************************//
190 // Common FIFO functions, and keyboard/event FIFO code
191 #include "mp_fifo.h"
192 int noconsolecontrols=0;
193 //**************************************************************************//
195 // Not all functions in mplayer.c take the context as an argument yet
196 static MPContext mpctx_s = {
197 .osd_function = OSD_PLAY,
198 .begin_skip = MP_NOPTS_VALUE,
199 .play_tree_step = 1,
200 .global_sub_pos = -1,
201 .set_of_sub_pos = -1,
202 .file_format = DEMUXER_TYPE_UNKNOWN,
203 .loop_times = -1,
204 #ifdef CONFIG_DVBIN
205 .last_dvb_step = 1,
206 #endif
209 static MPContext *mpctx = &mpctx_s;
211 int fixed_vo=0;
213 // benchmark:
214 double video_time_usage=0;
215 double vout_time_usage=0;
216 static double audio_time_usage=0;
217 static int total_time_usage_start=0;
218 static int total_frame_cnt=0;
219 static int drop_frame_cnt=0; // total number of dropped frames
220 int benchmark=0;
222 // options:
223 #define DEFAULT_STARTUP_DECODE_RETRY 8
224 int auto_quality=0;
225 static int output_quality=0;
227 float playback_speed=1.0;
229 int use_gui=0;
231 #ifdef CONFIG_GUI
232 int enqueue=0;
233 #endif
235 static int list_properties = 0;
237 int osd_level=1;
238 // if nonzero, hide current OSD contents when GetTimerMS() reaches this
239 unsigned int osd_visible;
240 int osd_duration = 1000;
242 int term_osd = 1;
243 static char* term_osd_esc = "\x1b[A\r\x1b[K";
244 static char* playing_msg = NULL;
245 // seek:
246 static double seek_to_sec;
247 static off_t seek_to_byte=0;
248 static off_t step_sec=0;
249 static int loop_seek=0;
251 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 };
253 // A/V sync:
254 int autosync=0; // 30 might be a good default value.
256 // may be changed by GUI: (FIXME!)
257 float rel_seek_secs=0;
258 int abs_seek_pos=0;
260 // codecs:
261 char **audio_codec_list=NULL; // override audio codec
262 char **video_codec_list=NULL; // override video codec
263 char **audio_fm_list=NULL; // override audio codec family
264 char **video_fm_list=NULL; // override video codec family
266 // demuxer:
267 extern char *demuxer_name; // override demuxer
268 extern char *audio_demuxer_name; // override audio demuxer
269 extern char *sub_demuxer_name; // override sub demuxer
271 // streaming:
272 int audio_id=-1;
273 int video_id=-1;
274 int dvdsub_id=-1;
275 // this dvdsub_id was selected via slang
276 // use this to allow dvdnav to follow -slang across stream resets,
277 // in particular the subtitle ID for a language changes
278 int dvdsub_lang_id;
279 int vobsub_id=-1;
280 char* audio_lang=NULL;
281 char* dvdsub_lang=NULL;
282 static char* spudec_ifo=NULL;
283 char* filename=NULL; //"MI2-Trailer.avi";
284 int forced_subs_only=0;
285 int file_filter=1;
287 // cache2:
288 int stream_cache_size=-1;
289 #ifdef CONFIG_STREAM_CACHE
290 extern int cache_fill_status;
292 float stream_cache_min_percent=20.0;
293 float stream_cache_seek_min_percent=50.0;
294 #else
295 #define cache_fill_status 0
296 #endif
298 // dump:
299 static char *stream_dump_name="stream.dump";
300 int stream_dump_type=0;
302 // A-V sync:
303 static float default_max_pts_correction=-1;//0.01f;
304 static float max_pts_correction=0;//default_max_pts_correction;
305 static float c_total=0;
306 float audio_delay=0;
307 static int ignore_start=0;
309 static int softsleep=0;
311 double force_fps=0;
312 static int force_srate=0;
313 static int audio_output_format=-1; // AF_FORMAT_UNKNOWN
314 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
315 static int play_n_frames=-1;
316 static int play_n_frames_mf=-1;
318 // screen info:
319 char** video_driver_list=NULL;
320 char** audio_driver_list=NULL;
322 // sub:
323 char *font_name=NULL;
324 char *sub_font_name=NULL;
325 extern int font_fontconfig;
326 float font_factor=0.75;
327 char **sub_name=NULL;
328 float sub_delay=0;
329 float sub_fps=0;
330 int sub_auto = 1;
331 char *vobsub_name=NULL;
332 /*DSP!!char *dsp=NULL;*/
333 int subcc_enabled=0;
334 int suboverlap_enabled = 1;
336 #include "libass/ass_mp.h"
338 char* current_module=NULL; // for debugging
341 // ---
343 #ifdef CONFIG_MENU
344 #include "m_struct.h"
345 #include "libmenu/menu.h"
346 void vf_menu_pause_update(struct vf_instance_s* vf);
347 extern vf_info_t vf_info_menu;
348 static vf_info_t* libmenu_vfs[] = {
349 &vf_info_menu,
350 NULL
352 static vf_instance_t* vf_menu = NULL;
353 int use_menu = 0;
354 static char* menu_cfg = NULL;
355 static char* menu_root = "main";
356 #endif
359 #ifdef HAVE_RTC
360 static int nortc = 1;
361 static char* rtc_device;
362 #endif
364 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
365 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
366 short edl_decision = 0; ///< 1 when an EDL operation has been made.
367 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode.
368 int use_filedir_conf;
369 int use_filename_title;
371 static unsigned int initialized_flags=0;
372 #include "mpcommon.h"
373 #include "command.h"
375 #include "metadata.h"
377 #define mp_basename2(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
379 const void *mpctx_get_video_out(MPContext *mpctx)
381 return mpctx->video_out;
384 const void *mpctx_get_audio_out(MPContext *mpctx)
386 return mpctx->audio_out;
389 void *mpctx_get_demuxer(MPContext *mpctx)
391 return mpctx->demuxer;
394 void *mpctx_get_playtree_iter(MPContext *mpctx)
396 return mpctx->playtree_iter;
399 void *mpctx_get_mixer(MPContext *mpctx)
401 return &mpctx->mixer;
404 int mpctx_get_global_sub_size(MPContext *mpctx)
406 return mpctx->global_sub_size;
409 int mpctx_get_osd_function(MPContext *mpctx)
411 return mpctx->osd_function;
414 static int is_valid_metadata_type (metadata_t type) {
415 switch (type)
417 /* check for valid video stream */
418 case META_VIDEO_CODEC:
419 case META_VIDEO_BITRATE:
420 case META_VIDEO_RESOLUTION:
422 if (!mpctx->sh_video)
423 return 0;
424 break;
427 /* check for valid audio stream */
428 case META_AUDIO_CODEC:
429 case META_AUDIO_BITRATE:
430 case META_AUDIO_SAMPLES:
432 if (!mpctx->sh_audio)
433 return 0;
434 break;
437 /* check for valid demuxer */
438 case META_INFO_TITLE:
439 case META_INFO_ARTIST:
440 case META_INFO_ALBUM:
441 case META_INFO_YEAR:
442 case META_INFO_COMMENT:
443 case META_INFO_TRACK:
444 case META_INFO_GENRE:
446 if (!mpctx->demuxer)
447 return 0;
448 break;
451 default:
452 break;
455 return 1;
458 static char *get_demuxer_info (char *tag) {
459 char **info = mpctx->demuxer->info;
460 int n;
462 if (!info || !tag)
463 return NULL;
465 for (n = 0; info[2*n] != NULL ; n++)
466 if (!strcasecmp (info[2*n], tag))
467 break;
469 return info[2*n+1] ? strdup (info[2*n+1]) : NULL;
472 char *get_metadata (metadata_t type) {
473 char *meta = NULL;
474 sh_audio_t * const sh_audio = mpctx->sh_audio;
475 sh_video_t * const sh_video = mpctx->sh_video;
477 if (!is_valid_metadata_type (type))
478 return NULL;
480 switch (type)
482 case META_NAME:
484 return strdup (mp_basename2 (filename));
487 case META_VIDEO_CODEC:
489 if (sh_video->format == 0x10000001)
490 meta = strdup ("mpeg1");
491 else if (sh_video->format == 0x10000002)
492 meta = strdup ("mpeg2");
493 else if (sh_video->format == 0x10000004)
494 meta = strdup ("mpeg4");
495 else if (sh_video->format == 0x10000005)
496 meta = strdup ("h264");
497 else if (sh_video->format >= 0x20202020)
499 meta = malloc (8);
500 sprintf (meta, "%.4s", (char *) &sh_video->format);
502 else
504 meta = malloc (8);
505 sprintf (meta, "0x%08X", sh_video->format);
507 return meta;
510 case META_VIDEO_BITRATE:
512 meta = malloc (16);
513 sprintf (meta, "%d kbps", (int) (sh_video->i_bps * 8 / 1024));
514 return meta;
517 case META_VIDEO_RESOLUTION:
519 meta = malloc (16);
520 sprintf (meta, "%d x %d", sh_video->disp_w, sh_video->disp_h);
521 return meta;
524 case META_AUDIO_CODEC:
526 if (sh_audio->codec && sh_audio->codec->name)
527 meta = strdup (sh_audio->codec->name);
528 return meta;
531 case META_AUDIO_BITRATE:
533 meta = malloc (16);
534 sprintf (meta, "%d kbps", (int) (sh_audio->i_bps * 8/1000));
535 return meta;
538 case META_AUDIO_SAMPLES:
540 meta = malloc (16);
541 sprintf (meta, "%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels);
542 return meta;
545 /* check for valid demuxer */
546 case META_INFO_TITLE:
547 return get_demuxer_info ("Title");
549 case META_INFO_ARTIST:
550 return get_demuxer_info ("Artist");
552 case META_INFO_ALBUM:
553 return get_demuxer_info ("Album");
555 case META_INFO_YEAR:
556 return get_demuxer_info ("Year");
558 case META_INFO_COMMENT:
559 return get_demuxer_info ("Comment");
561 case META_INFO_TRACK:
562 return get_demuxer_info ("Track");
564 case META_INFO_GENRE:
565 return get_demuxer_info ("Genre");
567 default:
568 break;
571 return meta;
574 /// step size of mixer changes
575 int volstep = 3;
577 #ifdef CONFIG_DVDNAV
578 static void mp_dvdnav_context_free(MPContext *ctx){
579 if (ctx->nav_smpi) free_mp_image(ctx->nav_smpi);
580 ctx->nav_smpi = NULL;
581 if (ctx->nav_buffer) free(ctx->nav_buffer);
582 ctx->nav_buffer = NULL;
583 ctx->nav_start = NULL;
584 ctx->nav_in_size = 0;
586 #endif
588 void uninit_player(unsigned int mask){
589 mask &= initialized_flags;
591 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
593 if(mask&INITIALIZED_ACODEC){
594 initialized_flags&=~INITIALIZED_ACODEC;
595 current_module="uninit_acodec";
596 if(mpctx->sh_audio) uninit_audio(mpctx->sh_audio);
597 #ifdef CONFIG_GUI
598 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
599 #endif
600 mpctx->sh_audio=NULL;
601 mpctx->mixer.afilter = NULL;
604 if(mask&INITIALIZED_VCODEC){
605 initialized_flags&=~INITIALIZED_VCODEC;
606 current_module="uninit_vcodec";
607 if(mpctx->sh_video) uninit_video(mpctx->sh_video);
608 mpctx->sh_video=NULL;
609 #ifdef CONFIG_MENU
610 vf_menu=NULL;
611 #endif
614 if(mask&INITIALIZED_DEMUXER){
615 initialized_flags&=~INITIALIZED_DEMUXER;
616 current_module="free_demuxer";
617 if(mpctx->demuxer){
618 mpctx->stream=mpctx->demuxer->stream;
619 free_demuxer(mpctx->demuxer);
621 mpctx->demuxer=NULL;
624 // kill the cache process:
625 if(mask&INITIALIZED_STREAM){
626 initialized_flags&=~INITIALIZED_STREAM;
627 current_module="uninit_stream";
628 if(mpctx->stream) free_stream(mpctx->stream);
629 mpctx->stream=NULL;
632 if(mask&INITIALIZED_VO){
633 initialized_flags&=~INITIALIZED_VO;
634 current_module="uninit_vo";
635 mpctx->video_out->uninit();
636 mpctx->video_out=NULL;
637 #ifdef CONFIG_DVDNAV
638 mp_dvdnav_context_free(mpctx);
639 #endif
642 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code.
643 if(mask&INITIALIZED_GETCH2){
644 initialized_flags&=~INITIALIZED_GETCH2;
645 current_module="uninit_getch2";
646 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
647 // restore terminal:
648 getch2_disable();
651 if(mask&INITIALIZED_VOBSUB){
652 initialized_flags&=~INITIALIZED_VOBSUB;
653 current_module="uninit_vobsub";
654 if(vo_vobsub) vobsub_close(vo_vobsub);
655 vo_vobsub=NULL;
658 if (mask&INITIALIZED_SPUDEC){
659 initialized_flags&=~INITIALIZED_SPUDEC;
660 current_module="uninit_spudec";
661 spudec_free(vo_spudec);
662 vo_spudec=NULL;
665 if(mask&INITIALIZED_AO){
666 initialized_flags&=~INITIALIZED_AO;
667 current_module="uninit_ao";
668 if (mpctx->edl_muted) mixer_mute(&mpctx->mixer);
669 if (mpctx->audio_out) mpctx->audio_out->uninit(mpctx->eof?0:1);
670 mpctx->audio_out=NULL;
673 #ifdef CONFIG_GUI
674 if(mask&INITIALIZED_GUI){
675 initialized_flags&=~INITIALIZED_GUI;
676 current_module="uninit_gui";
677 guiDone();
679 #endif
681 if(mask&INITIALIZED_INPUT){
682 initialized_flags&=~INITIALIZED_INPUT;
683 current_module="uninit_input";
684 mp_input_uninit();
685 #ifdef CONFIG_MENU
686 if (use_menu)
687 menu_uninit();
688 #endif
691 current_module=NULL;
694 void exit_player_with_rc(exit_reason_t how, int rc){
696 if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
697 uninit_player(INITIALIZED_ALL);
698 #if defined(__MINGW32__) || defined(__CYGWIN__)
699 timeEndPeriod(1);
700 #endif
701 #ifdef CONFIG_X11
702 #ifdef CONFIG_GUI
703 if ( !use_gui )
704 #endif
705 vo_uninit(); // Close the X11 connection (if any is open).
706 #endif
708 #ifdef CONFIG_FREETYPE
709 current_module="uninit_font";
710 if (sub_font && sub_font != vo_font) free_font_desc(sub_font);
711 sub_font = NULL;
712 if (vo_font) free_font_desc(vo_font);
713 vo_font = NULL;
714 done_freetype();
715 #endif
716 free_osd_list();
718 #ifdef CONFIG_ASS
719 ass_library_done(ass_library);
720 ass_library = NULL;
721 #endif
723 current_module="exit_player";
725 // free mplayer config
726 if(mconfig)
727 m_config_free(mconfig);
728 mconfig = NULL;
730 if(mpctx->playtree_iter)
731 play_tree_iter_free(mpctx->playtree_iter);
732 mpctx->playtree_iter = NULL;
733 if(mpctx->playtree)
734 play_tree_free(mpctx->playtree, 1);
735 mpctx->playtree = NULL;
738 if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
739 edl_records = NULL;
740 switch(how) {
741 case EXIT_QUIT:
742 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_quit);
743 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n");
744 break;
745 case EXIT_EOF:
746 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_eof);
747 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n");
748 break;
749 case EXIT_ERROR:
750 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_error);
751 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n");
752 break;
753 default:
754 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n");
756 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
758 exit(rc);
761 void exit_player(exit_reason_t how){
762 exit_player_with_rc(how, 1);
765 #ifndef __MINGW32__
766 static void child_sighandler(int x){
767 pid_t pid;
768 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
770 #endif
772 #ifdef CONFIG_CRASH_DEBUG
773 static char *prog_path;
774 static int crash_debug = 0;
775 #endif
777 static void exit_sighandler(int x){
778 static int sig_count=0;
779 #ifdef CONFIG_CRASH_DEBUG
780 if (!crash_debug || x != SIGTRAP)
781 #endif
782 ++sig_count;
783 if(initialized_flags==0 && sig_count>1) exit(1);
784 if(sig_count==5)
786 /* We're crashing bad and can't uninit cleanly :(
787 * by popular request, we make one last (dirty)
788 * effort to restore the user's
789 * terminal. */
790 getch2_disable();
791 exit(1);
793 if(sig_count==6) exit(1);
794 if(sig_count>6){
795 // can't stop :(
796 #ifndef __MINGW32__
797 kill(getpid(),SIGKILL);
798 #endif
800 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x,
801 current_module?current_module:"unknown"
803 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x);
804 if(sig_count<=1)
805 switch(x){
806 case SIGINT:
807 case SIGQUIT:
808 case SIGTERM:
809 case SIGKILL:
810 async_quit_request = 1;
811 return; // killed from keyboard (^C) or killed [-9]
812 case SIGILL:
813 #if CONFIG_RUNTIME_CPUDETECT
814 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL_RTCpuSel);
815 #else
816 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL);
817 #endif
818 case SIGFPE:
819 case SIGSEGV:
820 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGSEGV_SIGFPE);
821 default:
822 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGCRASH);
823 #ifdef CONFIG_CRASH_DEBUG
824 if (crash_debug) {
825 int gdb_pid;
826 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
827 gdb_pid = fork();
828 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
829 if (gdb_pid == 0) { // We are the child
830 char spid[20];
831 snprintf(spid, sizeof(spid), "%i", getppid());
832 getch2_disable(); // allow terminal to work properly with gdb
833 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1)
834 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
835 } else if (gdb_pid < 0)
836 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
837 else {
838 waitpid(gdb_pid, NULL, 0);
840 if (x == SIGTRAP) return;
842 #endif
844 getch2_disable();
845 exit(1);
848 void mp_input_register_options(m_config_t* cfg);
850 #include "cfg-mplayer.h"
852 static void parse_cfgfiles( m_config_t* conf )
854 char *conffile;
855 int conffile_fd;
856 if (!disable_system_conf &&
857 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
858 exit_player(EXIT_NONE);
859 if ((conffile = get_path("")) == NULL) {
860 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
861 } else {
862 #ifdef __MINGW32__
863 mkdir(conffile);
864 #else
865 mkdir(conffile, 0777);
866 #endif
867 free(conffile);
868 if ((conffile = get_path("config")) == NULL) {
869 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
870 } else {
871 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
872 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);
873 write(conffile_fd, default_config, strlen(default_config));
874 close(conffile_fd);
876 if (!disable_user_conf &&
877 m_config_parse_config_file(conf, conffile) < 0)
878 exit_player(EXIT_NONE);
879 free(conffile);
884 #define PROFILE_CFG_PROTOCOL "protocol."
886 static void load_per_protocol_config (m_config_t* conf, const char *const file)
888 char *str;
889 char protocol[strlen (PROFILE_CFG_PROTOCOL) + strlen (file) + 1];
890 m_profile_t *p;
892 /* does filename actually uses a protocol ? */
893 str = strstr (file, "://");
894 if (!str)
895 return;
897 sprintf (protocol, "%s%s", PROFILE_CFG_PROTOCOL, file);
898 protocol[strlen (PROFILE_CFG_PROTOCOL)+strlen(file)-strlen(str)] = '\0';
899 p = m_config_get_profile (conf, protocol);
900 if (p)
902 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingProtocolProfile, protocol);
903 m_config_set_profile(conf,p);
907 #define PROFILE_CFG_EXTENSION "extension."
909 static void load_per_extension_config (m_config_t* conf, const char *const file)
911 char *str;
912 char extension[strlen (PROFILE_CFG_EXTENSION) + 8];
913 m_profile_t *p;
915 /* does filename actually have an extension ? */
916 str = strrchr (filename, '.');
917 if (!str)
918 return;
920 sprintf (extension, PROFILE_CFG_EXTENSION);
921 strncat (extension, ++str, 7);
922 p = m_config_get_profile (conf, extension);
923 if (p)
925 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, extension);
926 m_config_set_profile(conf,p);
930 #define PROFILE_CFG_VO "vo."
931 #define PROFILE_CFG_AO "ao."
933 static void load_per_output_config (m_config_t* conf, char *cfg, char *out)
935 char profile[strlen (cfg) + strlen (out) + 1];
936 m_profile_t *p;
938 sprintf (profile, "%s%s", cfg, out);
939 p = m_config_get_profile (conf, profile);
940 if (p)
942 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, profile);
943 m_config_set_profile(conf,p);
948 * Tries to load a config file
949 * @return 0 if file was not found, 1 otherwise
951 static int try_load_config(m_config_t *conf, const char *file)
953 struct stat st;
954 if (stat(file, &st))
955 return 0;
956 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, file);
957 m_config_parse_config_file (conf, file);
958 return 1;
961 static void load_per_file_config (m_config_t* conf, const char *const file)
963 char *confpath;
964 char cfg[PATH_MAX];
965 char *name;
967 if (strlen(file) > PATH_MAX - 14) {
968 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Filename is too long, can not load file or directory specific config files\n");
969 return;
971 sprintf (cfg, "%s.conf", file);
973 name = strrchr(cfg, '/');
974 if (HAVE_DOS_PATHS) {
975 char *tmp = strrchr(cfg, '\\');
976 if (!name || tmp > name)
977 name = tmp;
978 tmp = strrchr(cfg, ':');
979 if (!name || tmp > name)
980 name = tmp;
982 if (!name)
983 name = cfg;
984 else
985 name++;
987 if (use_filedir_conf) {
988 char dircfg[PATH_MAX];
989 strcpy(dircfg, cfg);
990 strcpy(dircfg + (name - cfg), "mplayer.conf");
991 try_load_config(conf, dircfg);
993 if (try_load_config(conf, cfg))
994 return;
997 if ((confpath = get_path (name)) != NULL)
999 try_load_config(conf, confpath);
1001 free (confpath);
1005 /* When libmpdemux performs a blocking operation (network connection or
1006 * cache filling) if the operation fails we use this function to check
1007 * if it was interrupted by the user.
1008 * The function returns a new value for eof. */
1009 static int libmpdemux_was_interrupted(int eof) {
1010 mp_cmd_t* cmd;
1011 if((cmd = mp_input_get_cmd(0,0,0)) != NULL) {
1012 switch(cmd->id) {
1013 case MP_CMD_QUIT:
1014 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
1015 case MP_CMD_PLAY_TREE_STEP: {
1016 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
1017 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i;
1018 } break;
1019 case MP_CMD_PLAY_TREE_UP_STEP: {
1020 eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
1021 } break;
1022 case MP_CMD_PLAY_ALT_SRC_STEP: {
1023 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
1024 } break;
1026 mp_cmd_free(cmd);
1028 return eof;
1031 #define mp_basename(s) (strrchr(s,'\\')==NULL?(mp_basename2(s)):(strrchr(s,'\\')+1))
1033 static int playtree_add_playlist(play_tree_t* entry)
1035 play_tree_add_bpf(entry,filename);
1037 #ifdef CONFIG_GUI
1038 if (use_gui) {
1039 if (entry) {
1040 import_playtree_playlist_into_gui(entry, mconfig);
1041 play_tree_free_list(entry,1);
1043 } else
1044 #endif
1046 if(!entry) {
1047 entry = mpctx->playtree_iter->tree;
1048 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1049 return PT_NEXT_ENTRY;
1051 if(mpctx->playtree_iter->tree == entry ) { // Loop with a single file
1052 if(play_tree_iter_up_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1053 return PT_NEXT_ENTRY;
1056 play_tree_remove(entry,1,1);
1057 return PT_NEXT_SRC;
1059 play_tree_insert_entry(mpctx->playtree_iter->tree,entry);
1060 play_tree_set_params_from(entry,mpctx->playtree_iter->tree);
1061 entry = mpctx->playtree_iter->tree;
1062 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1063 return PT_NEXT_ENTRY;
1065 play_tree_remove(entry,1,1);
1067 return PT_NEXT_SRC;
1070 void add_subtitles(char *filename, float fps, int noerr)
1072 sub_data *subd;
1073 #ifdef CONFIG_ASS
1074 ass_track_t *asst = 0;
1075 #endif
1077 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) {
1078 return;
1081 subd = sub_read_file(filename, fps);
1082 #ifdef CONFIG_ASS
1083 if (ass_enabled)
1084 #ifdef CONFIG_ICONV
1085 asst = ass_read_stream(ass_library, filename, sub_cp);
1086 #else
1087 asst = ass_read_stream(ass_library, filename, 0);
1088 #endif
1089 if (ass_enabled && subd && !asst)
1090 asst = ass_read_subdata(ass_library, subd, fps);
1092 if (!asst && !subd)
1093 #else
1094 if(!subd)
1095 #endif
1096 mp_msg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR, MSGTR_CantLoadSub,
1097 filename_recode(filename));
1099 #ifdef CONFIG_ASS
1100 if (!asst && !subd) return;
1101 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst;
1102 #else
1103 if (!subd) return;
1104 #endif
1105 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd;
1106 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size);
1107 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n",
1108 filename_recode(filename));
1109 ++mpctx->set_of_sub_size;
1110 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AddedSubtitleFile, mpctx->set_of_sub_size,
1111 filename_recode(filename));
1114 // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken.
1115 void update_set_of_subtitles(void)
1116 // subdata was changed, set_of_sub... have to be updated.
1118 sub_data ** const set_of_subtitles = mpctx->set_of_subtitles;
1119 int i;
1120 if (mpctx->set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted
1121 for (i = mpctx->set_of_sub_pos + 1; i < mpctx->set_of_sub_size; ++i)
1122 set_of_subtitles[i-1] = set_of_subtitles[i];
1123 set_of_subtitles[mpctx->set_of_sub_size-1] = NULL;
1124 --mpctx->set_of_sub_size;
1125 if (mpctx->set_of_sub_size > 0) subdata = set_of_subtitles[mpctx->set_of_sub_pos=0];
1127 else if (mpctx->set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed
1128 set_of_subtitles[mpctx->set_of_sub_pos] = subdata;
1130 else if (mpctx->set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added
1131 set_of_subtitles[mpctx->set_of_sub_pos=mpctx->set_of_sub_size] = subdata;
1132 ++mpctx->set_of_sub_size;
1136 void init_vo_spudec(void) {
1137 if (vo_spudec)
1138 spudec_free(vo_spudec);
1139 initialized_flags &= ~INITIALIZED_SPUDEC;
1140 vo_spudec = NULL;
1141 if (spudec_ifo) {
1142 unsigned int palette[16], width, height;
1143 current_module="spudec_init_vobsub";
1144 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1145 vo_spudec=spudec_new_scaled(palette, width, height, NULL, 0);
1148 #ifdef CONFIG_DVDREAD
1149 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVD) {
1150 current_module="spudec_init_dvdread";
1151 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(mpctx->stream->priv))->cur_pgc->palette,
1152 mpctx->sh_video->disp_w, mpctx->sh_video->disp_h,
1153 NULL, 0);
1155 #endif
1157 #ifdef CONFIG_DVDNAV
1158 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVDNAV) {
1159 unsigned int *palette = mp_dvdnav_get_spu_clut(mpctx->stream);
1160 current_module="spudec_init_dvdnav";
1161 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1163 #endif
1165 if (vo_spudec==NULL) {
1166 sh_sub_t *sh = (sh_sub_t *)mpctx->d_sub->sh;
1167 current_module="spudec_init_normal";
1168 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1169 spudec_set_font_factor(vo_spudec,font_factor);
1172 if (vo_spudec!=NULL) {
1173 initialized_flags|=INITIALIZED_SPUDEC;
1174 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
1179 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
1180 * make it all work is to use the builtin SDL-bootstrap code, which
1181 * will be done automatically by replacing our main() if we include SDL.h.
1183 #if defined(__APPLE__) && defined(CONFIG_SDL)
1184 #ifdef CONFIG_SDL_SDL_H
1185 #include <SDL/SDL.h>
1186 #else
1187 #include <SDL.h>
1188 #endif
1189 #endif
1192 * \brief append a formatted string
1193 * \param buf buffer to print into
1194 * \param pos position of terminating 0 in buf
1195 * \param len maximum number of characters in buf, not including terminating 0
1196 * \param format printf format string
1198 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
1200 va_list va;
1201 va_start(va, format);
1202 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
1203 va_end(va);
1204 if (*pos >= len ) {
1205 buf[len] = 0;
1206 *pos = len;
1211 * \brief append time in the hh:mm:ss.f format
1212 * \param buf buffer to print into
1213 * \param pos position of terminating 0 in buf
1214 * \param len maximum number of characters in buf, not including terminating 0
1215 * \param time time value to convert/append
1217 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
1218 long tenths = 10 * time;
1219 int f1 = tenths % 10;
1220 int ss = (tenths / 10) % 60;
1221 int mm = (tenths / 600) % 60;
1222 int hh = tenths / 36000;
1223 if (time <= 0) {
1224 saddf(buf, pos, len, "unknown");
1225 return;
1227 if (hh > 0)
1228 saddf(buf, pos, len, "%2d:", hh);
1229 if (hh > 0 || mm > 0)
1230 saddf(buf, pos, len, "%02d:", mm);
1231 saddf(buf, pos, len, "%02d.%1d", ss, f1);
1235 * \brief print the status line
1236 * \param a_pos audio position
1237 * \param a_v A-V desynchronization
1238 * \param corr amount out A-V synchronization
1240 static void print_status(float a_pos, float a_v, float corr)
1242 sh_video_t * const sh_video = mpctx->sh_video;
1243 int width;
1244 char *line;
1245 unsigned pos = 0;
1246 get_screen_size();
1247 if (screen_width > 0)
1248 width = screen_width;
1249 else
1250 width = 80;
1251 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1252 /* Windows command line is broken (MinGW's rxvt works, but we
1253 * should not depend on that). */
1254 width--;
1255 #endif
1256 line = malloc(width + 1); // one additional char for the terminating null
1258 // Audio time
1259 if (mpctx->sh_audio) {
1260 saddf(line, &pos, width, "A:%6.1f ", a_pos);
1261 if (!sh_video) {
1262 float len = demuxer_get_time_length(mpctx->demuxer);
1263 saddf(line, &pos, width, "(");
1264 sadd_hhmmssf(line, &pos, width, a_pos);
1265 saddf(line, &pos, width, ") of %.1f (", len);
1266 sadd_hhmmssf(line, &pos, width, len);
1267 saddf(line, &pos, width, ") ");
1271 // Video time
1272 if (sh_video)
1273 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
1275 // A-V sync
1276 if (mpctx->sh_audio && sh_video)
1277 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ", a_v, corr);
1279 // Video stats
1280 if (sh_video)
1281 saddf(line, &pos, width, "%3d/%3d ",
1282 (int)sh_video->num_frames,
1283 (int)sh_video->num_frames_decoded);
1285 // CPU usage
1286 if (sh_video) {
1287 if (sh_video->timer > 0.5)
1288 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
1289 (int)(100.0*video_time_usage*playback_speed/(double)sh_video->timer),
1290 (int)(100.0*vout_time_usage*playback_speed/(double)sh_video->timer),
1291 (100.0*audio_time_usage*playback_speed/(double)sh_video->timer));
1292 else
1293 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
1294 } else if (mpctx->sh_audio) {
1295 if (mpctx->delay > 0.5)
1296 saddf(line, &pos, width, "%4.1f%% ",
1297 100.0*audio_time_usage/(double)mpctx->delay);
1298 else
1299 saddf(line, &pos, width, "??,?%% ");
1302 // VO stats
1303 if (sh_video)
1304 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
1306 #ifdef CONFIG_STREAM_CACHE
1307 // cache stats
1308 if (stream_cache_size > 0)
1309 saddf(line, &pos, width, "%d%% ", cache_fill_status);
1310 #endif
1312 // other
1313 if (playback_speed != 1)
1314 saddf(line, &pos, width, "%4.2fx ", playback_speed);
1316 // end
1317 if (erase_to_end_of_line) {
1318 line[pos] = 0;
1319 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
1320 } else {
1321 memset(&line[pos], ' ', width - pos);
1322 line[width] = 0;
1323 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
1325 free(line);
1329 * \brief build a chain of audio filters that converts the input format
1330 * to the ao's format, taking into account the current playback_speed.
1331 * \param sh_audio describes the requested input format of the chain.
1332 * \param ao_data describes the requested output format of the chain.
1334 int build_afilter_chain(sh_audio_t *sh_audio, ao_data_t *ao_data)
1336 int new_srate;
1337 int result;
1338 if (!sh_audio)
1340 #ifdef CONFIG_GUI
1341 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
1342 #endif
1343 mpctx->mixer.afilter = NULL;
1344 return 0;
1346 if(af_control_any_rev(sh_audio->afilter,
1347 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET,
1348 &playback_speed)) {
1349 new_srate = sh_audio->samplerate;
1350 } else {
1351 new_srate = sh_audio->samplerate * playback_speed;
1352 if (new_srate != ao_data->samplerate) {
1353 // limits are taken from libaf/af_resample.c
1354 if (new_srate < 8000)
1355 new_srate = 8000;
1356 if (new_srate > 192000)
1357 new_srate = 192000;
1358 playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1361 result = init_audio_filters(sh_audio, new_srate,
1362 &ao_data->samplerate, &ao_data->channels, &ao_data->format);
1363 mpctx->mixer.afilter = sh_audio->afilter;
1364 #ifdef CONFIG_GUI
1365 if (use_gui) guiGetEvent(guiSetAfilter, (char *)sh_audio->afilter);
1366 #endif
1367 return result;
1371 typedef struct mp_osd_msg mp_osd_msg_t;
1372 struct mp_osd_msg {
1373 /// Previous message on the stack.
1374 mp_osd_msg_t* prev;
1375 /// Message text.
1376 char msg[128];
1377 int id,level,started;
1378 /// Display duration in ms.
1379 unsigned time;
1382 /// OSD message stack.
1383 static mp_osd_msg_t* osd_msg_stack = NULL;
1386 * \brief Add a message on the OSD message stack
1388 * If a message with the same id is already present in the stack
1389 * it is pulled on top of the stack, otherwise a new message is created.
1393 void set_osd_msg(int id, int level, int time, const char* fmt, ...) {
1394 mp_osd_msg_t *msg,*last=NULL;
1395 va_list va;
1396 int r;
1398 // look if the id is already in the stack
1399 for(msg = osd_msg_stack ; msg && msg->id != id ;
1400 last = msg, msg = msg->prev);
1401 // not found: alloc it
1402 if(!msg) {
1403 msg = calloc(1,sizeof(mp_osd_msg_t));
1404 msg->prev = osd_msg_stack;
1405 osd_msg_stack = msg;
1406 } else if(last) { // found, but it's not on top of the stack
1407 last->prev = msg->prev;
1408 msg->prev = osd_msg_stack;
1409 osd_msg_stack = msg;
1411 // write the msg
1412 va_start(va,fmt);
1413 r = vsnprintf(msg->msg, 128, fmt, va);
1414 va_end(va);
1415 if(r >= 128) msg->msg[127] = 0;
1416 // set id and time
1417 msg->id = id;
1418 msg->level = level;
1419 msg->time = time;
1424 * \brief Remove a message from the OSD stack
1426 * This function can be used to get rid of a message right away.
1430 void rm_osd_msg(int id) {
1431 mp_osd_msg_t *msg,*last=NULL;
1433 // Search for the msg
1434 for(msg = osd_msg_stack ; msg && msg->id != id ;
1435 last = msg, msg = msg->prev);
1436 if(!msg) return;
1438 // Detach it from the stack and free it
1439 if(last)
1440 last->prev = msg->prev;
1441 else
1442 osd_msg_stack = msg->prev;
1443 free(msg);
1447 * \brief Remove all messages from the OSD stack
1451 static void clear_osd_msgs(void) {
1452 mp_osd_msg_t* msg = osd_msg_stack, *prev = NULL;
1453 while(msg) {
1454 prev = msg->prev;
1455 free(msg);
1456 msg = prev;
1458 osd_msg_stack = NULL;
1462 * \brief Get the current message from the OSD stack.
1464 * This function decrements the message timer and destroys the old ones.
1465 * The message that should be displayed is returned (if any).
1469 static mp_osd_msg_t* get_osd_msg(void) {
1470 mp_osd_msg_t *msg,*prev,*last = NULL;
1471 static unsigned last_update = 0;
1472 unsigned now = GetTimerMS();
1473 unsigned diff;
1474 char hidden_dec_done = 0;
1476 if (osd_visible) {
1477 // 36000000 means max timed visibility is 1 hour into the future, if
1478 // the difference is greater assume it's wrapped around from below 0
1479 if (osd_visible - now > 36000000) {
1480 osd_visible = 0;
1481 vo_osd_progbar_type = -1; // disable
1482 vo_osd_changed(OSDTYPE_PROGBAR);
1483 if (mpctx->osd_function != OSD_PAUSE)
1484 mpctx->osd_function = OSD_PLAY;
1488 if(!last_update) last_update = now;
1489 diff = now >= last_update ? now - last_update : 0;
1491 last_update = now;
1493 // Look for the first message in the stack with high enough level.
1494 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1495 prev = msg->prev;
1496 if(msg->level > osd_level && hidden_dec_done) continue;
1497 // The message has a high enough level or it is the first hidden one
1498 // in both cases we decrement the timer or kill it.
1499 if(!msg->started || msg->time > diff) {
1500 if(msg->started) msg->time -= diff;
1501 else msg->started = 1;
1502 // display it
1503 if(msg->level <= osd_level) return msg;
1504 hidden_dec_done = 1;
1505 continue;
1507 // kill the message
1508 free(msg);
1509 if(last) {
1510 last->prev = prev;
1511 msg = last;
1512 } else {
1513 osd_msg_stack = prev;
1514 msg = NULL;
1517 // Nothing found
1518 return NULL;
1522 * \brief Display the OSD bar.
1524 * Display the OSD bar or fall back on a simple message.
1528 void set_osd_bar(int type,const char* name,double min,double max,double val) {
1530 if(osd_level < 1) return;
1532 if(mpctx->sh_video) {
1533 osd_visible = (GetTimerMS() + 1000) | 1;
1534 vo_osd_progbar_type = type;
1535 vo_osd_progbar_value = 256*(val-min)/(max-min);
1536 vo_osd_changed(OSDTYPE_PROGBAR);
1537 return;
1540 set_osd_msg(OSD_MSG_BAR,1,osd_duration,"%s: %d %%",
1541 name,ROUND(100*(val-min)/(max-min)));
1545 * \brief Display text subtitles on the OSD
1547 void set_osd_subtitle(subtitle *subs) {
1548 int i;
1549 vo_sub = subs;
1550 vo_osd_changed(OSDTYPE_SUBTITLE);
1551 if (!mpctx->sh_video) {
1552 // reverse order, since newest set_osd_msg is displayed first
1553 for (i = SUB_MAX_TEXT - 1; i >= 0; i--) {
1554 if (!subs || i >= subs->lines || !subs->text[i])
1555 rm_osd_msg(OSD_MSG_SUB_BASE + i);
1556 else {
1557 // HACK: currently display time for each sub line except the last is set to 2 seconds.
1558 int display_time = i == subs->lines - 1 ? 180000 : 2000;
1559 set_osd_msg(OSD_MSG_SUB_BASE + i, 1, display_time, "%s", subs->text[i]);
1566 * \brief Update the OSD message line.
1568 * This function displays the current message on the vo OSD or on the term.
1569 * If the stack is empty and the OSD level is high enough the timer
1570 * is displayed (only on the vo OSD).
1574 static void update_osd_msg(void) {
1575 mp_osd_msg_t *msg;
1576 static char osd_text[128] = "";
1577 static char osd_text_timer[128];
1579 // we need some mem for vo_osd_text
1580 vo_osd_text = (unsigned char*)osd_text;
1582 // Look if we have a msg
1583 if((msg = get_osd_msg())) {
1584 if(strcmp(osd_text,msg->msg)) {
1585 strncpy((char*)osd_text, msg->msg, 127);
1586 if(mpctx->sh_video) vo_osd_changed(OSDTYPE_OSD); else
1587 if(term_osd) mp_msg(MSGT_CPLAYER,MSGL_STATUS,"%s%s\n",term_osd_esc,msg->msg);
1589 return;
1592 if(mpctx->sh_video) {
1593 // fallback on the timer
1594 if(osd_level>=2) {
1595 int len = demuxer_get_time_length(mpctx->demuxer);
1596 int percentage = -1;
1597 char percentage_text[10];
1598 int pts = demuxer_get_current_time(mpctx->demuxer);
1600 if (mpctx->osd_show_percentage)
1601 percentage = demuxer_get_percent_pos(mpctx->demuxer);
1603 if (percentage >= 0)
1604 snprintf(percentage_text, 9, " (%d%%)", percentage);
1605 else
1606 percentage_text[0] = 0;
1608 if (osd_level == 3)
1609 snprintf(osd_text_timer, 63,
1610 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1611 mpctx->osd_function,pts/3600,(pts/60)%60,pts%60,
1612 len/3600,(len/60)%60,len%60,percentage_text);
1613 else
1614 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1615 mpctx->osd_function,pts/3600,(pts/60)%60,
1616 pts%60,percentage_text);
1617 } else
1618 osd_text_timer[0]=0;
1620 // always decrement the percentage timer
1621 if(mpctx->osd_show_percentage)
1622 mpctx->osd_show_percentage--;
1624 if(strcmp(osd_text,osd_text_timer)) {
1625 strncpy(osd_text, osd_text_timer, 63);
1626 vo_osd_changed(OSDTYPE_OSD);
1628 return;
1631 // Clear the term osd line
1632 if(term_osd && osd_text[0]) {
1633 osd_text[0] = 0;
1634 printf("%s\n",term_osd_esc);
1638 ///@}
1639 // OSDMsgStack
1642 void reinit_audio_chain(void) {
1643 if (!mpctx->sh_audio)
1644 return;
1645 current_module="init_audio_codec";
1646 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1647 if(!init_best_audio_codec(mpctx->sh_audio,audio_codec_list,audio_fm_list)){
1648 goto init_error;
1650 initialized_flags|=INITIALIZED_ACODEC;
1651 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1654 current_module="af_preinit";
1655 ao_data.samplerate=force_srate;
1656 ao_data.channels=0;
1657 ao_data.format=audio_output_format;
1658 #if 1
1659 // first init to detect best values
1660 if(!init_audio_filters(mpctx->sh_audio, // preliminary init
1661 // input:
1662 mpctx->sh_audio->samplerate,
1663 // output:
1664 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
1665 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_AudioFilterChainPreinitError);
1666 exit_player(EXIT_ERROR);
1668 #endif
1669 current_module="ao2_init";
1670 mpctx->audio_out = init_best_audio_out(audio_driver_list,
1671 0, // plugin flag
1672 ao_data.samplerate,
1673 ao_data.channels,
1674 ao_data.format, 0);
1675 if(!mpctx->audio_out){
1676 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
1677 goto init_error;
1679 initialized_flags|=INITIALIZED_AO;
1680 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bytes per sample)\n",
1681 mpctx->audio_out->info->short_name,
1682 ao_data.samplerate, ao_data.channels,
1683 af_fmt2str_short(ao_data.format),
1684 af_fmt2bits(ao_data.format)/8 );
1685 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n",
1686 mpctx->audio_out->info->name, mpctx->audio_out->info->author);
1687 if(strlen(mpctx->audio_out->info->comment) > 0)
1688 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", mpctx->audio_out->info->comment);
1689 // init audio filters:
1690 #if 1
1691 current_module="af_init";
1692 if(!build_afilter_chain(mpctx->sh_audio, &ao_data)) {
1693 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_NoMatchingFilter);
1694 goto init_error;
1696 #endif
1697 mpctx->mixer.audio_out = mpctx->audio_out;
1698 mpctx->mixer.volstep = volstep;
1699 return;
1701 init_error:
1702 uninit_player(INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO
1703 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1704 mpctx->d_audio->id = -2;
1708 ///@}
1709 // Command2Property
1712 // Return pts value corresponding to the end point of audio written to the
1713 // ao so far.
1714 static double written_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio)
1716 double buffered_output;
1717 // first calculate the end pts of audio that has been output by decoder
1718 double a_pts = sh_audio->pts;
1719 if (a_pts != MP_NOPTS_VALUE)
1720 // Good, decoder supports new way of calculating audio pts.
1721 // sh_audio->pts is the timestamp of the latest input packet with
1722 // known pts that the decoder has decoded. sh_audio->pts_bytes is
1723 // the amount of bytes the decoder has written after that timestamp.
1724 a_pts += sh_audio->pts_bytes / (double) sh_audio->o_bps;
1725 else {
1726 // Decoder doesn't support new way of calculating pts (or we're
1727 // being called before it has decoded anything with known timestamp).
1728 // Use the old method of audio pts calculation: take the timestamp
1729 // of last packet with known pts the decoder has read data from,
1730 // and add amount of bytes read after the beginning of that packet
1731 // divided by input bps. This will be inaccurate if the input/output
1732 // ratio is not constant for every audio packet or if it is constant
1733 // but not accurately known in sh_audio->i_bps.
1735 a_pts = d_audio->pts;
1736 // ds_tell_pts returns bytes read after last timestamp from
1737 // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes
1738 // it has read but not decoded
1739 if (sh_audio->i_bps)
1740 a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) /
1741 (double)sh_audio->i_bps;
1743 // Now a_pts hopefully holds the pts for end of audio from decoder.
1744 // Substract data in buffers between decoder and audio out.
1746 // Decoded but not filtered
1747 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps;
1749 // Data buffered in audio filters, measured in bytes of "missing" output
1750 buffered_output = af_calc_delay(sh_audio->afilter);
1752 // Data that was ready for ao but was buffered because ao didn't fully
1753 // accept everything to internal buffers yet
1754 buffered_output += sh_audio->a_out_buffer_len;
1756 // Filters divide audio length by playback_speed, so multiply by it
1757 // to get the length in original units without speedup or slowdown
1758 a_pts -= buffered_output * playback_speed / ao_data.bps;
1760 return a_pts;
1763 // Return pts value corresponding to currently playing audio.
1764 double playing_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio,
1765 const ao_functions_t *audio_out)
1767 return written_audio_pts(sh_audio, d_audio) - playback_speed *
1768 audio_out->get_delay();
1771 static int check_framedrop(double frame_time) {
1772 // check for frame-drop:
1773 current_module = "check_framedrop";
1774 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
1775 static int dropped_frames;
1776 float delay = playback_speed*mpctx->audio_out->get_delay();
1777 float d = delay-mpctx->delay;
1778 ++total_frame_cnt;
1779 // we should avoid dropping too many frames in sequence unless we
1780 // are too late. and we allow 100ms A-V delay here:
1781 if (d < -dropped_frames*frame_time-0.100 &&
1782 mpctx->osd_function != OSD_PAUSE) {
1783 ++drop_frame_cnt;
1784 ++dropped_frames;
1785 return frame_dropping;
1786 } else
1787 dropped_frames = 0;
1789 return 0;
1792 static int generate_video_frame(sh_video_t *sh_video, demux_stream_t *d_video)
1794 unsigned char *start;
1795 int in_size;
1796 int hit_eof=0;
1797 double pts;
1799 while (1) {
1800 int drop_frame = check_framedrop(sh_video->frametime);
1801 void *decoded_frame;
1802 current_module = "decode video";
1803 // XXX Time used in this call is not counted in any performance
1804 // timer now, OSD is not updated correctly for filter-added frames
1805 if (vf_output_queued_frame(sh_video->vfilter))
1806 break;
1807 current_module = "video_read_frame";
1808 in_size = ds_get_packet_pts(d_video, &start, &pts);
1809 if (in_size < 0) {
1810 // try to extract last frames in case of decoder lag
1811 in_size = 0;
1812 pts = 1e300;
1813 hit_eof = 1;
1815 if (in_size > max_framesize)
1816 max_framesize = in_size;
1817 current_module = "decode video";
1818 decoded_frame = decode_video(sh_video, start, in_size, drop_frame, pts);
1819 if (decoded_frame) {
1820 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0);
1821 update_teletext(sh_video, mpctx->demuxer, 0);
1822 update_osd_msg();
1823 current_module = "filter video";
1824 if (filter_video(sh_video, decoded_frame, sh_video->pts))
1825 break;
1826 } else if (drop_frame)
1827 return -1;
1828 if (hit_eof)
1829 return 0;
1831 return 1;
1834 #ifdef HAVE_RTC
1835 int rtc_fd = -1;
1836 #endif
1838 static float timing_sleep(float time_frame)
1840 #ifdef HAVE_RTC
1841 if (rtc_fd >= 0){
1842 // -------- RTC -----------
1843 current_module="sleep_rtc";
1844 while (time_frame > 0.000) {
1845 unsigned long rtc_ts;
1846 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
1847 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno));
1848 time_frame -= GetRelativeTime();
1850 } else
1851 #endif
1853 // assume kernel HZ=100 for softsleep, works with larger HZ but with
1854 // unnecessarily high CPU usage
1855 float margin = softsleep ? 0.011 : 0;
1856 current_module = "sleep_timer";
1857 while (time_frame > margin) {
1858 usec_sleep(1000000 * (time_frame - margin));
1859 time_frame -= GetRelativeTime();
1861 if (softsleep){
1862 current_module = "sleep_soft";
1863 if (time_frame < 0)
1864 mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow);
1865 while (time_frame > 0)
1866 time_frame-=GetRelativeTime(); // burn the CPU
1869 return time_frame;
1872 static void select_subtitle(MPContext *mpctx) {
1873 // find the best sub to use
1874 int vobsub_index_id = vobsub_get_index_by_id(vo_vobsub, vobsub_id);
1875 mpctx->global_sub_pos = -1; // no subs by default
1876 if (vobsub_index_id >= 0) {
1877 // if user asks for a vobsub id, use that first.
1878 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] + vobsub_index_id;
1879 } else if (dvdsub_id >= 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1880 // if user asks for a dvd sub id, use that next.
1881 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
1882 } else if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] >= 0) {
1883 // if there are text subs to use, use those. (autosubs come last here)
1884 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_SUBS];
1885 } else if (dvdsub_id == -1 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1886 // finally select subs by language and container hints
1887 if (dvdsub_id == -1 && dvdsub_lang)
1888 dvdsub_id = demuxer_sub_track_by_lang(mpctx->demuxer, dvdsub_lang);
1889 if (dvdsub_id == -1)
1890 dvdsub_id = demuxer_default_sub_track(mpctx->demuxer);
1891 if (dvdsub_id >= 0)
1892 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
1894 // rather than duplicate code, use the SUB_SELECT handler to init the right one.
1895 mpctx->global_sub_pos--;
1896 mp_property_do("sub",M_PROPERTY_STEP_UP,NULL, mpctx);
1899 #ifdef CONFIG_DVDNAV
1900 #ifndef FF_B_TYPE
1901 #define FF_B_TYPE 3
1902 #endif
1903 /// store decoded video image
1904 static mp_image_t * mp_dvdnav_copy_mpi(mp_image_t *to_mpi,
1905 mp_image_t *from_mpi) {
1906 mp_image_t *mpi;
1908 /// Do not store B-frames
1909 if (from_mpi->pict_type == FF_B_TYPE)
1910 return to_mpi;
1912 if (to_mpi &&
1913 to_mpi->w == from_mpi->w &&
1914 to_mpi->h == from_mpi->h &&
1915 to_mpi->imgfmt == from_mpi->imgfmt)
1916 mpi = to_mpi;
1917 else {
1918 if (to_mpi)
1919 free_mp_image(to_mpi);
1920 if (from_mpi->w == 0 || from_mpi->h == 0)
1921 return NULL;
1922 mpi = alloc_mpi(from_mpi->w,from_mpi->h,from_mpi->imgfmt);
1925 copy_mpi(mpi,from_mpi);
1926 return mpi;
1929 static void mp_dvdnav_reset_stream (MPContext *ctx) {
1930 if (ctx->sh_video) {
1931 /// clear video pts
1932 ctx->d_video->pts = 0.0f;
1933 ctx->sh_video->pts = 0.0f;
1934 ctx->sh_video->i_pts = 0.0f;
1935 ctx->sh_video->last_pts = 0.0f;
1936 ctx->sh_video->num_buffered_pts = 0;
1937 ctx->sh_video->num_frames = 0;
1938 ctx->sh_video->num_frames_decoded = 0;
1939 ctx->sh_video->timer = 0.0f;
1940 ctx->sh_video->stream_delay = 0.0f;
1941 ctx->sh_video->timer = 0;
1942 ctx->demuxer->stream_pts = MP_NOPTS_VALUE;
1945 if (ctx->sh_audio) {
1946 /// free audio packets and reset
1947 ds_free_packs(ctx->d_audio);
1948 audio_delay -= ctx->sh_audio->stream_delay;
1949 ctx->delay =- audio_delay;
1950 ctx->audio_out->reset();
1951 resync_audio_stream(ctx->sh_audio);
1954 audio_delay = 0.0f;
1955 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + mp_dvdnav_number_of_subs(mpctx->stream);
1956 if (dvdsub_lang && dvdsub_id == dvdsub_lang_id) {
1957 dvdsub_lang_id = mp_dvdnav_sid_from_lang(ctx->stream, dvdsub_lang);
1958 if (dvdsub_lang_id != dvdsub_id) {
1959 dvdsub_id = dvdsub_lang_id;
1960 select_subtitle(ctx);
1964 /// clear all EOF related flags
1965 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0;
1968 /// Restore last decoded DVDNAV (still frame)
1969 static mp_image_t *mp_dvdnav_restore_smpi(int *in_size,
1970 unsigned char **start,
1971 mp_image_t *decoded_frame)
1973 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
1974 return decoded_frame;
1976 /// a change occured in dvdnav stream
1977 if (mp_dvdnav_cell_has_changed(mpctx->stream,0)) {
1978 mp_dvdnav_read_wait(mpctx->stream, 1, 1);
1979 mp_dvdnav_context_free(mpctx);
1980 mp_dvdnav_reset_stream(mpctx);
1981 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
1982 mp_dvdnav_cell_has_changed(mpctx->stream,1);
1985 if (*in_size < 0) {
1986 float len;
1988 /// Display still frame, if any
1989 if (mpctx->nav_smpi && !mpctx->nav_buffer)
1990 decoded_frame = mpctx->nav_smpi;
1992 /// increment video frame : continue playing after still frame
1993 len = demuxer_get_time_length(mpctx->demuxer);
1994 if (mpctx->sh_video->pts >= len &&
1995 mpctx->sh_video->pts > 0.0 && len > 0.0) {
1996 mp_dvdnav_skip_still(mpctx->stream);
1997 mp_dvdnav_skip_wait(mpctx->stream);
1999 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps;
2001 if (mpctx->nav_buffer) {
2002 *start = mpctx->nav_start;
2003 *in_size = mpctx->nav_in_size;
2004 if (mpctx->nav_start)
2005 memcpy(*start,mpctx->nav_buffer,mpctx->nav_in_size);
2009 return decoded_frame;
2012 /// Save last decoded DVDNAV (still frame)
2013 static void mp_dvdnav_save_smpi(int in_size,
2014 unsigned char *start,
2015 mp_image_t *decoded_frame)
2017 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2018 return;
2020 if (mpctx->nav_buffer)
2021 free(mpctx->nav_buffer);
2023 mpctx->nav_buffer = malloc(in_size);
2024 mpctx->nav_start = start;
2025 mpctx->nav_in_size = mpctx->nav_buffer ? in_size : -1;
2026 if (mpctx->nav_buffer)
2027 memcpy(mpctx->nav_buffer,start,in_size);
2029 if (decoded_frame && mpctx->nav_smpi != decoded_frame)
2030 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi,decoded_frame);
2032 #endif /* CONFIG_DVDNAV */
2034 static void adjust_sync_and_print_status(int between_frames, float timing_error)
2036 current_module="av_sync";
2038 if(mpctx->sh_audio){
2039 double a_pts, v_pts;
2041 if (autosync)
2043 * If autosync is enabled, the value for delay must be calculated
2044 * a bit differently. It is set only to the difference between
2045 * the audio and video timers. Any attempt to include the real
2046 * or corrected delay causes the pts_correction code below to
2047 * try to correct for the changes in delay which autosync is
2048 * trying to measure. This keeps the two from competing, but still
2049 * allows the code to correct for PTS drift *only*. (Using a delay
2050 * value here, even a "corrected" one, would be incompatible with
2051 * autosync mode.)
2053 a_pts = written_audio_pts(mpctx->sh_audio, mpctx->d_audio) - mpctx->delay;
2054 else
2055 a_pts = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
2057 v_pts = mpctx->sh_video->pts;
2060 static int drop_message=0;
2061 double AV_delay = a_pts - audio_delay - v_pts;
2062 double x;
2063 if (AV_delay>0.5 && drop_frame_cnt>50 && drop_message==0){
2064 ++drop_message;
2065 mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
2067 if (autosync)
2068 x = AV_delay*0.1f;
2069 else
2070 /* Do not correct target time for the next frame if this frame
2071 * was late not because of wrong target time but because the
2072 * target time could not be met */
2073 x = (AV_delay + timing_error * playback_speed) * 0.1f;
2074 if (x < -max_pts_correction)
2075 x = -max_pts_correction;
2076 else if (x> max_pts_correction)
2077 x = max_pts_correction;
2078 if (default_max_pts_correction >= 0)
2079 max_pts_correction = default_max_pts_correction;
2080 else
2081 max_pts_correction = mpctx->sh_video->frametime*0.10; // +-10% of time
2082 if (!between_frames) {
2083 mpctx->delay+=x;
2084 c_total+=x;
2086 if(!quiet)
2087 print_status(a_pts - audio_delay, AV_delay, c_total);
2090 } else {
2091 // No audio:
2093 if (!quiet)
2094 print_status(0, 0, 0);
2098 static int fill_audio_out_buffers(void)
2100 unsigned int t;
2101 double tt;
2102 int playsize;
2103 int playflags=0;
2104 int audio_eof=0;
2105 int bytes_to_write;
2106 sh_audio_t * const sh_audio = mpctx->sh_audio;
2108 current_module="play_audio";
2110 while (1) {
2111 int sleep_time;
2112 // all the current uses of ao_data.pts seem to be in aos that handle
2113 // sync completely wrong; there should be no need to use ao_data.pts
2114 // in get_space()
2115 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2116 bytes_to_write = mpctx->audio_out->get_space();
2117 if (mpctx->sh_video || bytes_to_write >= ao_data.outburst)
2118 break;
2120 // handle audio-only case:
2121 // this is where mplayer sleeps during audio-only playback
2122 // to avoid 100% CPU use
2123 sleep_time = (ao_data.outburst - bytes_to_write) * 1000 / ao_data.bps;
2124 if (sleep_time < 10) sleep_time = 10; // limit to 100 wakeups per second
2125 usec_sleep(sleep_time * 1000);
2128 while (bytes_to_write) {
2129 playsize = bytes_to_write;
2130 if (playsize > MAX_OUTBURST)
2131 playsize = MAX_OUTBURST;
2132 bytes_to_write -= playsize;
2134 // Fill buffer if needed:
2135 current_module="decode_audio";
2136 t = GetTimer();
2137 if (decode_audio(sh_audio, playsize) < 0) // EOF or error
2138 if (mpctx->d_audio->eof) {
2139 audio_eof = 1;
2140 if (sh_audio->a_out_buffer_len == 0)
2141 return 0;
2143 t = GetTimer() - t;
2144 tt = t*0.000001f; audio_time_usage+=tt;
2145 if (playsize > sh_audio->a_out_buffer_len) {
2146 playsize = sh_audio->a_out_buffer_len;
2147 if (audio_eof)
2148 playflags |= AOPLAY_FINAL_CHUNK;
2150 if (!playsize)
2151 break;
2153 // play audio:
2154 current_module="play_audio";
2156 // Is this pts value actually useful for the aos that access it?
2157 // They're obviously badly broken in the way they handle av sync;
2158 // would not having access to this make them more broken?
2159 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2160 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags);
2162 if (playsize > 0) {
2163 sh_audio->a_out_buffer_len -= playsize;
2164 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize],
2165 sh_audio->a_out_buffer_len);
2166 mpctx->delay += playback_speed*playsize/(double)ao_data.bps;
2168 else if (audio_eof && mpctx->audio_out->get_delay() < .04) {
2169 // Sanity check to avoid hanging in case current ao doesn't output
2170 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK
2171 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n");
2172 sh_audio->a_out_buffer_len = 0;
2175 return 1;
2178 static int sleep_until_update(float *time_frame, float *aq_sleep_time)
2180 int frame_time_remaining = 0;
2181 current_module="calc_sleep_time";
2183 *time_frame -= GetRelativeTime(); // reset timer
2185 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
2186 float delay = mpctx->audio_out->get_delay();
2187 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay);
2189 if (autosync) {
2191 * Adjust this raw delay value by calculating the expected
2192 * delay for this frame and generating a new value which is
2193 * weighted between the two. The higher autosync is, the
2194 * closer to the delay value gets to that which "-nosound"
2195 * would have used, and the longer it will take for A/V
2196 * sync to settle at the right value (but it eventually will.)
2197 * This settling time is very short for values below 100.
2199 float predicted = mpctx->delay / playback_speed + *time_frame;
2200 float difference = delay - predicted;
2201 delay = predicted + difference / (float)autosync;
2204 *time_frame = delay - mpctx->delay / playback_speed;
2206 // delay = amount of audio buffered in soundcard/driver
2207 if (delay > 0.25) delay=0.25; else
2208 if (delay < 0.10) delay=0.10;
2209 if (*time_frame > delay*0.6) {
2210 // sleep time too big - may cause audio drops (buffer underrun)
2211 frame_time_remaining = 1;
2212 *time_frame = delay*0.5;
2214 } else {
2215 // If we're lagging more than 200 ms behind the right playback rate,
2216 // don't try to "catch up".
2217 // If benchmark is set always output frames as fast as possible
2218 // without sleeping.
2219 if (*time_frame < -0.2 || benchmark)
2220 *time_frame = 0;
2223 *aq_sleep_time += *time_frame;
2226 //============================== SLEEP: ===================================
2228 // flag 256 means: libvo driver does its timing (dvb card)
2229 if (*time_frame > 0.001 && !(vo_flags&256))
2230 *time_frame = timing_sleep(*time_frame);
2231 return frame_time_remaining;
2234 int reinit_video_chain(void) {
2235 sh_video_t * const sh_video = mpctx->sh_video;
2236 double ar=-1.0;
2237 //================== Init VIDEO (codec & libvo) ==========================
2238 if(!fixed_vo || !(initialized_flags&INITIALIZED_VO)){
2239 current_module="preinit_libvo";
2241 //shouldn't we set dvideo->id=-2 when we fail?
2242 vo_config_count=0;
2243 //if((mpctx->video_out->preinit(vo_subdevice))!=0){
2244 if(!(mpctx->video_out=init_best_video_out(video_driver_list))){
2245 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorInitializingVODevice);
2246 goto err_out;
2248 initialized_flags|=INITIALIZED_VO;
2251 if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
2252 mpctx->sh_video->stream_aspect = ar;
2253 current_module="init_video_filters";
2255 char* vf_arg[] = { "_oldargs_", (char*)mpctx->video_out , NULL };
2256 sh_video->vfilter=(void*)vf_open_filter(NULL,"vo",vf_arg);
2258 #ifdef CONFIG_MENU
2259 if(use_menu) {
2260 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2261 vf_menu = vf_open_plugin(libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2262 if(!vf_menu) {
2263 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantOpenLibmenuFilterWithThisRootMenu,menu_root);
2264 use_menu = 0;
2267 if(vf_menu)
2268 sh_video->vfilter=(void*)vf_menu;
2269 #endif
2271 #ifdef CONFIG_ASS
2272 if(ass_enabled) {
2273 int i;
2274 int insert = 1;
2275 if (vf_settings)
2276 for (i = 0; vf_settings[i].name; ++i)
2277 if (strcmp(vf_settings[i].name, "ass") == 0) {
2278 insert = 0;
2279 break;
2281 if (insert) {
2282 extern vf_info_t vf_info_ass;
2283 const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
2284 char* vf_arg[] = {"auto", "1", NULL};
2285 vf_instance_t* vf_ass = vf_open_plugin(libass_vfs,sh_video->vfilter,"ass",vf_arg);
2286 if (vf_ass)
2287 sh_video->vfilter=(void*)vf_ass;
2288 else
2289 mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
2292 #endif
2294 sh_video->vfilter=(void*)append_filters(sh_video->vfilter);
2296 #ifdef CONFIG_ASS
2297 if (ass_enabled)
2298 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter, VFCTRL_INIT_EOSD, ass_library);
2299 #endif
2301 current_module="init_video_codec";
2303 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2304 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2305 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2307 if(!sh_video->initialized){
2308 if(!fixed_vo) uninit_player(INITIALIZED_VO);
2309 goto err_out;
2312 initialized_flags|=INITIALIZED_VCODEC;
2314 if (sh_video->codec)
2315 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2317 sh_video->last_pts = MP_NOPTS_VALUE;
2318 sh_video->num_buffered_pts = 0;
2319 sh_video->next_frame_time = 0;
2321 if(auto_quality>0){
2322 // Auto quality option enabled
2323 output_quality=get_video_quality_max(sh_video);
2324 if(auto_quality>output_quality) auto_quality=output_quality;
2325 else output_quality=auto_quality;
2326 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2327 set_video_quality(sh_video,output_quality);
2330 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2332 current_module="init_vo";
2334 return 1;
2336 err_out:
2337 mpctx->sh_video = mpctx->d_video->sh = NULL;
2338 return 0;
2341 static double update_video(int *blit_frame)
2343 sh_video_t * const sh_video = mpctx->sh_video;
2344 //-------------------- Decode a frame: -----------------------
2345 double frame_time;
2346 *blit_frame = 0; // Don't blit if we hit EOF
2347 if (!correct_pts) {
2348 unsigned char* start=NULL;
2349 void *decoded_frame = NULL;
2350 int drop_frame=0;
2351 int in_size;
2353 current_module = "video_read_frame";
2354 frame_time = sh_video->next_frame_time;
2355 in_size = video_read_frame(sh_video, &sh_video->next_frame_time,
2356 &start, force_fps);
2357 #ifdef CONFIG_DVDNAV
2358 /// wait, still frame or EOF
2359 if (mpctx->stream->type == STREAMTYPE_DVDNAV && in_size < 0) {
2360 if (mp_dvdnav_is_eof(mpctx->stream)) return -1;
2361 if (mpctx->d_video) mpctx->d_video->eof = 0;
2362 if (mpctx->d_audio) mpctx->d_audio->eof = 0;
2363 mpctx->stream->eof = 0;
2364 } else
2365 #endif
2366 if (in_size < 0)
2367 return -1;
2368 if (in_size > max_framesize)
2369 max_framesize = in_size; // stats
2370 sh_video->timer += frame_time;
2371 if (mpctx->sh_audio)
2372 mpctx->delay -= frame_time;
2373 // video_read_frame can change fps (e.g. for ASF video)
2374 vo_fps = sh_video->fps;
2375 drop_frame = check_framedrop(frame_time);
2376 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0);
2377 update_teletext(sh_video, mpctx->demuxer, 0);
2378 update_osd_msg();
2379 current_module = "decode_video";
2380 #ifdef CONFIG_DVDNAV
2381 decoded_frame = mp_dvdnav_restore_smpi(&in_size,&start,decoded_frame);
2382 /// still frame has been reached, no need to decode
2383 if (in_size > 0 && !decoded_frame)
2384 #endif
2385 decoded_frame = decode_video(sh_video, start, in_size, drop_frame,
2386 sh_video->pts);
2387 #ifdef CONFIG_DVDNAV
2388 /// save back last still frame for future display
2389 mp_dvdnav_save_smpi(in_size,start,decoded_frame);
2390 #endif
2391 current_module = "filter_video";
2392 *blit_frame = (decoded_frame && filter_video(sh_video, decoded_frame,
2393 sh_video->pts));
2395 else {
2396 int res = generate_video_frame(sh_video, mpctx->d_video);
2397 if (!res)
2398 return -1;
2399 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter,
2400 VFCTRL_GET_PTS, &sh_video->pts);
2401 if (sh_video->pts == MP_NOPTS_VALUE) {
2402 mp_msg(MSGT_CPLAYER, MSGL_ERR, "pts after filters MISSING\n");
2403 sh_video->pts = sh_video->last_pts;
2405 if (sh_video->last_pts == MP_NOPTS_VALUE)
2406 sh_video->last_pts= sh_video->pts;
2407 else if (sh_video->last_pts > sh_video->pts) {
2408 sh_video->last_pts = sh_video->pts;
2409 mp_msg(MSGT_CPLAYER, MSGL_INFO, "pts value < previous\n");
2411 frame_time = sh_video->pts - sh_video->last_pts;
2412 sh_video->last_pts = sh_video->pts;
2413 sh_video->timer += frame_time;
2414 if(mpctx->sh_audio)
2415 mpctx->delay -= frame_time;
2416 *blit_frame = res > 0;
2418 return frame_time;
2421 static void pause_loop(void)
2423 mp_cmd_t* cmd;
2424 if (!quiet) {
2425 // Small hack to display the pause message on the OSD line.
2426 // The pause string is: "\n == PAUSE == \r" so we need to
2427 // take the first and the last char out
2428 if (term_osd && !mpctx->sh_video) {
2429 char msg[128] = MSGTR_Paused;
2430 int mlen = strlen(msg);
2431 msg[mlen-1] = '\0';
2432 set_osd_msg(OSD_MSG_PAUSE, 1, 0, "%s", msg+1);
2433 update_osd_msg();
2434 } else
2435 mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
2436 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n");
2438 #ifdef CONFIG_GUI
2439 if (use_gui)
2440 guiGetEvent(guiCEvent, (char *)guiSetPause);
2441 #endif
2442 if (mpctx->video_out && mpctx->sh_video && vo_config_count)
2443 mpctx->video_out->control(VOCTRL_PAUSE, NULL);
2445 if (mpctx->audio_out && mpctx->sh_audio)
2446 mpctx->audio_out->pause(); // pause audio, keep data if possible
2448 while ( (cmd = mp_input_get_cmd(20, 1, 1)) == NULL || cmd->pausing == 4) {
2449 if (cmd) {
2450 cmd = mp_input_get_cmd(0,1,0);
2451 run_command(mpctx, cmd);
2452 mp_cmd_free(cmd);
2453 continue;
2455 if (mpctx->sh_video && mpctx->video_out && vo_config_count)
2456 mpctx->video_out->check_events();
2457 #ifdef CONFIG_GUI
2458 if (use_gui) {
2459 guiEventHandling();
2460 guiGetEvent(guiReDraw, NULL);
2461 if (guiIntfStruct.Playing!=2 || (rel_seek_secs || abs_seek_pos))
2462 break;
2464 #endif
2465 #ifdef CONFIG_MENU
2466 if (vf_menu)
2467 vf_menu_pause_update(vf_menu);
2468 #endif
2469 usec_sleep(20000);
2471 if (cmd && cmd->id == MP_CMD_PAUSE) {
2472 cmd = mp_input_get_cmd(0,1,0);
2473 mp_cmd_free(cmd);
2475 mpctx->osd_function=OSD_PLAY;
2476 if (mpctx->audio_out && mpctx->sh_audio) {
2477 if (mpctx->eof) // do not play remaining audio if we e.g. switch to the next file
2478 mpctx->audio_out->reset();
2479 else
2480 mpctx->audio_out->resume(); // resume audio
2482 if (mpctx->video_out && mpctx->sh_video && vo_config_count)
2483 mpctx->video_out->control(VOCTRL_RESUME, NULL); // resume video
2484 (void)GetRelativeTime(); // ignore time that passed during pause
2485 #ifdef CONFIG_GUI
2486 if (use_gui) {
2487 if (guiIntfStruct.Playing == guiSetStop)
2488 mpctx->eof = 1;
2489 else
2490 guiGetEvent(guiCEvent, (char *)guiSetPlay);
2492 #endif
2496 // Find the right mute status and record position for new file position
2497 static void edl_seek_reset(MPContext *mpctx)
2499 mpctx->edl_muted = 0;
2500 next_edl_record = edl_records;
2502 while (next_edl_record) {
2503 if (next_edl_record->start_sec >= mpctx->sh_video->pts)
2504 break;
2506 if (next_edl_record->action == EDL_MUTE)
2507 mpctx->edl_muted = !mpctx->edl_muted;
2508 next_edl_record = next_edl_record->next;
2510 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2511 mixer_mute(&mpctx->mixer);
2515 // Execute EDL command for the current position if one exists
2516 static void edl_update(MPContext *mpctx)
2518 if (!next_edl_record)
2519 return;
2521 if (!mpctx->sh_video) {
2522 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlNOsh_video);
2523 free_edl(edl_records);
2524 next_edl_record = NULL;
2525 edl_records = NULL;
2526 return;
2529 if (mpctx->sh_video->pts >= next_edl_record->start_sec) {
2530 if (next_edl_record->action == EDL_SKIP) {
2531 mpctx->osd_function = OSD_FFW;
2532 abs_seek_pos = 0;
2533 rel_seek_secs = next_edl_record->length_sec;
2534 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop "
2535 "[%f], length [%f]\n", next_edl_record->start_sec,
2536 next_edl_record->stop_sec, next_edl_record->length_sec);
2537 edl_decision = 1;
2539 else if (next_edl_record->action == EDL_MUTE) {
2540 mpctx->edl_muted = !mpctx->edl_muted;
2541 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2542 mixer_mute(&mpctx->mixer);
2543 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n",
2544 next_edl_record->start_sec );
2546 next_edl_record = next_edl_record->next;
2551 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute
2552 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length
2553 // return -1 if seek failed (non-seekable stream?), 0 otherwise
2554 static int seek(MPContext *mpctx, double amount, int style)
2556 current_module = "seek";
2557 if (demux_seek(mpctx->demuxer, amount, audio_delay, style) == 0)
2558 return -1;
2560 mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY;
2561 if (mpctx->sh_video) {
2562 current_module = "seek_video_reset";
2563 if (vo_config_count)
2564 mpctx->video_out->control(VOCTRL_RESET, NULL);
2565 mpctx->num_buffered_frames = 0;
2566 mpctx->delay = 0;
2567 mpctx->time_frame = 0;
2568 // Not all demuxers set d_video->pts during seek, so this value
2569 // (which is used by at least vobsub and edl code below) may
2570 // be completely wrong (probably 0).
2571 mpctx->sh_video->pts = mpctx->d_video->pts;
2572 update_subtitles(mpctx->sh_video, mpctx->sh_video->pts, mpctx->d_sub, 1);
2573 update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
2576 if (mpctx->sh_audio) {
2577 current_module = "seek_audio_reset";
2578 mpctx->audio_out->reset(); // stop audio, throwing away buffered data
2579 if (!mpctx->sh_video)
2580 update_subtitles(NULL, mpctx->sh_audio->pts, mpctx->d_sub, 1);
2583 if (vo_vobsub && mpctx->sh_video) {
2584 current_module = "seek_vobsub_reset";
2585 vobsub_seek(vo_vobsub, mpctx->sh_video->pts);
2588 edl_seek_reset(mpctx);
2590 c_total = 0;
2591 max_pts_correction = 0.1;
2592 audio_time_usage = 0; video_time_usage = 0; vout_time_usage = 0;
2593 drop_frame_cnt = 0;
2595 current_module = NULL;
2596 return 0;
2599 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object
2600 * file for some tools to link against. */
2601 #ifndef DISABLE_MAIN
2602 int main(int argc,char* argv[]){
2605 char * mem_ptr;
2607 // movie info:
2609 /* Flag indicating whether MPlayer should exit without playing anything. */
2610 int opt_exit = 0;
2612 //float a_frame=0; // Audio
2614 int i;
2616 int gui_no_filename=0;
2618 InitTimer();
2619 srand(GetTimerMS());
2621 mp_msg_init();
2623 // Create the config context and register the options
2624 mconfig = m_config_new();
2625 m_config_register_options(mconfig,mplayer_opts);
2626 mp_input_register_options(mconfig);
2628 // Preparse the command line
2629 m_config_preparse_command_line(mconfig,argc,argv);
2631 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
2632 set_path_env();
2633 #endif
2635 #ifdef CONFIG_TV
2636 stream_tv_defaults.immediate = 1;
2637 #endif
2639 if (argc > 1 && argv[1] &&
2640 (!strcmp(argv[1], "-gui") || !strcmp(argv[1], "-nogui"))) {
2641 use_gui = !strcmp(argv[1], "-gui");
2642 } else
2643 if ( argv[0] )
2645 char *base = strrchr(argv[0], '/');
2646 if (!base)
2647 base = strrchr(argv[0], '\\');
2648 if (!base)
2649 base = argv[0];
2650 if(strstr(base, "gmplayer"))
2651 use_gui=1;
2654 parse_cfgfiles(mconfig);
2656 #ifdef CONFIG_GUI
2657 if ( use_gui ) cfg_read();
2658 #endif
2660 mpctx->playtree = m_config_parse_mp_command_line(mconfig, argc, argv);
2661 if(mpctx->playtree == NULL)
2662 opt_exit = 1;
2663 else {
2664 mpctx->playtree = play_tree_cleanup(mpctx->playtree);
2665 if(mpctx->playtree) {
2666 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mconfig);
2667 if(mpctx->playtree_iter) {
2668 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
2669 play_tree_iter_free(mpctx->playtree_iter);
2670 mpctx->playtree_iter = NULL;
2672 filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
2677 print_version("MPlayer");
2679 #if defined(__MINGW32__) || defined(__CYGWIN__)
2680 #ifdef CONFIG_GUI
2681 void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows");
2682 if(runningmplayer && filename && use_gui){
2683 COPYDATASTRUCT csData;
2684 char file[MAX_PATH];
2685 char *filepart = filename;
2686 if(GetFullPathName(filename, MAX_PATH, file, &filepart)){
2687 csData.dwData = 0;
2688 csData.cbData = strlen(file)*2;
2689 csData.lpData = file;
2690 SendMessage(runningmplayer, WM_COPYDATA, (WPARAM)runningmplayer, (LPARAM)&csData);
2693 #endif
2696 HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
2697 BOOL WINAPI (*setDEP)(DWORD) = NULL;
2698 if (kernel32)
2699 setDEP = GetProcAddress(kernel32, "SetProcessDEPPolicy");
2700 if (setDEP) setDEP(3);
2702 // stop Windows from showing all kinds of annoying error dialogs
2703 SetErrorMode(0x8003);
2704 // request 1ms timer resolution
2705 timeBeginPeriod(1);
2706 #endif
2708 #ifdef CONFIG_PRIORITY
2709 set_priority();
2710 #endif
2712 #ifndef CONFIG_GUI
2713 if(use_gui){
2714 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui);
2715 use_gui=0;
2717 #else
2718 #if !defined(__MINGW32__) && !defined(__CYGWIN__)
2719 if(use_gui && !vo_init()){
2720 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX);
2721 use_gui=0;
2723 #endif
2724 if (use_gui && mpctx->playtree_iter){
2725 char cwd[PATH_MAX+2];
2726 // Free Playtree and Playtree-Iter as it's not used by the GUI.
2727 play_tree_iter_free(mpctx->playtree_iter);
2728 mpctx->playtree_iter=NULL;
2730 if (getcwd(cwd, PATH_MAX) != (char *)NULL)
2732 strcat(cwd, "/");
2733 // Prefix relative paths with current working directory
2734 play_tree_add_bpf(mpctx->playtree, cwd);
2736 // Import initital playtree into GUI.
2737 import_initial_playtree_into_gui(mpctx->playtree, mconfig, enqueue);
2739 #endif /* CONFIG_GUI */
2741 if(video_driver_list && strcmp(video_driver_list[0],"help")==0){
2742 list_video_out();
2743 opt_exit = 1;
2746 if(audio_driver_list && strcmp(audio_driver_list[0],"help")==0){
2747 list_audio_out();
2748 opt_exit = 1;
2751 /* Check codecs.conf. */
2752 if(!codecs_file || !parse_codec_cfg(codecs_file)){
2753 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
2754 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
2755 if(!parse_codec_cfg(NULL)){
2756 exit_player_with_rc(EXIT_NONE, 0);
2758 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_BuiltinCodecsConf);
2761 free( mem_ptr ); // release the buffer created by get_path()
2764 #if 0
2765 if(video_codec_list){
2766 int i;
2767 video_codec=video_codec_list[0];
2768 for(i=0;video_codec_list[i];i++)
2769 mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]);
2771 #endif
2772 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
2773 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs);
2774 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n");
2775 list_codecs(1);
2776 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2777 opt_exit = 1;
2779 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
2780 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs);
2781 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n");
2782 list_codecs(0);
2783 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2784 opt_exit = 1;
2786 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
2787 vfm_help();
2788 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2789 opt_exit = 1;
2791 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
2792 afm_help();
2793 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2794 opt_exit = 1;
2796 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
2797 af_help();
2798 printf("\n");
2799 opt_exit = 1;
2801 #ifdef CONFIG_X11
2802 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
2803 fstype_help();
2804 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2805 opt_exit = 1;
2807 #endif
2808 if((demuxer_name && strcmp(demuxer_name,"help")==0) ||
2809 (audio_demuxer_name && strcmp(audio_demuxer_name,"help")==0) ||
2810 (sub_demuxer_name && strcmp(sub_demuxer_name,"help")==0)){
2811 demuxer_help();
2812 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2813 opt_exit = 1;
2815 if(list_properties) {
2816 property_print_help();
2817 opt_exit = 1;
2820 if(opt_exit)
2821 exit_player(EXIT_NONE);
2823 if (player_idle_mode && use_gui) {
2824 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NoIdleAndGui);
2825 exit_player_with_rc(EXIT_NONE, 1);
2828 if(!filename && !player_idle_mode){
2829 if(!use_gui){
2830 // no file/vcd/dvd -> show HELP:
2831 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text);
2832 exit_player_with_rc(EXIT_NONE, 0);
2833 } else gui_no_filename=1;
2836 /* Display what configure line was used */
2837 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
2839 // Many users forget to include command line in bugreports...
2840 if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
2841 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
2842 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
2843 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2846 //------ load global data first ------
2848 // check font
2849 #ifdef CONFIG_FREETYPE
2850 init_freetype();
2851 #endif
2852 #ifdef CONFIG_FONTCONFIG
2853 if(font_fontconfig <= 0)
2855 #endif
2856 #ifdef CONFIG_BITMAP_FONT
2857 if(font_name){
2858 vo_font=read_font_desc(font_name,font_factor,verbose>1);
2859 if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,
2860 filename_recode(font_name));
2861 } else {
2862 // try default:
2863 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
2864 free(mem_ptr); // release the buffer created by get_path()
2865 if(!vo_font)
2866 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
2868 if (sub_font_name)
2869 sub_font = read_font_desc(sub_font_name, font_factor, verbose>1);
2870 else
2871 sub_font = vo_font;
2872 #endif
2873 #ifdef CONFIG_FONTCONFIG
2875 #endif
2877 vo_init_osd();
2879 #ifdef CONFIG_ASS
2880 ass_library = ass_init();
2881 #endif
2883 #ifdef HAVE_RTC
2884 if(!nortc)
2886 // seteuid(0); /* Can't hurt to try to get root here */
2887 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
2888 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_RTCDeviceNotOpenable,
2889 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
2890 else {
2891 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
2893 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
2894 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno));
2895 mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp);
2896 close (rtc_fd);
2897 rtc_fd = -1;
2898 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
2899 /* variable only by the root */
2900 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno));
2901 close (rtc_fd);
2902 rtc_fd = -1;
2903 } else
2904 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_UsingRTCTiming, irqp);
2907 #ifdef CONFIG_GUI
2908 // breaks DGA and SVGAlib and VESA drivers: --A'rpi
2909 // and now ? -- Pontscho
2910 if(use_gui) setuid( getuid() ); // strongly test, please check this.
2911 #endif
2912 if(rtc_fd<0)
2913 #endif /* HAVE_RTC */
2914 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
2915 softsleep?"software":timer_name);
2917 #ifdef HAVE_TERMCAP
2918 if ( !use_gui ) load_termcap(NULL); // load key-codes
2919 #endif
2921 // ========== Init keyboard FIFO (connection to libvo) ============
2923 // Init input system
2924 current_module = "init_input";
2925 mp_input_init(use_gui);
2926 mp_input_add_key_fd(-1,0,mplayer_get_key,NULL);
2927 if(slave_mode)
2928 mp_input_add_cmd_fd(0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);
2929 else if(!noconsolecontrols)
2930 mp_input_add_event_fd(0, getch2);
2931 // Set the libstream interrupt callback
2932 stream_set_interrupt_callback(mp_input_check_interrupt);
2934 #ifdef CONFIG_MENU
2935 if(use_menu) {
2936 if(menu_cfg && menu_init(mpctx, menu_cfg))
2937 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
2938 else {
2939 menu_cfg = get_path("menu.conf");
2940 if(menu_init(mpctx, menu_cfg))
2941 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
2942 else {
2943 if(menu_init(mpctx, MPLAYER_CONFDIR "/menu.conf"))
2944 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
2945 else {
2946 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_MenuInitFailed);
2947 use_menu = 0;
2952 #endif
2954 initialized_flags|=INITIALIZED_INPUT;
2955 current_module = NULL;
2957 /// Catch signals
2958 #ifndef __MINGW32__
2959 signal(SIGCHLD,child_sighandler);
2960 #endif
2962 #ifdef CONFIG_CRASH_DEBUG
2963 prog_path = argv[0];
2964 #endif
2965 //========= Catch terminate signals: ================
2966 // terminate requests:
2967 signal(SIGTERM,exit_sighandler); // kill
2968 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
2970 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
2972 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
2973 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
2974 #ifdef CONFIG_SIGHANDLER
2975 // fatal errors:
2976 signal(SIGBUS,exit_sighandler); // bus error
2977 signal(SIGSEGV,exit_sighandler); // segfault
2978 signal(SIGILL,exit_sighandler); // illegal instruction
2979 signal(SIGFPE,exit_sighandler); // floating point exc.
2980 signal(SIGABRT,exit_sighandler); // abort()
2981 #ifdef CONFIG_CRASH_DEBUG
2982 if (crash_debug)
2983 signal(SIGTRAP,exit_sighandler);
2984 #endif
2985 #endif
2987 #ifdef CONFIG_GUI
2988 if(use_gui){
2989 guiInit();
2990 guiGetEvent(guiSetContext, mpctx);
2991 initialized_flags|=INITIALIZED_GUI;
2992 guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) );
2994 #endif
2996 // ******************* Now, let's see the per-file stuff ********************
2998 play_next_file:
3000 // init global sub numbers
3001 mpctx->global_sub_size = 0;
3002 { int i; for (i = 0; i < SUB_SOURCES; i++) mpctx->global_sub_indices[i] = -1; }
3004 if (filename) {
3005 load_per_protocol_config (mconfig, filename);
3006 load_per_extension_config (mconfig, filename);
3007 load_per_file_config (mconfig, filename);
3010 if (video_driver_list)
3011 load_per_output_config (mconfig, PROFILE_CFG_VO, video_driver_list[0]);
3012 if (audio_driver_list)
3013 load_per_output_config (mconfig, PROFILE_CFG_AO, audio_driver_list[0]);
3015 // We must enable getch2 here to be able to interrupt network connection
3016 // or cache filling
3017 if(!noconsolecontrols && !slave_mode){
3018 if(initialized_flags&INITIALIZED_GETCH2)
3019 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_Getch2InitializedTwice);
3020 else
3021 getch2_enable(); // prepare stdin for hotkeys...
3022 initialized_flags|=INITIALIZED_GETCH2;
3023 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
3026 // =================== GUI idle loop (STOP state) ===========================
3027 #ifdef CONFIG_GUI
3028 if ( use_gui ) {
3029 mpctx->file_format=DEMUXER_TYPE_UNKNOWN;
3030 guiGetEvent( guiSetDefaults,0 );
3031 while ( guiIntfStruct.Playing != 1 )
3033 mp_cmd_t* cmd;
3034 usec_sleep(20000);
3035 guiEventHandling();
3036 guiGetEvent( guiReDraw,NULL );
3037 if ( (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3038 guiGetEvent(guiIEvent, (char *)cmd->id);
3039 mp_cmd_free(cmd);
3042 guiGetEvent( guiSetParameters,NULL );
3043 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM )
3045 play_tree_t * entry = play_tree_new();
3046 play_tree_add_file( entry,guiIntfStruct.Filename );
3047 if ( mpctx->playtree ) play_tree_free_list( mpctx->playtree->child,1 );
3048 else mpctx->playtree=play_tree_new();
3049 play_tree_set_child( mpctx->playtree,entry );
3050 if(mpctx->playtree)
3052 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mconfig);
3053 if(mpctx->playtree_iter)
3055 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY)
3057 play_tree_iter_free(mpctx->playtree_iter);
3058 mpctx->playtree_iter = NULL;
3060 filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
3065 #endif /* CONFIG_GUI */
3067 while (player_idle_mode && !filename) {
3068 play_tree_t * entry = NULL;
3069 mp_cmd_t * cmd;
3070 while (!(cmd = mp_input_get_cmd(0,1,0))) { // wait for command
3071 if (mpctx->video_out && vo_config_count) mpctx->video_out->check_events();
3072 usec_sleep(20000);
3074 switch (cmd->id) {
3075 case MP_CMD_LOADFILE:
3076 // prepare a tree entry with the new filename
3077 entry = play_tree_new();
3078 play_tree_add_file(entry, cmd->args[0].v.s);
3079 // The entry is added to the main playtree after the switch().
3080 break;
3081 case MP_CMD_LOADLIST:
3082 entry = parse_playlist_file(cmd->args[0].v.s);
3083 break;
3084 case MP_CMD_QUIT:
3085 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3086 break;
3087 case MP_CMD_GET_PROPERTY:
3088 case MP_CMD_SET_PROPERTY:
3089 case MP_CMD_STEP_PROPERTY:
3090 run_command(mpctx, cmd);
3091 break;
3094 mp_cmd_free(cmd);
3096 if (entry) { // user entered a command that gave a valid entry
3097 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it
3098 play_tree_free_list(mpctx->playtree->child, 1);
3099 else mpctx->playtree=play_tree_new(); // .. or make a brand new playtree
3101 if (!mpctx->playtree) continue; // couldn't make playtree! wait for next command
3103 play_tree_set_child(mpctx->playtree, entry);
3105 /* Make iterator start at the top the of tree. */
3106 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mconfig);
3107 if (!mpctx->playtree_iter) continue;
3109 // find the first real item in the tree
3110 if (play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3111 // no items!
3112 play_tree_iter_free(mpctx->playtree_iter);
3113 mpctx->playtree_iter = NULL;
3114 continue; // wait for next command
3116 filename = play_tree_iter_get_file(mpctx->playtree_iter, 1);
3119 //---------------------------------------------------------------------------
3121 if(filename) {
3122 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing,
3123 filename_recode(filename));
3124 if(use_filename_title && vo_wintitle == NULL)
3125 vo_wintitle = strdup ( mp_basename2 (filename));
3128 if (edl_filename) {
3129 if (edl_records) free_edl(edl_records);
3130 next_edl_record = edl_records = edl_parse_file();
3132 if (edl_output_filename) {
3133 if (edl_fd) fclose(edl_fd);
3134 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
3136 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlCantOpenForWrite,
3137 filename_recode(edl_output_filename));
3141 //==================== Open VOB-Sub ============================
3143 current_module="vobsub";
3144 if (vobsub_name){
3145 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
3146 if(vo_vobsub==NULL)
3147 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,
3148 filename_recode(vobsub_name));
3149 } else if (sub_auto && filename){
3150 /* try to autodetect vobsub from movie filename ::atmos */
3151 char *buf = strdup(filename), *psub;
3152 char *pdot = strrchr(buf, '.');
3153 char *pslash = strrchr(buf, '/');
3154 #if defined(__MINGW32__) || defined(__CYGWIN__)
3155 if (!pslash) pslash = strrchr(buf, '\\');
3156 #endif
3157 if (pdot && (!pslash || pdot > pslash))
3158 *pdot = '\0';
3159 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
3160 /* try from ~/.mplayer/sub */
3161 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
3162 char *bname;
3163 int l;
3164 bname = strrchr(buf,'/');
3165 #if defined(__MINGW32__) || defined(__CYGWIN__)
3166 if(!bname) bname = strrchr(buf,'\\');
3167 #endif
3168 if(bname) bname++;
3169 else bname = buf;
3170 l = strlen(psub) + strlen(bname) + 1;
3171 psub = realloc(psub,l);
3172 strcat(psub,bname);
3173 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
3174 free(psub);
3176 free(buf);
3178 if(vo_vobsub){
3179 initialized_flags|=INITIALIZED_VOBSUB;
3180 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
3181 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
3183 // setup global sub numbering
3184 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] = mpctx->global_sub_size; // the global # of the first vobsub.
3185 mpctx->global_sub_size += vobsub_get_indexes_count(vo_vobsub);
3188 //============ Open & Sync STREAM --- fork cache2 ====================
3190 mpctx->stream=NULL;
3191 mpctx->demuxer=NULL;
3192 if (mpctx->d_audio) {
3193 //free_demuxer_stream(mpctx->d_audio);
3194 mpctx->d_audio=NULL;
3196 if (mpctx->d_video) {
3197 //free_demuxer_stream(d_video);
3198 mpctx->d_video=NULL;
3200 mpctx->sh_audio=NULL;
3201 mpctx->sh_video=NULL;
3203 current_module="open_stream";
3204 mpctx->stream=open_stream(filename,0,&mpctx->file_format);
3205 if(!mpctx->stream) { // error...
3206 mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY);
3207 goto goto_next_file;
3209 initialized_flags|=INITIALIZED_STREAM;
3211 #ifdef CONFIG_GUI
3212 if ( use_gui ) guiGetEvent( guiSetStream,(char *)mpctx->stream );
3213 #endif
3215 if(mpctx->file_format == DEMUXER_TYPE_PLAYLIST) {
3216 play_tree_t* entry;
3217 // Handle playlist
3218 current_module="handle_playlist";
3219 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",
3220 filename_recode(filename));
3221 entry = parse_playtree(mpctx->stream,0);
3222 mpctx->eof=playtree_add_playlist(entry);
3223 goto goto_next_file;
3225 mpctx->stream->start_pos+=seek_to_byte;
3227 if(stream_dump_type==5){
3228 unsigned char buf[4096];
3229 int len;
3230 FILE *f;
3231 current_module="dumpstream";
3232 stream_reset(mpctx->stream);
3233 stream_seek(mpctx->stream,mpctx->stream->start_pos);
3234 f=fopen(stream_dump_name,"wb");
3235 if(!f){
3236 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3237 exit_player(EXIT_ERROR);
3239 if (dvd_chapter > 1) {
3240 int chapter = dvd_chapter - 1;
3241 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter);
3243 while(!mpctx->stream->eof && !async_quit_request){
3244 len=stream_read(mpctx->stream,buf,4096);
3245 if(len>0) {
3246 if(fwrite(buf,len,1,f) != 1) {
3247 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3248 exit_player(EXIT_ERROR);
3251 if(dvd_last_chapter > 0) {
3252 int chapter = -1;
3253 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER,
3254 &chapter) == STREAM_OK && chapter + 1 > dvd_last_chapter)
3255 break;
3258 if(fclose(f)) {
3259 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3260 exit_player(EXIT_ERROR);
3262 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3263 exit_player_with_rc(EXIT_EOF, 0);
3266 #ifdef CONFIG_DVDREAD
3267 if(mpctx->stream->type==STREAMTYPE_DVD){
3268 current_module="dvd lang->id";
3269 if(audio_id==-1) audio_id=dvd_aid_from_lang(mpctx->stream,audio_lang);
3270 if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvd_sid_from_lang(mpctx->stream,dvdsub_lang);
3271 // setup global sub numbering
3272 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3273 mpctx->global_sub_size += dvd_number_of_subs(mpctx->stream);
3274 current_module=NULL;
3276 #endif
3278 #ifdef CONFIG_DVDNAV
3279 if(mpctx->stream->type==STREAMTYPE_DVDNAV){
3280 current_module="dvdnav lang->id";
3281 if(audio_id==-1) audio_id=mp_dvdnav_aid_from_lang(mpctx->stream,audio_lang);
3282 dvdsub_lang_id = -3;
3283 if(dvdsub_lang && dvdsub_id==-1)
3284 dvdsub_lang_id=dvdsub_id=mp_dvdnav_sid_from_lang(mpctx->stream,dvdsub_lang);
3285 // setup global sub numbering
3286 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3287 mpctx->global_sub_size += mp_dvdnav_number_of_subs(mpctx->stream);
3288 current_module=NULL;
3290 #endif
3292 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
3293 goto_enable_cache:
3294 if(stream_cache_size>0){
3295 int res;
3296 current_module="enable_cache";
3297 res = stream_enable_cache(mpctx->stream,stream_cache_size*1024,
3298 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
3299 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0));
3300 if(res == 0)
3301 if((mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) goto goto_next_file;
3304 //============ Open DEMUXERS --- DETECT file type =======================
3305 current_module="demux_open";
3307 mpctx->demuxer=demux_open(mpctx->stream,mpctx->file_format,audio_id,video_id,dvdsub_id,filename);
3309 // HACK to get MOV Reference Files working
3311 if (mpctx->demuxer && mpctx->demuxer->type==DEMUXER_TYPE_PLAYLIST)
3313 unsigned char* playlist_entry;
3314 play_tree_t *list = NULL, *entry = NULL;
3316 current_module="handle_demux_playlist";
3317 while (ds_get_packet(mpctx->demuxer->video,&playlist_entry)>0)
3319 char *temp, *bname;
3321 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",
3322 filename_recode(playlist_entry));
3324 bname=mp_basename(playlist_entry);
3325 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
3326 continue;
3328 if (!strcmp(playlist_entry,filename)) // ignoring self-reference
3329 continue;
3331 entry = play_tree_new();
3333 if (filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
3335 temp=malloc((strlen(filename)-strlen(mp_basename(filename))+strlen(playlist_entry)+1));
3336 if (temp)
3338 strncpy(temp, filename, strlen(filename)-strlen(mp_basename(filename)));
3339 temp[strlen(filename)-strlen(mp_basename(filename))]='\0';
3340 strcat(temp, playlist_entry);
3341 if (!strcmp(temp, filename)) {
3342 free(temp);
3343 continue;
3345 play_tree_add_file(entry,temp);
3346 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
3347 free(temp);
3350 else
3351 play_tree_add_file(entry,playlist_entry);
3353 if(!list)
3354 list = entry;
3355 else
3356 play_tree_append_entry(list,entry);
3358 free_demuxer(mpctx->demuxer);
3359 mpctx->demuxer = NULL;
3361 if (list)
3363 entry = play_tree_new();
3364 play_tree_set_child(entry,list);
3365 mpctx->eof=playtree_add_playlist(entry);
3366 goto goto_next_file;
3370 if(!mpctx->demuxer)
3371 goto goto_next_file;
3372 if(dvd_chapter>1) {
3373 float pts;
3374 if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter-1, 1, &pts, NULL, NULL) >= 0 && pts > -1.0)
3375 seek(mpctx, pts, SEEK_ABSOLUTE);
3378 initialized_flags|=INITIALIZED_DEMUXER;
3380 if (mpctx->stream->type != STREAMTYPE_DVD && mpctx->stream->type != STREAMTYPE_DVDNAV) {
3381 int i;
3382 int maxid = -1;
3383 // setup global sub numbering
3384 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3385 for (i = 0; i < MAX_S_STREAMS; i++)
3386 if (mpctx->demuxer->s_streams[i])
3387 maxid = FFMAX(maxid, ((sh_sub_t *)mpctx->demuxer->s_streams[i])->sid);
3388 mpctx->global_sub_size += maxid + 1;
3390 // Make dvdsub_id always selectable if set.
3391 if (mpctx->global_sub_size <= mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id)
3392 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id + 1;
3394 #ifdef CONFIG_ASS
3395 if (ass_enabled && ass_library) {
3396 for (i = 0; i < mpctx->demuxer->num_attachments; ++i) {
3397 demux_attachment_t* att = mpctx->demuxer->attachments + i;
3398 if (extract_embedded_fonts &&
3399 att->name && att->type && att->data && att->data_size &&
3400 (strcmp(att->type, "application/x-truetype-font") == 0 ||
3401 strcmp(att->type, "application/x-font") == 0))
3402 ass_add_font(ass_library, att->name, att->data, att->data_size);
3405 #endif
3407 current_module="demux_open2";
3409 //file_format=demuxer->file_format;
3411 mpctx->d_audio=mpctx->demuxer->audio;
3412 mpctx->d_video=mpctx->demuxer->video;
3413 mpctx->d_sub=mpctx->demuxer->sub;
3415 if (ts_prog) {
3416 int tmp = ts_prog;
3417 mp_property_do("switch_program", M_PROPERTY_SET, &tmp, mpctx);
3419 // select audio stream
3420 select_audio(mpctx->demuxer, audio_id, audio_lang);
3422 // DUMP STREAMS:
3423 if((stream_dump_type)&&(stream_dump_type<4)){
3424 FILE *f;
3425 demux_stream_t *ds=NULL;
3426 current_module="dump";
3427 // select stream to dump
3428 switch(stream_dump_type){
3429 case 1: ds=mpctx->d_audio;break;
3430 case 2: ds=mpctx->d_video;break;
3431 case 3: ds=mpctx->d_sub;break;
3433 if(!ds){
3434 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedStreamMissing);
3435 exit_player(EXIT_ERROR);
3437 // disable other streams:
3438 if(mpctx->d_audio && mpctx->d_audio!=ds) {ds_free_packs(mpctx->d_audio); mpctx->d_audio->id=-2; }
3439 if(mpctx->d_video && mpctx->d_video!=ds) {ds_free_packs(mpctx->d_video); mpctx->d_video->id=-2; }
3440 if(mpctx->d_sub && mpctx->d_sub!=ds) {ds_free_packs(mpctx->d_sub); mpctx->d_sub->id=-2; }
3441 // let's dump it!
3442 f=fopen(stream_dump_name,"wb");
3443 if(!f){
3444 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3445 exit_player(EXIT_ERROR);
3447 while(!ds->eof){
3448 unsigned char* start;
3449 int in_size=ds_get_packet(ds,&start);
3450 if( (mpctx->demuxer->file_format==DEMUXER_TYPE_AVI || mpctx->demuxer->file_format==DEMUXER_TYPE_ASF || mpctx->demuxer->file_format==DEMUXER_TYPE_MOV)
3451 && stream_dump_type==2) fwrite(&in_size,1,4,f);
3452 if(in_size>0) fwrite(start,in_size,1,f);
3453 if(dvd_last_chapter>0) {
3454 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3455 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3456 break;
3459 fclose(f);
3460 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3461 exit_player_with_rc(EXIT_EOF, 0);
3464 mpctx->sh_audio=mpctx->d_audio->sh;
3465 mpctx->sh_video=mpctx->d_video->sh;
3467 if(mpctx->sh_video){
3469 current_module="video_read_properties";
3470 if(!video_read_properties(mpctx->sh_video)) {
3471 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
3472 mpctx->sh_video=mpctx->d_video->sh=NULL;
3473 } else {
3474 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_FilefmtFourccSizeFpsFtime,
3475 mpctx->demuxer->file_format,mpctx->sh_video->format, mpctx->sh_video->disp_w,mpctx->sh_video->disp_h,
3476 mpctx->sh_video->fps,mpctx->sh_video->frametime
3479 /* need to set fps here for output encoders to pick it up in their init */
3480 if(force_fps){
3481 mpctx->sh_video->fps=force_fps;
3482 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3484 vo_fps = mpctx->sh_video->fps;
3486 if(!mpctx->sh_video->fps && !force_fps){
3487 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
3488 mpctx->sh_video=mpctx->d_video->sh=NULL;
3494 if(!mpctx->sh_video && !mpctx->sh_audio){
3495 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NoStreamFound);
3496 #ifdef CONFIG_DVBIN
3497 if(mpctx->stream->type == STREAMTYPE_DVB)
3499 int dir;
3500 int v = mpctx->last_dvb_step;
3501 if(v > 0)
3502 dir = DVB_CHANNEL_HIGHER;
3503 else
3504 dir = DVB_CHANNEL_LOWER;
3506 if(dvb_step_channel(mpctx->stream, dir))
3507 mpctx->eof = mpctx->dvbin_reopen = 1;
3509 #endif
3510 goto goto_next_file; // exit_player(MSGTR_Exit_error);
3513 /* display clip info */
3514 demux_info_print(mpctx->demuxer);
3516 //================== Read SUBTITLES (DVD & TEXT) ==========================
3517 if(vo_spudec==NULL && mpctx->sh_video &&
3518 (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)){
3519 init_vo_spudec();
3522 if(1 || mpctx->sh_video) {
3523 // after reading video params we should load subtitles because
3524 // we know fps so now we can adjust subtitle time to ~6 seconds AST
3525 // check .sub
3526 double fps = mpctx->sh_video ? mpctx->sh_video->fps : 25;
3527 current_module="read_subtitles_file";
3528 if(sub_name){
3529 for (i = 0; sub_name[i] != NULL; ++i)
3530 add_subtitles (sub_name[i], fps, 0);
3532 if(sub_auto) { // auto load sub file ...
3533 char *psub = get_path( "sub/" );
3534 char **tmp = sub_filenames((psub ? psub : ""), filename);
3535 int i = 0;
3536 free(psub); // release the buffer created by get_path() above
3537 while (tmp[i]) {
3538 add_subtitles (tmp[i], fps, 1);
3539 free(tmp[i++]);
3541 free(tmp);
3543 if (mpctx->set_of_sub_size > 0) {
3544 // setup global sub numbering
3545 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = mpctx->global_sub_size; // the global # of the first sub.
3546 mpctx->global_sub_size += mpctx->set_of_sub_size;
3550 if (mpctx->global_sub_size) {
3551 select_subtitle(mpctx);
3552 if(subdata)
3553 switch (stream_dump_type) {
3554 case 3: list_sub_file(subdata); break;
3555 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break;
3556 case 6: dump_srt(subdata, mpctx->sh_video->fps); break;
3557 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break;
3558 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break;
3559 case 9: dump_sami(subdata, mpctx->sh_video->fps); break;
3563 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_FILENAME=%s\n",
3564 filename_recode(filename));
3565 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_DEMUXER=%s\n", mpctx->demuxer->desc->name);
3566 if (mpctx->sh_video) {
3567 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3568 if (mpctx->sh_video->format >= 0x20202020)
3569 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format);
3570 else
3571 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format);
3572 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps*8);
3573 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w);
3574 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h);
3575 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps);
3576 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect);
3578 if (mpctx->sh_audio) {
3579 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3580 if (mpctx->sh_audio->format >= 0x20202020)
3581 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format);
3582 else
3583 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format);
3584 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps*8);
3585 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate);
3586 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels);
3588 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_LENGTH=%.2lf\n", demuxer_get_time_length(mpctx->demuxer));
3589 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_SEEKABLE=%d\n",
3590 mpctx->stream->seek && (!mpctx->demuxer || mpctx->demuxer->seekable));
3591 if (mpctx->demuxer) {
3592 if (mpctx->demuxer->num_chapters == 0)
3593 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
3594 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters);
3597 if(!mpctx->sh_video) goto main; // audio-only
3599 if(!reinit_video_chain()) {
3600 if(!mpctx->sh_video){
3601 if(!mpctx->sh_audio) goto goto_next_file;
3602 goto main; // exit_player(MSGTR_Exit_error);
3606 if(vo_flags & 0x08 && vo_spudec)
3607 spudec_set_hw_spu(vo_spudec,mpctx->video_out);
3609 #ifdef CONFIG_FREETYPE
3610 force_load_font = 1;
3611 #endif
3613 //================== MAIN: ==========================
3614 main:
3615 current_module="main";
3617 if(playing_msg) {
3618 char* msg = property_expand_string(mpctx, playing_msg);
3619 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",msg);
3620 free(msg);
3624 // Disable the term OSD in verbose mode
3625 if(verbose) term_osd = 0;
3628 //int frame_corr_num=0; //
3629 //float v_frame=0; // Video
3630 //float num_frames=0; // number of frames played
3632 int frame_time_remaining=0; // flag
3633 int blit_frame=0;
3634 mpctx->num_buffered_frames=0;
3636 // Make sure old OSD does not stay around,
3637 // e.g. with -fixed-vo and same-resolution files
3638 clear_osd_msgs();
3639 update_osd_msg();
3641 //================ SETUP AUDIO ==========================
3643 if(mpctx->sh_audio){
3644 reinit_audio_chain();
3645 if (mpctx->sh_audio && mpctx->sh_audio->codec)
3646 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name);
3649 current_module="av_init";
3651 if(mpctx->sh_video){
3652 mpctx->sh_video->timer=0;
3653 if (! ignore_start)
3654 audio_delay += mpctx->sh_video->stream_delay;
3656 if(mpctx->sh_audio){
3657 if (start_volume >= 0)
3658 mixer_setvolume(&mpctx->mixer, start_volume, start_volume);
3659 if (! ignore_start)
3660 audio_delay -= mpctx->sh_audio->stream_delay;
3661 mpctx->delay=-audio_delay;
3664 if(!mpctx->sh_audio){
3665 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
3666 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",mpctx->d_audio->packs);
3667 ds_free_packs(mpctx->d_audio); // free buffered chunks
3668 //mpctx->d_audio->id=-2; // do not read audio chunks
3669 //uninit_player(INITIALIZED_AO); // close device
3671 if(!mpctx->sh_video){
3672 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
3673 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",mpctx->d_video->packs);
3674 ds_free_packs(mpctx->d_video);
3675 mpctx->d_video->id=-2;
3676 //if(!fixed_vo) uninit_player(INITIALIZED_VO);
3679 if (!mpctx->sh_video && !mpctx->sh_audio)
3680 goto goto_next_file;
3682 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
3683 if(force_fps && mpctx->sh_video){
3684 vo_fps = mpctx->sh_video->fps=force_fps;
3685 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3686 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,mpctx->sh_video->fps,mpctx->sh_video->frametime);
3689 #ifdef CONFIG_GUI
3690 if ( use_gui ) {
3691 if ( mpctx->sh_audio ) guiIntfStruct.AudioType=mpctx->sh_audio->channels; else guiIntfStruct.AudioType=0;
3692 if ( !mpctx->sh_video && mpctx->sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
3693 guiGetEvent( guiSetFileFormat,(char *)mpctx->demuxer->file_format );
3694 if ( guiGetEvent( guiSetValues,(char *)mpctx->sh_video ) ) goto goto_next_file;
3695 guiGetEvent( guiSetDemuxer,(char *)mpctx->demuxer );
3697 #endif
3699 mp_input_set_section(NULL);
3700 //TODO: add desired (stream-based) sections here
3701 if (mpctx->stream->type==STREAMTYPE_TV) mp_input_set_section("tv");
3702 if (mpctx->stream->type==STREAMTYPE_DVDNAV) mp_input_set_section("dvdnav");
3704 //==================== START PLAYING =======================
3706 if(mpctx->loop_times>1) mpctx->loop_times--; else
3707 if(mpctx->loop_times==1) mpctx->loop_times = -1;
3709 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);
3711 total_time_usage_start=GetTimer();
3712 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
3713 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
3714 play_n_frames=play_n_frames_mf;
3715 mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY;
3717 if(play_n_frames==0){
3718 mpctx->eof=PT_NEXT_ENTRY; goto goto_next_file;
3721 if (seek_to_sec) {
3722 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE);
3723 end_at.pos += seek_to_sec;
3726 if (end_at.type == END_AT_SIZE) {
3727 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_MPEndposNoSizeBased);
3728 end_at.type = END_AT_NONE;
3731 #ifdef CONFIG_DVDNAV
3732 mp_dvdnav_context_free(mpctx);
3733 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3734 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
3735 mp_dvdnav_cell_has_changed(mpctx->stream,1);
3737 #endif
3739 while(!mpctx->eof){
3740 float aq_sleep_time=0;
3742 if(dvd_last_chapter>0) {
3743 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3744 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3745 goto goto_next_file;
3748 if(!mpctx->sh_audio && mpctx->d_audio->sh) {
3749 mpctx->sh_audio = mpctx->d_audio->sh;
3750 mpctx->sh_audio->ds = mpctx->d_audio;
3751 reinit_audio_chain();
3754 /*========================== PLAY AUDIO ============================*/
3756 if (mpctx->sh_audio)
3757 if (!fill_audio_out_buffers())
3758 // at eof, all audio at least written to ao
3759 if (!mpctx->sh_video)
3760 mpctx->eof = PT_NEXT_ENTRY;
3763 if(!mpctx->sh_video) {
3764 // handle audio-only case:
3765 double a_pos=0;
3766 // sh_audio can be NULL due to video stream switching
3767 // TODO: handle this better
3768 if((!quiet || end_at.type == END_AT_TIME) && mpctx->sh_audio)
3769 a_pos = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
3771 if(!quiet)
3772 print_status(a_pos, 0, 0);
3774 if(end_at.type == END_AT_TIME && end_at.pos < a_pos)
3775 mpctx->eof = PT_NEXT_ENTRY;
3776 update_subtitles(NULL, a_pos, mpctx->d_sub, 0);
3777 update_osd_msg();
3779 } else {
3781 /*========================== PLAY VIDEO ============================*/
3783 vo_pts=mpctx->sh_video->timer*90000.0;
3784 vo_fps=mpctx->sh_video->fps;
3786 if (!mpctx->num_buffered_frames) {
3787 double frame_time = update_video(&blit_frame);
3788 while (!blit_frame && mpctx->startup_decode_retry > 0) {
3789 double delay = mpctx->delay;
3790 // these initial decode failures are probably due to codec delay,
3791 // ignore them and also their probably nonsense durations
3792 update_video(&blit_frame);
3793 mpctx->delay = delay;
3794 mpctx->startup_decode_retry--;
3796 mpctx->startup_decode_retry = 0;
3797 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
3798 if (mpctx->sh_video->vf_initialized < 0) {
3799 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NotInitializeVOPorVO);
3800 mpctx->eof = 1; goto goto_next_file;
3802 if (frame_time < 0)
3803 mpctx->eof = 1;
3804 else {
3805 // might return with !eof && !blit_frame if !correct_pts
3806 mpctx->num_buffered_frames += blit_frame;
3807 mpctx->time_frame += frame_time / playback_speed; // for nosound
3811 // ==========================================================================
3813 // current_module="draw_osd";
3814 // if(vo_config_count) mpctx->video_out->draw_osd();
3816 #ifdef CONFIG_GUI
3817 if(use_gui) guiEventHandling();
3818 #endif
3820 current_module="vo_check_events";
3821 if (vo_config_count) mpctx->video_out->check_events();
3823 #ifdef CONFIG_X11
3824 if (stop_xscreensaver) {
3825 current_module = "stop_xscreensaver";
3826 xscreensaver_heartbeat();
3828 #endif
3829 if (heartbeat_cmd) {
3830 static unsigned last_heartbeat;
3831 unsigned now = GetTimerMS();
3832 if (now - last_heartbeat > 30000) {
3833 last_heartbeat = now;
3834 system(heartbeat_cmd);
3838 frame_time_remaining = sleep_until_update(&mpctx->time_frame, &aq_sleep_time);
3840 //====================== FLIP PAGE (VIDEO BLT): =========================
3842 current_module="flip_page";
3843 if (!frame_time_remaining && blit_frame) {
3844 unsigned int t2=GetTimer();
3846 if(vo_config_count) mpctx->video_out->flip_page();
3847 mpctx->num_buffered_frames--;
3849 vout_time_usage += (GetTimer() - t2) * 0.000001;
3851 //====================== A-V TIMESTAMP CORRECTION: =========================
3853 adjust_sync_and_print_status(frame_time_remaining, mpctx->time_frame);
3855 //============================ Auto QUALITY ============================
3857 /*Output quality adjustments:*/
3858 if(auto_quality>0){
3859 current_module="autoq";
3860 // float total=0.000001f * (GetTimer()-aq_total_time);
3861 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
3862 if(output_quality<auto_quality && aq_sleep_time>0)
3863 ++output_quality;
3864 else
3865 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
3866 if(output_quality>1 && aq_sleep_time<0)
3867 --output_quality;
3868 else
3869 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
3870 output_quality=0;
3871 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
3872 set_video_quality(mpctx->sh_video,output_quality);
3875 if (play_n_frames >= 0 && !frame_time_remaining && blit_frame) {
3876 --play_n_frames;
3877 if (play_n_frames <= 0) mpctx->eof = PT_NEXT_ENTRY;
3881 // FIXME: add size based support for -endpos
3882 if (end_at.type == END_AT_TIME &&
3883 !frame_time_remaining && end_at.pos <= mpctx->sh_video->pts)
3884 mpctx->eof = PT_NEXT_ENTRY;
3886 } // end if(mpctx->sh_video)
3888 #ifdef CONFIG_DVDNAV
3889 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3890 nav_highlight_t hl;
3891 mp_dvdnav_get_highlight (mpctx->stream, &hl);
3892 osd_set_nav_box (hl.sx, hl.sy, hl.ex, hl.ey);
3893 vo_osd_changed (OSDTYPE_DVDNAV);
3895 if (mp_dvdnav_stream_has_changed(mpctx->stream)) {
3896 double ar = -1.0;
3897 if (stream_control (mpctx->demuxer->stream,
3898 STREAM_CTRL_GET_ASPECT_RATIO, &ar)
3899 != STREAM_UNSUPPORTED)
3900 mpctx->sh_video->stream_aspect = ar;
3903 #endif
3905 //============================ Handle PAUSE ===============================
3907 current_module="pause";
3909 if (mpctx->osd_function == OSD_PAUSE) {
3910 mpctx->was_paused = 1;
3911 pause_loop();
3914 // handle -sstep
3915 if(step_sec>0) {
3916 mpctx->osd_function=OSD_FFW;
3917 rel_seek_secs+=step_sec;
3920 edl_update(mpctx);
3922 //================= Keyboard events, SEEKing ====================
3924 current_module="key_events";
3927 mp_cmd_t* cmd;
3928 int brk_cmd = 0;
3929 while( !brk_cmd && (cmd = mp_input_get_cmd(0,0,0)) != NULL) {
3930 brk_cmd = run_command(mpctx, cmd);
3931 mp_cmd_free(cmd);
3932 if (brk_cmd == 2)
3933 goto goto_enable_cache;
3936 mpctx->was_paused = 0;
3938 /* Looping. */
3939 if(mpctx->eof==1 && mpctx->loop_times>=0) {
3940 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d, eof = %d\n", mpctx->loop_times,mpctx->eof);
3942 if(mpctx->loop_times>1) mpctx->loop_times--; else
3943 if(mpctx->loop_times==1) mpctx->loop_times=-1;
3944 play_n_frames=play_n_frames_mf;
3945 mpctx->eof=0;
3946 abs_seek_pos=SEEK_ABSOLUTE; rel_seek_secs=seek_to_sec;
3947 loop_seek = 1;
3950 if(rel_seek_secs || abs_seek_pos){
3951 if (seek(mpctx, rel_seek_secs, abs_seek_pos) >= 0) {
3952 // Set OSD:
3953 if(!loop_seek){
3954 if( !edl_decision )
3955 set_osd_bar(0,"Position",0,100,demuxer_get_percent_pos(mpctx->demuxer));
3959 rel_seek_secs=0;
3960 abs_seek_pos=0;
3961 loop_seek=0;
3962 edl_decision = 0;
3965 #ifdef CONFIG_GUI
3966 if(use_gui){
3967 guiEventHandling();
3968 if(mpctx->demuxer->file_format==DEMUXER_TYPE_AVI && mpctx->sh_video && mpctx->sh_video->video.dwLength>2){
3969 // get pos from frame number / total frames
3970 guiIntfStruct.Position=(float)mpctx->d_video->pack_no*100.0f/mpctx->sh_video->video.dwLength;
3971 } else {
3972 guiIntfStruct.Position=demuxer_get_percent_pos(mpctx->demuxer);
3974 if ( mpctx->sh_video ) guiIntfStruct.TimeSec=mpctx->sh_video->pts;
3975 else if ( mpctx->sh_audio ) guiIntfStruct.TimeSec=playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out);
3976 guiIntfStruct.LengthInSec=demuxer_get_time_length(mpctx->demuxer);
3977 guiGetEvent( guiReDraw,NULL );
3978 guiGetEvent( guiSetVolume,NULL );
3979 if(guiIntfStruct.Playing==0) break; // STOP
3980 if(guiIntfStruct.Playing==2) mpctx->osd_function=OSD_PAUSE;
3981 if ( guiIntfStruct.DiskChanged || guiIntfStruct.NewPlay ) goto goto_next_file;
3982 #ifdef CONFIG_DVDREAD
3983 if ( mpctx->stream->type == STREAMTYPE_DVD )
3985 dvd_priv_t * dvdp = mpctx->stream->priv;
3986 guiIntfStruct.DVD.current_chapter=dvd_chapter_from_cell(dvdp,guiIntfStruct.DVD.current_title-1, dvdp->cur_cell)+1;
3988 #endif
3990 #endif /* CONFIG_GUI */
3992 } // while(!mpctx->eof)
3994 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",mpctx->eof);
3996 #ifdef CONFIG_DVBIN
3997 if(mpctx->dvbin_reopen)
3999 mpctx->eof = 0;
4000 uninit_player(INITIALIZED_ALL-(INITIALIZED_GUI|INITIALIZED_STREAM|INITIALIZED_INPUT|INITIALIZED_GETCH2|(fixed_vo?INITIALIZED_VO:0)));
4001 cache_uninit(mpctx->stream);
4002 mpctx->dvbin_reopen = 0;
4003 goto goto_enable_cache;
4005 #endif
4008 goto_next_file: // don't jump here after ao/vo/getch initialization!
4010 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
4012 if(benchmark){
4013 double tot=video_time_usage+vout_time_usage+audio_time_usage;
4014 double total_time_usage;
4015 total_time_usage_start=GetTimer()-total_time_usage_start;
4016 total_time_usage = (float)total_time_usage_start*0.000001;
4017 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
4018 video_time_usage,vout_time_usage,audio_time_usage,
4019 total_time_usage-tot,total_time_usage);
4020 if(total_time_usage>0.0)
4021 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
4022 100.0*video_time_usage/total_time_usage,
4023 100.0*vout_time_usage/total_time_usage,
4024 100.0*audio_time_usage/total_time_usage,
4025 100.0*(total_time_usage-tot)/total_time_usage,
4026 100.0);
4027 if(total_frame_cnt && frame_dropping)
4028 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
4029 total_frame_cnt-drop_frame_cnt,
4030 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
4031 drop_frame_cnt,
4032 100*drop_frame_cnt/total_frame_cnt,
4033 total_frame_cnt,
4034 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
4037 // time to uninit all, except global stuff:
4038 uninit_player(INITIALIZED_ALL-(INITIALIZED_GUI+INITIALIZED_INPUT+(fixed_vo?INITIALIZED_VO:0)));
4040 if(mpctx->set_of_sub_size > 0) {
4041 current_module="sub_free";
4042 for(i = 0; i < mpctx->set_of_sub_size; ++i) {
4043 sub_free(mpctx->set_of_subtitles[i]);
4044 #ifdef CONFIG_ASS
4045 if(mpctx->set_of_ass_tracks[i])
4046 ass_free_track( mpctx->set_of_ass_tracks[i] );
4047 #endif
4049 mpctx->set_of_sub_size = 0;
4051 vo_sub_last = vo_sub=NULL;
4052 subdata=NULL;
4053 #ifdef CONFIG_ASS
4054 ass_track = NULL;
4055 if(ass_library)
4056 ass_clear_fonts(ass_library);
4057 #endif
4059 if(mpctx->eof == PT_NEXT_ENTRY || mpctx->eof == PT_PREV_ENTRY) {
4060 mpctx->eof = mpctx->eof == PT_NEXT_ENTRY ? 1 : -1;
4061 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->play_tree_step,0) == PLAY_TREE_ITER_ENTRY) {
4062 mpctx->eof = 1;
4063 } else {
4064 play_tree_iter_free(mpctx->playtree_iter);
4065 mpctx->playtree_iter = NULL;
4067 mpctx->play_tree_step = 1;
4068 } else if(mpctx->eof == PT_UP_NEXT || mpctx->eof == PT_UP_PREV) {
4069 mpctx->eof = mpctx->eof == PT_UP_NEXT ? 1 : -1;
4070 if(mpctx->playtree_iter) {
4071 if(play_tree_iter_up_step(mpctx->playtree_iter,mpctx->eof,0) == PLAY_TREE_ITER_ENTRY) {
4072 mpctx->eof = 1;
4073 } else {
4074 play_tree_iter_free(mpctx->playtree_iter);
4075 mpctx->playtree_iter = NULL;
4078 } else if (mpctx->eof == PT_STOP) {
4079 play_tree_iter_free(mpctx->playtree_iter);
4080 mpctx->playtree_iter = NULL;
4081 } else { // NEXT PREV SRC
4082 mpctx->eof = mpctx->eof == PT_PREV_SRC ? -1 : 1;
4085 if(mpctx->eof == 0) mpctx->eof = 1;
4087 while(mpctx->playtree_iter != NULL) {
4088 filename = play_tree_iter_get_file(mpctx->playtree_iter,mpctx->eof);
4089 if(filename == NULL) {
4090 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->eof,0) != PLAY_TREE_ITER_ENTRY) {
4091 play_tree_iter_free(mpctx->playtree_iter);
4092 mpctx->playtree_iter = NULL;
4094 } else
4095 break;
4098 #ifdef CONFIG_GUI
4099 if(use_gui && !mpctx->playtree_iter) {
4100 #ifdef CONFIG_DVDREAD
4101 if(!guiIntfStruct.DiskChanged)
4102 #endif
4103 mplEnd();
4105 #endif
4107 if(use_gui || mpctx->playtree_iter != NULL || player_idle_mode){
4108 if(!mpctx->playtree_iter) filename = NULL;
4109 mpctx->eof = 0;
4110 goto play_next_file;
4114 exit_player_with_rc(EXIT_EOF, 0);
4116 return 1;
4118 #endif /* DISABLE_MAIN */