Make VO xv preferred over vdpau again
[mplayer.git] / mplayer.c
blobaae4e21e2bea4eb7e0a452ffb0105c1c2b83217e
2 /// \file
3 /// \ingroup Properties Command2Property OSDMsgStack
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdbool.h>
8 #include "config.h"
9 #include "talloc.h"
11 #if defined(__MINGW32__) || defined(__CYGWIN__)
12 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/
13 #include <windows.h>
14 #endif
15 #include <string.h>
16 #include <unistd.h>
18 // #include <sys/mman.h>
19 #include <sys/types.h>
20 #ifndef __MINGW32__
21 #include <sys/ioctl.h>
22 #include <sys/wait.h>
23 #else
24 #define SIGHUP 1 /* hangup */
25 #define SIGQUIT 3 /* quit */
26 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
27 #define SIGBUS 10 /* bus error */
28 #define SIGPIPE 13 /* broken pipe */
29 #endif
31 #include <sys/time.h>
32 #include <sys/stat.h>
34 #include <signal.h>
35 #include <time.h>
36 #include <fcntl.h>
37 #include <limits.h>
39 #include <errno.h>
41 #include "mp_msg.h"
43 #define HELP_MP_DEFINE_STATIC
44 #include "help_mp.h"
46 #include "m_option.h"
47 #include "m_config.h"
48 #include "mplayer.h"
49 #include "access_mpcontext.h"
50 #include "m_property.h"
52 #include "cfg-mplayer-def.h"
54 #include "libavutil/intreadwrite.h"
56 #include "subreader.h"
58 #include "mp_osd.h"
59 #include "libvo/video_out.h"
61 #include "libvo/font_load.h"
62 #include "libvo/sub.h"
64 #ifdef CONFIG_X11
65 #include "libvo/x11_common.h"
66 #endif
68 #include "libao2/audio_out.h"
70 #include "codec-cfg.h"
72 #include "edl.h"
74 #include "spudec.h"
75 #include "vobsub.h"
77 #include "osdep/getch2.h"
78 #include "osdep/timer.h"
80 #ifdef CONFIG_GUI
81 #include "gui/interface.h"
82 #endif
84 #include "input/input.h"
86 const int under_mencoder = 0;
87 int slave_mode=0;
88 int player_idle_mode=0;
89 int quiet=0;
90 int enable_mouse_movements=0;
91 float start_volume = -1;
93 #include "osdep/priority.h"
95 char *heartbeat_cmd;
97 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
99 #ifdef HAVE_RTC
100 #ifdef __linux__
101 #include <linux/rtc.h>
102 #else
103 #include <rtc.h>
104 #define RTC_IRQP_SET RTCIO_IRQP_SET
105 #define RTC_PIE_ON RTCIO_PIE_ON
106 #endif /* __linux__ */
107 #endif /* HAVE_RTC */
109 #ifdef CONFIG_TV
110 #include "stream/tv.h"
111 #endif
112 #ifdef CONFIG_RADIO
113 #include "stream/stream_radio.h"
114 #endif
116 #ifdef CONFIG_DVBIN
117 #include "stream/dvbin.h"
118 #include "stream/cache2.h"
119 #endif
121 //**************************************************************************//
122 // Playtree
123 //**************************************************************************//
124 #include "playtree.h"
125 #include "playtreeparser.h"
127 int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config);
128 int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue);
130 //**************************************************************************//
131 // Config
132 //**************************************************************************//
133 #include "parser-cfg.h"
134 #include "parser-mpcmd.h"
136 //**************************************************************************//
137 // Config file
138 //**************************************************************************//
140 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
142 #include "get_path.h"
144 //**************************************************************************//
145 //**************************************************************************//
146 // Input media streaming & demultiplexer:
147 //**************************************************************************//
149 static int max_framesize=0;
151 #include "stream/stream.h"
152 #include "libmpdemux/demuxer.h"
153 #include "libmpdemux/stheader.h"
155 #ifdef CONFIG_DVDREAD
156 #include "stream/stream_dvd.h"
157 #endif
159 #ifdef CONFIG_DVDNAV
160 #include "stream/stream_dvdnav.h"
161 #endif
163 #include "libmpcodecs/dec_audio.h"
164 #include "libmpcodecs/dec_video.h"
165 #include "libmpcodecs/mp_image.h"
166 #include "libmpcodecs/vf.h"
167 #include "libmpcodecs/vd.h"
169 #include "mixer.h"
171 #include "mp_core.h"
172 #include "options.h"
173 #include "defaultopts.h"
175 //**************************************************************************//
176 //**************************************************************************//
178 // Common FIFO functions, and keyboard/event FIFO code
179 #include "mp_fifo.h"
180 int noconsolecontrols=0;
181 //**************************************************************************//
183 // benchmark:
184 double video_time_usage=0;
185 double vout_time_usage=0;
186 static double audio_time_usage=0;
187 static int total_time_usage_start=0;
188 static int total_frame_cnt=0;
189 static int drop_frame_cnt=0; // total number of dropped frames
190 int benchmark=0;
192 // options:
193 int auto_quality=0;
194 static int output_quality=0;
196 int use_gui=0;
198 #ifdef CONFIG_GUI
199 int enqueue=0;
200 #endif
202 static int list_properties = 0;
204 int osd_level=1;
205 // if nonzero, hide current OSD contents when GetTimerMS() reaches this
206 unsigned int osd_visible;
207 int osd_duration = 1000;
209 int term_osd = 1;
210 static char* term_osd_esc = "\x1b[A\r\x1b[K";
211 static char* playing_msg = NULL;
212 // seek:
213 static double seek_to_sec;
214 static off_t seek_to_byte=0;
215 static off_t step_sec=0;
216 static int loop_seek=0;
218 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 };
220 // A/V sync:
221 int autosync=0; // 30 might be a good default value.
223 // codecs:
224 char **audio_codec_list=NULL; // override audio codec
225 char **video_codec_list=NULL; // override video codec
226 char **audio_fm_list=NULL; // override audio codec family
227 char **video_fm_list=NULL; // override video codec family
229 // demuxer:
230 extern char *demuxer_name; // override demuxer
231 extern char *audio_demuxer_name; // override audio demuxer
232 extern char *sub_demuxer_name; // override sub demuxer
234 int vobsub_id=-1;
235 char* audio_lang=NULL;
236 char* dvdsub_lang=NULL;
237 static char* spudec_ifo=NULL;
238 int forced_subs_only=0;
239 int file_filter=1;
241 // cache2:
242 int stream_cache_size=-1;
243 #ifdef CONFIG_STREAM_CACHE
244 extern int cache_fill_status;
246 float stream_cache_min_percent=20.0;
247 float stream_cache_seek_min_percent=50.0;
248 #else
249 #define cache_fill_status 0
250 #endif
252 // dump:
253 static char *stream_dump_name="stream.dump";
254 int stream_dump_type=0;
256 // A-V sync:
257 static float default_max_pts_correction=-1;//0.01f;
258 float audio_delay=0;
259 static int ignore_start=0;
261 static int softsleep=0;
263 double force_fps=0;
264 static int force_srate=0;
265 static int audio_output_format=-1; // AF_FORMAT_UNKNOWN
266 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
267 static int play_n_frames=-1;
268 static int play_n_frames_mf=-1;
270 // sub:
271 char *font_name=NULL;
272 char *sub_font_name=NULL;
273 extern int font_fontconfig;
274 float font_factor=0.75;
275 char **sub_name=NULL;
276 float sub_delay=0;
277 float sub_fps=0;
278 int sub_auto = 1;
279 char *vobsub_name=NULL;
280 /*DSP!!char *dsp=NULL;*/
281 int subcc_enabled=0;
282 int suboverlap_enabled = 1;
284 #ifdef CONFIG_ASS
285 #include "libass/ass.h"
286 #include "libass/ass_mp.h"
287 #endif
289 char* current_module=NULL; // for debugging
292 // ---
294 #ifdef CONFIG_MENU
295 #include "m_struct.h"
296 #include "libmenu/menu.h"
297 void vf_menu_pause_update(struct vf_instance* vf);
298 extern vf_info_t vf_info_menu;
299 static const vf_info_t* const libmenu_vfs[] = {
300 &vf_info_menu,
301 NULL
303 static vf_instance_t* vf_menu = NULL;
304 int use_menu = 0;
305 static char* menu_cfg = NULL;
306 static char* menu_root = "main";
307 #endif
310 #ifdef HAVE_RTC
311 static int nortc = 1;
312 static char* rtc_device;
313 #endif
315 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
316 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
317 short edl_decision = 0; ///< 1 when an EDL operation has been made.
318 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode.
319 int use_filedir_conf;
321 #include "mpcommon.h"
322 #include "command.h"
324 #include "metadata.h"
326 #define mp_basename2(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
328 const void *mpctx_get_video_out(MPContext *mpctx)
330 return mpctx->video_out;
333 const void *mpctx_get_audio_out(MPContext *mpctx)
335 return mpctx->audio_out;
338 void *mpctx_get_demuxer(MPContext *mpctx)
340 return mpctx->demuxer;
343 void *mpctx_get_playtree_iter(MPContext *mpctx)
345 return mpctx->playtree_iter;
348 void *mpctx_get_mixer(MPContext *mpctx)
350 return &mpctx->mixer;
353 int mpctx_get_global_sub_size(MPContext *mpctx)
355 return mpctx->global_sub_size;
358 int mpctx_get_osd_function(MPContext *mpctx)
360 return mpctx->osd_function;
363 static float get_relative_time(struct MPContext *mpctx)
365 unsigned int new_time = GetTimer();
366 unsigned int delta = new_time - mpctx->last_time;
367 mpctx->last_time = new_time;
368 return delta * 0.000001;
371 static int is_valid_metadata_type(struct MPContext *mpctx, metadata_t type) {
372 switch (type)
374 /* check for valid video stream */
375 case META_VIDEO_CODEC:
376 case META_VIDEO_BITRATE:
377 case META_VIDEO_RESOLUTION:
379 if (!mpctx->sh_video)
380 return 0;
381 break;
384 /* check for valid audio stream */
385 case META_AUDIO_CODEC:
386 case META_AUDIO_BITRATE:
387 case META_AUDIO_SAMPLES:
389 if (!mpctx->sh_audio)
390 return 0;
391 break;
394 /* check for valid demuxer */
395 case META_INFO_TITLE:
396 case META_INFO_ARTIST:
397 case META_INFO_ALBUM:
398 case META_INFO_YEAR:
399 case META_INFO_COMMENT:
400 case META_INFO_TRACK:
401 case META_INFO_GENRE:
403 if (!mpctx->demuxer)
404 return 0;
405 break;
408 default:
409 break;
412 return 1;
415 static char *get_demuxer_info(struct MPContext *mpctx, char *tag) {
416 char **info = mpctx->demuxer->info;
417 int n;
419 if (!info || !tag)
420 return NULL;
422 for (n = 0; info[2*n] != NULL ; n++)
423 if (!strcmp (info[2*n], tag))
424 break;
426 return info[2*n+1] ? strdup (info[2*n+1]) : NULL;
429 char *get_metadata(struct MPContext *mpctx, metadata_t type)
431 char *meta = NULL;
432 sh_audio_t * const sh_audio = mpctx->sh_audio;
433 sh_video_t * const sh_video = mpctx->sh_video;
435 if (!is_valid_metadata_type(mpctx, type))
436 return NULL;
438 switch (type)
440 case META_NAME:
442 return strdup (mp_basename2 (mpctx->filename));
445 case META_VIDEO_CODEC:
447 if (sh_video->format == 0x10000001)
448 meta = strdup ("mpeg1");
449 else if (sh_video->format == 0x10000002)
450 meta = strdup ("mpeg2");
451 else if (sh_video->format == 0x10000004)
452 meta = strdup ("mpeg4");
453 else if (sh_video->format == 0x10000005)
454 meta = strdup ("h264");
455 else if (sh_video->format >= 0x20202020)
457 meta = malloc (8);
458 sprintf (meta, "%.4s", (char *) &sh_video->format);
460 else
462 meta = malloc (8);
463 sprintf (meta, "0x%08X", sh_video->format);
465 return meta;
468 case META_VIDEO_BITRATE:
470 meta = malloc (16);
471 sprintf (meta, "%d kbps", (int) (sh_video->i_bps * 8 / 1024));
472 return meta;
475 case META_VIDEO_RESOLUTION:
477 meta = malloc (16);
478 sprintf (meta, "%d x %d", sh_video->disp_w, sh_video->disp_h);
479 return meta;
482 case META_AUDIO_CODEC:
484 if (sh_audio->codec && sh_audio->codec->name)
485 meta = strdup (sh_audio->codec->name);
486 return meta;
489 case META_AUDIO_BITRATE:
491 meta = malloc (16);
492 sprintf (meta, "%d kbps", (int) (sh_audio->i_bps * 8/1000));
493 return meta;
496 case META_AUDIO_SAMPLES:
498 meta = malloc (16);
499 sprintf (meta, "%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels);
500 return meta;
503 /* check for valid demuxer */
504 case META_INFO_TITLE:
505 return get_demuxer_info(mpctx, "Title");
507 case META_INFO_ARTIST:
508 return get_demuxer_info(mpctx, "Artist");
510 case META_INFO_ALBUM:
511 return get_demuxer_info(mpctx, "Album");
513 case META_INFO_YEAR:
514 return get_demuxer_info(mpctx, "Year");
516 case META_INFO_COMMENT:
517 return get_demuxer_info(mpctx, "Comment");
519 case META_INFO_TRACK:
520 return get_demuxer_info(mpctx, "Track");
522 case META_INFO_GENRE:
523 return get_demuxer_info(mpctx, "Genre");
525 default:
526 break;
529 return meta;
532 /// step size of mixer changes
533 int volstep = 3;
535 #ifdef CONFIG_DVDNAV
536 static void mp_dvdnav_context_free(MPContext *ctx){
537 if (ctx->nav_smpi) free_mp_image(ctx->nav_smpi);
538 ctx->nav_smpi = NULL;
539 if (ctx->nav_buffer) free(ctx->nav_buffer);
540 ctx->nav_buffer = NULL;
541 ctx->nav_start = NULL;
542 ctx->nav_in_size = 0;
544 #endif
546 void uninit_player(struct MPContext *mpctx, unsigned int mask){
547 mask=mpctx->initialized_flags&mask;
549 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
551 if(mask&INITIALIZED_ACODEC){
552 mpctx->initialized_flags&=~INITIALIZED_ACODEC;
553 current_module="uninit_acodec";
554 if(mpctx->sh_audio) uninit_audio(mpctx->sh_audio);
555 #ifdef CONFIG_GUI
556 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
557 #endif
558 mpctx->sh_audio=NULL;
559 mpctx->mixer.afilter = NULL;
562 if(mask&INITIALIZED_VCODEC){
563 mpctx->initialized_flags&=~INITIALIZED_VCODEC;
564 current_module="uninit_vcodec";
565 if(mpctx->sh_video) uninit_video(mpctx->sh_video);
566 mpctx->sh_video=NULL;
567 #ifdef CONFIG_MENU
568 vf_menu=NULL;
569 #endif
572 if(mask&INITIALIZED_DEMUXER){
573 mpctx->initialized_flags&=~INITIALIZED_DEMUXER;
574 current_module="free_demuxer";
575 if(mpctx->demuxer){
576 mpctx->stream=mpctx->demuxer->stream;
577 free_demuxer(mpctx->demuxer);
579 mpctx->demuxer=NULL;
582 // kill the cache process:
583 if(mask&INITIALIZED_STREAM){
584 mpctx->initialized_flags&=~INITIALIZED_STREAM;
585 current_module="uninit_stream";
586 if(mpctx->stream) free_stream(mpctx->stream);
587 mpctx->stream=NULL;
590 if(mask&INITIALIZED_VO){
591 mpctx->initialized_flags&=~INITIALIZED_VO;
592 current_module="uninit_vo";
593 vo_destroy(mpctx->video_out);
594 mpctx->video_out=NULL;
595 #ifdef CONFIG_DVDNAV
596 mp_dvdnav_context_free(mpctx);
597 #endif
600 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code.
601 if(mask&INITIALIZED_GETCH2){
602 mpctx->initialized_flags&=~INITIALIZED_GETCH2;
603 current_module="uninit_getch2";
604 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
605 // restore terminal:
606 getch2_disable();
609 if(mask&INITIALIZED_VOBSUB){
610 mpctx->initialized_flags&=~INITIALIZED_VOBSUB;
611 current_module="uninit_vobsub";
612 if(vo_vobsub) vobsub_close(vo_vobsub);
613 vo_vobsub=NULL;
616 if (mask&INITIALIZED_SPUDEC){
617 mpctx->initialized_flags&=~INITIALIZED_SPUDEC;
618 current_module="uninit_spudec";
619 spudec_free(vo_spudec);
620 vo_spudec=NULL;
623 if(mask&INITIALIZED_AO){
624 mpctx->initialized_flags&=~INITIALIZED_AO;
625 current_module="uninit_ao";
626 if (mpctx->edl_muted) mixer_mute(&mpctx->mixer);
627 mpctx->audio_out->uninit(mpctx->stop_play != AT_END_OF_FILE);
628 mpctx->audio_out=NULL;
631 #ifdef CONFIG_GUI
632 if(mask&INITIALIZED_GUI){
633 mpctx->initialized_flags&=~INITIALIZED_GUI;
634 current_module="uninit_gui";
635 guiDone();
637 #endif
639 current_module=NULL;
642 void exit_player_with_rc(struct MPContext *mpctx, exit_reason_t how, int rc)
644 if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
645 uninit_player(mpctx, INITIALIZED_ALL);
646 #if defined(__MINGW32__) || defined(__CYGWIN__)
647 timeEndPeriod(1);
648 #endif
649 #ifdef CONFIG_X11
650 #ifdef CONFIG_GUI
651 if ( !use_gui )
652 #endif
653 vo_uninit(mpctx->x11_state); // Close the X11 connection (if any is open).
654 #endif
656 current_module="uninit_input";
657 mp_input_uninit(mpctx->input);
658 #ifdef CONFIG_MENU
659 if (use_menu)
660 menu_uninit();
661 #endif
663 #ifdef CONFIG_FREETYPE
664 current_module="uninit_font";
665 if (mpctx->osd && mpctx->osd->sub_font != vo_font)
666 free_font_desc(mpctx->osd->sub_font);
667 free_font_desc(vo_font);
668 vo_font = NULL;
669 done_freetype();
670 #endif
671 osd_free(mpctx->osd);
673 #ifdef CONFIG_ASS
674 ass_library_done(ass_library);
675 #endif
677 current_module="exit_player";
679 // free mplayer config
680 if(mpctx->mconfig)
681 m_config_free(mpctx->mconfig);
683 if(mpctx->playtree)
684 play_tree_free(mpctx->playtree, 1);
686 talloc_free(mpctx->key_fifo);
688 if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
689 switch(how) {
690 case EXIT_QUIT:
691 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_quit);
692 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n");
693 break;
694 case EXIT_EOF:
695 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_eof);
696 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n");
697 break;
698 case EXIT_ERROR:
699 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_ExitingHow,MSGTR_Exit_error);
700 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n");
701 break;
702 default:
703 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n");
705 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
707 exit(rc);
710 static void exit_player(struct MPContext *mpctx, exit_reason_t how)
712 exit_player_with_rc(mpctx, how, 1);
715 #ifndef __MINGW32__
716 static void child_sighandler(int x){
717 pid_t pid;
718 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
720 #endif
722 #ifdef CONFIG_CRASH_DEBUG
723 static char *prog_path;
724 static int crash_debug = 0;
725 #endif
727 static void exit_sighandler(int x){
728 static int sig_count=0;
729 #ifdef CONFIG_CRASH_DEBUG
730 if (!crash_debug || x != SIGTRAP)
731 #endif
732 ++sig_count;
733 if(sig_count==5)
735 /* We're crashing bad and can't uninit cleanly :(
736 * by popular request, we make one last (dirty)
737 * effort to restore the user's
738 * terminal. */
739 getch2_disable();
740 exit(1);
742 if(sig_count==6) exit(1);
743 if(sig_count>6){
744 // can't stop :(
745 #ifndef __MINGW32__
746 kill(getpid(),SIGKILL);
747 #endif
749 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x,
750 current_module?current_module:"unknown"
752 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x);
753 if(sig_count<=1)
754 switch(x){
755 case SIGINT:
756 case SIGQUIT:
757 case SIGTERM:
758 case SIGKILL:
759 async_quit_request = 1;
760 return; // killed from keyboard (^C) or killed [-9]
761 case SIGILL:
762 #ifdef RUNTIME_CPUDETECT
763 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL_RTCpuSel);
764 #else
765 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGILL);
766 #endif
767 case SIGFPE:
768 case SIGSEGV:
769 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGSEGV_SIGFPE);
770 default:
771 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_Exit_SIGCRASH);
772 #ifdef CONFIG_CRASH_DEBUG
773 if (crash_debug) {
774 int gdb_pid;
775 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
776 gdb_pid = fork();
777 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
778 if (gdb_pid == 0) { // We are the child
779 char spid[20];
780 snprintf(spid, sizeof(spid), "%i", getppid());
781 getch2_disable(); // allow terminal to work properly with gdb
782 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1)
783 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
784 } else if (gdb_pid < 0)
785 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
786 else {
787 waitpid(gdb_pid, NULL, 0);
789 if (x == SIGTRAP) return;
791 #endif
793 getch2_disable();
794 exit(1);
797 #include "cfg-mplayer.h"
799 static int cfg_include(m_option_t *conf, char *filename)
801 return m_config_parse_config_file(conf->priv, filename);
804 static void parse_cfgfiles(struct MPContext *mpctx, m_config_t* conf)
806 char *conffile;
807 int conffile_fd;
808 if (!disable_system_conf &&
809 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
810 exit_player(mpctx, EXIT_NONE);
811 if ((conffile = get_path("")) == NULL) {
812 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
813 } else {
814 #ifdef __MINGW32__
815 mkdir(conffile);
816 #else
817 mkdir(conffile, 0777);
818 #endif
819 free(conffile);
820 if ((conffile = get_path("config")) == NULL) {
821 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
822 } else {
823 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
824 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);
825 write(conffile_fd, default_config, strlen(default_config));
826 close(conffile_fd);
828 if (!disable_user_conf &&
829 m_config_parse_config_file(conf, conffile) < 0)
830 exit_player(mpctx, EXIT_NONE);
831 free(conffile);
836 #define PROFILE_CFG_PROTOCOL "protocol."
838 static void load_per_protocol_config (m_config_t* conf, const char *const file)
840 char *str;
841 char protocol[strlen (PROFILE_CFG_PROTOCOL) + strlen (file) + 1];
842 m_profile_t *p;
844 /* does filename actually uses a protocol ? */
845 str = strstr (file, "://");
846 if (!str)
847 return;
849 sprintf (protocol, "%s%s", PROFILE_CFG_PROTOCOL, file);
850 protocol[strlen (PROFILE_CFG_PROTOCOL)+strlen(file)-strlen(str)] = '\0';
851 p = m_config_get_profile (conf, protocol);
852 if (p)
854 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingProtocolProfile, protocol);
855 m_config_set_profile(conf,p);
859 #define PROFILE_CFG_EXTENSION "extension."
861 static void load_per_extension_config (m_config_t* conf, const char *const file)
863 char *str;
864 char extension[strlen (PROFILE_CFG_EXTENSION) + 8];
865 m_profile_t *p;
867 /* does filename actually have an extension ? */
868 str = strrchr (file, '.');
869 if (!str)
870 return;
872 sprintf (extension, PROFILE_CFG_EXTENSION);
873 strncat (extension, ++str, 7);
874 p = m_config_get_profile (conf, extension);
875 if (p)
877 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, extension);
878 m_config_set_profile(conf,p);
882 #define PROFILE_CFG_VO "vo."
883 #define PROFILE_CFG_AO "ao."
885 static void load_per_output_config (m_config_t* conf, char *cfg, char *out)
887 char profile[strlen (cfg) + strlen (out) + 1];
888 m_profile_t *p;
890 sprintf (profile, "%s%s", cfg, out);
891 p = m_config_get_profile (conf, profile);
892 if (p)
894 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingExtensionProfile, profile);
895 m_config_set_profile(conf,p);
899 static void load_per_file_config (m_config_t* conf, const char *const file)
901 char *confpath;
902 char cfg[strlen(file)+10];
903 struct stat st;
904 char *name;
906 sprintf (cfg, "%s.conf", file);
908 if (use_filedir_conf && !stat (cfg, &st))
910 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, cfg);
911 m_config_parse_config_file (conf, cfg);
912 return;
915 if ((name = strrchr (cfg, '/')) == NULL)
916 name = cfg;
917 else
918 name++;
920 if ((confpath = get_path (name)) != NULL)
922 if (!stat (confpath, &st))
924 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_LoadingConfig, confpath);
925 m_config_parse_config_file (conf, confpath);
928 free (confpath);
932 /* When libmpdemux performs a blocking operation (network connection or
933 * cache filling) if the operation fails we use this function to check
934 * if it was interrupted by the user.
935 * The function returns a new value for eof. */
936 static int libmpdemux_was_interrupted(struct MPContext *mpctx, int stop_play)
938 mp_cmd_t* cmd;
939 if((cmd = mp_input_get_cmd(mpctx->input, 0,0,0)) != NULL) {
940 switch(cmd->id) {
941 case MP_CMD_QUIT:
942 exit_player_with_rc(mpctx, EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
943 case MP_CMD_PLAY_TREE_STEP: {
944 stop_play = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
945 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i;
946 } break;
947 case MP_CMD_PLAY_TREE_UP_STEP: {
948 stop_play = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
949 } break;
950 case MP_CMD_PLAY_ALT_SRC_STEP: {
951 stop_play = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
952 } break;
954 mp_cmd_free(cmd);
956 return stop_play;
959 #define mp_basename(s) (strrchr(s,'\\')==NULL?(mp_basename2(s)):(strrchr(s,'\\')+1))
961 static int playtree_add_playlist(struct MPContext *mpctx, play_tree_t* entry)
963 play_tree_add_bpf(entry,mpctx->filename);
965 #ifdef CONFIG_GUI
966 if (use_gui) {
967 if (entry) {
968 import_playtree_playlist_into_gui(entry, mpctx->mconfig);
969 play_tree_free_list(entry,1);
971 } else
972 #endif
974 if(!entry) {
975 entry = mpctx->playtree_iter->tree;
976 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
977 return PT_NEXT_ENTRY;
979 if(mpctx->playtree_iter->tree == entry ) { // Loop with a single file
980 if(play_tree_iter_up_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
981 return PT_NEXT_ENTRY;
984 play_tree_remove(entry,1,1);
985 return PT_NEXT_SRC;
987 play_tree_insert_entry(mpctx->playtree_iter->tree,entry);
988 play_tree_set_params_from(entry,mpctx->playtree_iter->tree);
989 entry = mpctx->playtree_iter->tree;
990 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
991 return PT_NEXT_ENTRY;
993 play_tree_remove(entry,1,1);
995 return PT_NEXT_SRC;
998 void add_subtitles(struct MPContext *mpctx, char *filename, float fps, int noerr)
1000 sub_data *subd;
1001 #ifdef CONFIG_ASS
1002 ass_track_t *asst = 0;
1003 #endif
1005 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) {
1006 return;
1009 subd = sub_read_file(filename, fps);
1010 #ifdef CONFIG_ASS
1011 if (ass_enabled)
1012 #ifdef CONFIG_ICONV
1013 asst = ass_read_file(ass_library, filename, sub_cp);
1014 #else
1015 asst = ass_read_file(ass_library, filename, 0);
1016 #endif
1017 if (ass_enabled && subd && !asst)
1018 asst = ass_read_subdata(ass_library, subd, fps);
1020 if (!asst && !subd)
1021 #else
1022 if(!subd)
1023 #endif
1024 mp_msg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR, MSGTR_CantLoadSub,
1025 filename_recode(filename));
1027 #ifdef CONFIG_ASS
1028 if (!asst && !subd) return;
1029 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst;
1030 #else
1031 if (!subd) return;
1032 #endif
1033 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd;
1034 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size);
1035 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n",
1036 filename_recode(filename));
1037 ++mpctx->set_of_sub_size;
1038 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AddedSubtitleFile, mpctx->set_of_sub_size,
1039 filename_recode(filename));
1042 // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken.
1043 void update_set_of_subtitles(struct MPContext *mpctx)
1044 // subdata was changed, set_of_sub... have to be updated.
1046 sub_data ** const set_of_subtitles = mpctx->set_of_subtitles;
1047 int i;
1048 if (mpctx->set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted
1049 for (i = mpctx->set_of_sub_pos + 1; i < mpctx->set_of_sub_size; ++i)
1050 set_of_subtitles[i-1] = set_of_subtitles[i];
1051 set_of_subtitles[mpctx->set_of_sub_size-1] = NULL;
1052 --mpctx->set_of_sub_size;
1053 if (mpctx->set_of_sub_size > 0) subdata = set_of_subtitles[mpctx->set_of_sub_pos=0];
1055 else if (mpctx->set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed
1056 set_of_subtitles[mpctx->set_of_sub_pos] = subdata;
1058 else if (mpctx->set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added
1059 set_of_subtitles[mpctx->set_of_sub_pos=mpctx->set_of_sub_size] = subdata;
1060 ++mpctx->set_of_sub_size;
1064 void init_vo_spudec(struct MPContext *mpctx)
1066 if (vo_spudec)
1067 spudec_free(vo_spudec);
1068 mpctx->initialized_flags &= ~INITIALIZED_SPUDEC;
1069 vo_spudec = NULL;
1070 if (spudec_ifo) {
1071 unsigned int palette[16], width, height;
1072 current_module="spudec_init_vobsub";
1073 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1074 vo_spudec=spudec_new_scaled(palette, width, height, NULL, 0);
1077 #ifdef CONFIG_DVDREAD
1078 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVD) {
1079 current_module="spudec_init_dvdread";
1080 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(mpctx->stream->priv))->cur_pgc->palette,
1081 mpctx->sh_video->disp_w, mpctx->sh_video->disp_h,
1082 NULL, 0);
1084 #endif
1086 #ifdef CONFIG_DVDNAV
1087 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVDNAV) {
1088 unsigned int *palette = mp_dvdnav_get_spu_clut(mpctx->stream);
1089 current_module="spudec_init_dvdnav";
1090 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1092 #endif
1094 if (vo_spudec==NULL) {
1095 sh_sub_t *sh = (sh_sub_t *)mpctx->d_sub->sh;
1096 current_module="spudec_init_normal";
1097 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1098 spudec_set_font_factor(vo_spudec,font_factor);
1101 if (vo_spudec!=NULL) {
1102 mpctx->initialized_flags|=INITIALIZED_SPUDEC;
1103 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
1108 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
1109 * make it all work is to use the builtin SDL-bootstrap code, which
1110 * will be done automatically by replacing our main() if we include SDL.h.
1112 #if defined(__APPLE__) && defined(CONFIG_SDL)
1113 #include <SDL.h>
1114 #endif
1117 * \brief append a formatted string
1118 * \param buf buffer to print into
1119 * \param pos position of terminating 0 in buf
1120 * \param len maximum number of characters in buf, not including terminating 0
1121 * \param format printf format string
1123 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
1125 va_list va;
1126 va_start(va, format);
1127 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
1128 va_end(va);
1129 if (*pos >= len ) {
1130 buf[len] = 0;
1131 *pos = len;
1136 * \brief append time in the hh:mm:ss.f format
1137 * \param buf buffer to print into
1138 * \param pos position of terminating 0 in buf
1139 * \param len maximum number of characters in buf, not including terminating 0
1140 * \param time time value to convert/append
1142 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
1143 long tenths = 10 * time;
1144 int f1 = tenths % 10;
1145 int ss = (tenths / 10) % 60;
1146 int mm = (tenths / 600) % 60;
1147 int hh = tenths / 36000;
1148 if (time <= 0) {
1149 saddf(buf, pos, len, "unknown");
1150 return;
1152 if (hh > 0)
1153 saddf(buf, pos, len, "%2d:", hh);
1154 if (hh > 0 || mm > 0)
1155 saddf(buf, pos, len, "%02d:", mm);
1156 saddf(buf, pos, len, "%02d.%1d", ss, f1);
1159 static void print_status(struct MPContext *mpctx, double a_pos, bool at_frame)
1161 struct MPOpts *opts = &mpctx->opts;
1162 sh_video_t * const sh_video = mpctx->sh_video;
1164 if (mpctx->sh_audio && a_pos == MP_NOPTS_VALUE)
1165 a_pos = playing_audio_pts(mpctx);
1166 if (mpctx->sh_audio && sh_video && at_frame) {
1167 mpctx->last_av_difference = a_pos - sh_video->pts - audio_delay;
1168 if (mpctx->last_av_difference > 0.5 && drop_frame_cnt > 50
1169 && !mpctx->drop_message_shown) {
1170 mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
1171 mpctx->drop_message_shown = true;
1174 if (quiet)
1175 return;
1178 int width;
1179 char *line;
1180 unsigned pos = 0;
1181 get_screen_size();
1182 if (screen_width > 0)
1183 width = screen_width;
1184 else
1185 width = 80;
1186 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1187 /* Windows command line is broken (MinGW's rxvt works, but we
1188 * should not depend on that). */
1189 width--;
1190 #endif
1191 line = malloc(width + 1); // one additional char for the terminating null
1193 // Audio time
1194 if (mpctx->sh_audio) {
1195 saddf(line, &pos, width, "A:%6.1f ", a_pos);
1196 if (!sh_video) {
1197 float len = demuxer_get_time_length(mpctx->demuxer);
1198 saddf(line, &pos, width, "(");
1199 sadd_hhmmssf(line, &pos, width, a_pos);
1200 saddf(line, &pos, width, ") of %.1f (", len);
1201 sadd_hhmmssf(line, &pos, width, len);
1202 saddf(line, &pos, width, ") ");
1206 // Video time
1207 if (sh_video)
1208 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
1210 // A-V sync
1211 if (mpctx->sh_audio && sh_video)
1212 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ",
1213 mpctx->last_av_difference, mpctx->total_avsync_change);
1215 // Video stats
1216 if (sh_video)
1217 saddf(line, &pos, width, "%3d/%3d ",
1218 (int)sh_video->num_frames,
1219 (int)sh_video->num_frames_decoded);
1221 // CPU usage
1222 if (sh_video) {
1223 if (sh_video->timer > 0.5)
1224 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
1225 (int)(100.0*video_time_usage*opts->playback_speed/(double)sh_video->timer),
1226 (int)(100.0*vout_time_usage*opts->playback_speed/(double)sh_video->timer),
1227 (100.0*audio_time_usage*opts->playback_speed/(double)sh_video->timer));
1228 else
1229 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
1230 } else if (mpctx->sh_audio) {
1231 if (mpctx->delay > 0.5)
1232 saddf(line, &pos, width, "%4.1f%% ",
1233 100.0*audio_time_usage/(double)mpctx->delay);
1234 else
1235 saddf(line, &pos, width, "??,?%% ");
1238 // VO stats
1239 if (sh_video)
1240 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
1242 #ifdef CONFIG_STREAM_CACHE
1243 // cache stats
1244 if (stream_cache_size > 0)
1245 saddf(line, &pos, width, "%d%% ", cache_fill_status);
1246 #endif
1248 // other
1249 if (opts->playback_speed != 1)
1250 saddf(line, &pos, width, "%4.2fx ", opts->playback_speed);
1252 // end
1253 if (erase_to_end_of_line) {
1254 line[pos] = 0;
1255 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
1256 } else {
1257 memset(&line[pos], ' ', width - pos);
1258 line[width] = 0;
1259 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
1261 free(line);
1265 * \brief build a chain of audio filters that converts the input format
1266 * to the ao's format, taking into account the current playback_speed.
1267 * \param sh_audio describes the requested input format of the chain.
1268 * \param ao_data describes the requested output format of the chain.
1270 int build_afilter_chain(struct MPContext *mpctx, sh_audio_t *sh_audio, ao_data_t *ao_data)
1272 struct MPOpts *opts = &mpctx->opts;
1273 int new_srate;
1274 int result;
1275 if (!sh_audio)
1277 #ifdef CONFIG_GUI
1278 if (use_gui) guiGetEvent(guiSetAfilter, (char *)NULL);
1279 #endif
1280 mpctx->mixer.afilter = NULL;
1281 return 0;
1283 if(af_control_any_rev(sh_audio->afilter,
1284 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET,
1285 &opts->playback_speed)) {
1286 new_srate = sh_audio->samplerate;
1287 } else {
1288 new_srate = sh_audio->samplerate * opts->playback_speed;
1289 if (new_srate != ao_data->samplerate) {
1290 // limits are taken from libaf/af_resample.c
1291 if (new_srate < 8000)
1292 new_srate = 8000;
1293 if (new_srate > 192000)
1294 new_srate = 192000;
1295 opts->playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1298 result = init_audio_filters(sh_audio, new_srate,
1299 &ao_data->samplerate, &ao_data->channels, &ao_data->format);
1300 mpctx->mixer.afilter = sh_audio->afilter;
1301 #ifdef CONFIG_GUI
1302 if (use_gui) guiGetEvent(guiSetAfilter, (char *)sh_audio->afilter);
1303 #endif
1304 return result;
1308 typedef struct mp_osd_msg mp_osd_msg_t;
1309 struct mp_osd_msg {
1310 /// Previous message on the stack.
1311 mp_osd_msg_t* prev;
1312 /// Message text.
1313 char msg[128];
1314 int id,level,started;
1315 /// Display duration in ms.
1316 unsigned time;
1319 /// OSD message stack.
1320 static mp_osd_msg_t* osd_msg_stack = NULL;
1323 * \brief Add a message on the OSD message stack
1325 * If a message with the same id is already present in the stack
1326 * it is pulled on top of the stack, otherwise a new message is created.
1330 void set_osd_msg(int id, int level, int time, const char* fmt, ...) {
1331 mp_osd_msg_t *msg,*last=NULL;
1332 va_list va;
1333 int r;
1335 // look if the id is already in the stack
1336 for(msg = osd_msg_stack ; msg && msg->id != id ;
1337 last = msg, msg = msg->prev);
1338 // not found: alloc it
1339 if(!msg) {
1340 msg = calloc(1,sizeof(mp_osd_msg_t));
1341 msg->prev = osd_msg_stack;
1342 osd_msg_stack = msg;
1343 } else if(last) { // found, but it's not on top of the stack
1344 last->prev = msg->prev;
1345 msg->prev = osd_msg_stack;
1346 osd_msg_stack = msg;
1348 // write the msg
1349 va_start(va,fmt);
1350 r = vsnprintf(msg->msg, 128, fmt, va);
1351 va_end(va);
1352 if(r >= 128) msg->msg[127] = 0;
1353 // set id and time
1354 msg->id = id;
1355 msg->level = level;
1356 msg->time = time;
1361 * \brief Remove a message from the OSD stack
1363 * This function can be used to get rid of a message right away.
1367 void rm_osd_msg(int id) {
1368 mp_osd_msg_t *msg,*last=NULL;
1370 // Search for the msg
1371 for(msg = osd_msg_stack ; msg && msg->id != id ;
1372 last = msg, msg = msg->prev);
1373 if(!msg) return;
1375 // Detach it from the stack and free it
1376 if(last)
1377 last->prev = msg->prev;
1378 else
1379 osd_msg_stack = msg->prev;
1380 free(msg);
1384 * \brief Remove all messages from the OSD stack
1388 static void clear_osd_msgs(void) {
1389 mp_osd_msg_t* msg = osd_msg_stack, *prev = NULL;
1390 while(msg) {
1391 prev = msg->prev;
1392 free(msg);
1393 msg = prev;
1395 osd_msg_stack = NULL;
1399 * \brief Get the current message from the OSD stack.
1401 * This function decrements the message timer and destroys the old ones.
1402 * The message that should be displayed is returned (if any).
1406 static mp_osd_msg_t* get_osd_msg(struct MPContext *mpctx)
1408 mp_osd_msg_t *msg,*prev,*last = NULL;
1409 static unsigned last_update = 0;
1410 unsigned now = GetTimerMS();
1411 unsigned diff;
1412 char hidden_dec_done = 0;
1414 if (osd_visible) {
1415 // 36000000 means max timed visibility is 1 hour into the future, if
1416 // the difference is greater assume it's wrapped around from below 0
1417 if (osd_visible - now > 36000000) {
1418 osd_visible = 0;
1419 vo_osd_progbar_type = -1; // disable
1420 vo_osd_changed(OSDTYPE_PROGBAR);
1421 mpctx->osd_function = mpctx->paused ? OSD_PAUSE : OSD_PLAY;
1425 if(!last_update) last_update = now;
1426 diff = now >= last_update ? now - last_update : 0;
1428 last_update = now;
1430 // Look for the first message in the stack with high enough level.
1431 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1432 prev = msg->prev;
1433 if(msg->level > osd_level && hidden_dec_done) continue;
1434 // The message has a high enough level or it is the first hidden one
1435 // in both cases we decrement the timer or kill it.
1436 if(!msg->started || msg->time > diff) {
1437 if(msg->started) msg->time -= diff;
1438 else msg->started = 1;
1439 // display it
1440 if(msg->level <= osd_level) return msg;
1441 hidden_dec_done = 1;
1442 continue;
1444 // kill the message
1445 free(msg);
1446 if(last) {
1447 last->prev = prev;
1448 msg = last;
1449 } else {
1450 osd_msg_stack = prev;
1451 msg = NULL;
1454 // Nothing found
1455 return NULL;
1459 * \brief Display the OSD bar.
1461 * Display the OSD bar or fall back on a simple message.
1465 void set_osd_bar(struct MPContext *mpctx, int type,const char* name,double min,double max,double val) {
1467 if(osd_level < 1) return;
1469 if(mpctx->sh_video) {
1470 osd_visible = (GetTimerMS() + 1000) | 1;
1471 vo_osd_progbar_type = type;
1472 vo_osd_progbar_value = 256*(val-min)/(max-min);
1473 vo_osd_changed(OSDTYPE_PROGBAR);
1474 return;
1477 set_osd_msg(OSD_MSG_BAR,1,osd_duration,"%s: %d %%",
1478 name,ROUND(100*(val-min)/(max-min)));
1483 * \brief Update the OSD message line.
1485 * This function displays the current message on the vo OSD or on the term.
1486 * If the stack is empty and the OSD level is high enough the timer
1487 * is displayed (only on the vo OSD).
1491 static void update_osd_msg(struct MPContext *mpctx)
1493 mp_osd_msg_t *msg;
1494 struct osd_state *osd = mpctx->osd;
1495 char osd_text_timer[128];
1497 // Look if we have a msg
1498 if((msg = get_osd_msg(mpctx))) {
1499 if (strcmp(osd->osd_text, msg->msg)) {
1500 strncpy(osd->osd_text, msg->msg, 127);
1501 if(mpctx->sh_video) vo_osd_changed(OSDTYPE_OSD); else
1502 if(term_osd) mp_msg(MSGT_CPLAYER,MSGL_STATUS,"%s%s\n",term_osd_esc,msg->msg);
1504 return;
1507 if(mpctx->sh_video) {
1508 // fallback on the timer
1509 if(osd_level>=2) {
1510 int len = demuxer_get_time_length(mpctx->demuxer);
1511 int percentage = -1;
1512 char percentage_text[10];
1513 int pts = demuxer_get_current_time(mpctx->demuxer);
1515 if (mpctx->osd_show_percentage)
1516 percentage = demuxer_get_percent_pos(mpctx->demuxer);
1518 if (percentage >= 0)
1519 snprintf(percentage_text, 9, " (%d%%)", percentage);
1520 else
1521 percentage_text[0] = 0;
1523 if (osd_level == 3)
1524 snprintf(osd_text_timer, 63,
1525 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1526 mpctx->osd_function,pts/3600,(pts/60)%60,pts%60,
1527 len/3600,(len/60)%60,len%60,percentage_text);
1528 else
1529 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1530 mpctx->osd_function,pts/3600,(pts/60)%60,
1531 pts%60,percentage_text);
1532 } else
1533 osd_text_timer[0]=0;
1535 // always decrement the percentage timer
1536 if(mpctx->osd_show_percentage)
1537 mpctx->osd_show_percentage--;
1539 if (strcmp(osd->osd_text, osd_text_timer)) {
1540 strncpy(osd->osd_text, osd_text_timer, 63);
1541 vo_osd_changed(OSDTYPE_OSD);
1543 return;
1546 // Clear the term osd line
1547 if (term_osd && osd->osd_text[0]) {
1548 osd->osd_text[0] = 0;
1549 printf("%s\n",term_osd_esc);
1553 ///@}
1554 // OSDMsgStack
1557 void reinit_audio_chain(struct MPContext *mpctx)
1559 struct MPOpts *opts = &mpctx->opts;
1560 if(mpctx->sh_audio){
1561 current_module="init_audio_codec";
1562 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1563 if(!init_best_audio_codec(mpctx->sh_audio,audio_codec_list,audio_fm_list)){
1564 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // failed to init :(
1565 mpctx->d_audio->id = -2;
1566 return;
1567 } else
1568 mpctx->initialized_flags|=INITIALIZED_ACODEC;
1569 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1572 //const ao_info_t *info=audio_out->info;
1573 current_module="af_preinit";
1574 ao_data.samplerate=force_srate;
1575 ao_data.channels=0;
1576 ao_data.format=audio_output_format;
1577 #if 1
1578 // first init to detect best values
1579 if(!init_audio_filters(mpctx->sh_audio, // preliminary init
1580 // input:
1581 mpctx->sh_audio->samplerate,
1582 // output:
1583 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
1584 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_AudioFilterChainPreinitError);
1585 exit_player(mpctx, EXIT_ERROR);
1587 #endif
1588 current_module="ao2_init";
1589 if(!(mpctx->audio_out=init_best_audio_out(opts->audio_driver_list,
1590 0, // plugin flag
1591 ao_data.samplerate,
1592 ao_data.channels,
1593 ao_data.format,0))){
1594 // FAILED:
1595 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO);
1596 uninit_player(mpctx, INITIALIZED_ACODEC); // close codec
1597 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1598 mpctx->d_audio->id = -2;
1599 return;
1600 } else {
1601 // SUCCESS:
1602 mpctx->initialized_flags|=INITIALIZED_AO;
1603 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bytes per sample)\n",
1604 mpctx->audio_out->info->short_name,
1605 ao_data.samplerate, ao_data.channels,
1606 af_fmt2str_short(ao_data.format),
1607 af_fmt2bits(ao_data.format)/8 );
1608 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n",
1609 mpctx->audio_out->info->name, mpctx->audio_out->info->author);
1610 if(strlen(mpctx->audio_out->info->comment) > 0)
1611 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", mpctx->audio_out->info->comment);
1612 // init audio filters:
1613 #if 1
1614 current_module="af_init";
1615 if(!build_afilter_chain(mpctx, mpctx->sh_audio, &ao_data)) {
1616 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_NoMatchingFilter);
1617 // mp_msg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter / ao format! -> NOSOUND\n");
1618 // uninit_player(mpctx, INITIALIZED_ACODEC|INITIALIZED_AO); // close codec & ao
1619 // sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1621 #endif
1623 mpctx->mixer.audio_out = mpctx->audio_out;
1624 mpctx->mixer.volstep = volstep;
1629 ///@}
1630 // Command2Property
1633 // Return pts value corresponding to the end point of audio written to the
1634 // ao so far.
1635 static double written_audio_pts(struct MPContext *mpctx)
1637 sh_audio_t *sh_audio = mpctx->sh_audio;
1638 demux_stream_t *d_audio = mpctx->d_audio;
1639 double buffered_output;
1640 // first calculate the end pts of audio that has been output by decoder
1641 double a_pts = sh_audio->pts;
1642 if (a_pts != MP_NOPTS_VALUE)
1643 // Good, decoder supports new way of calculating audio pts.
1644 // sh_audio->pts is the timestamp of the latest input packet with
1645 // known pts that the decoder has decoded. sh_audio->pts_bytes is
1646 // the amount of bytes the decoder has written after that timestamp.
1647 a_pts += sh_audio->pts_bytes / (double) sh_audio->o_bps;
1648 else {
1649 // Decoder doesn't support new way of calculating pts (or we're
1650 // being called before it has decoded anything with known timestamp).
1651 // Use the old method of audio pts calculation: take the timestamp
1652 // of last packet with known pts the decoder has read data from,
1653 // and add amount of bytes read after the beginning of that packet
1654 // divided by input bps. This will be inaccurate if the input/output
1655 // ratio is not constant for every audio packet or if it is constant
1656 // but not accurately known in sh_audio->i_bps.
1658 a_pts = d_audio->pts;
1659 // ds_tell_pts returns bytes read after last timestamp from
1660 // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes
1661 // it has read but not decoded
1662 if (sh_audio->i_bps)
1663 a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) /
1664 (double)sh_audio->i_bps;
1666 // Now a_pts hopefully holds the pts for end of audio from decoder.
1667 // Substract data in buffers between decoder and audio out.
1669 // Decoded but not filtered
1670 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps;
1672 // Data buffered in audio filters, measured in bytes of "missing" output
1673 buffered_output = af_calc_delay(sh_audio->afilter);
1675 // Data that was ready for ao but was buffered because ao didn't fully
1676 // accept everything to internal buffers yet
1677 buffered_output += sh_audio->a_out_buffer_len;
1679 // Filters divide audio length by playback_speed, so multiply by it
1680 // to get the length in original units without speedup or slowdown
1681 a_pts -= buffered_output * mpctx->opts.playback_speed / ao_data.bps;
1683 return a_pts;
1686 // Return pts value corresponding to currently playing audio.
1687 double playing_audio_pts(struct MPContext *mpctx)
1689 return written_audio_pts(mpctx) - mpctx->opts.playback_speed *
1690 mpctx->audio_out->get_delay();
1693 static int check_framedrop(struct MPContext *mpctx, double frame_time) {
1694 struct MPOpts *opts = &mpctx->opts;
1695 // check for frame-drop:
1696 current_module = "check_framedrop";
1697 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
1698 static int dropped_frames;
1699 float delay = opts->playback_speed*mpctx->audio_out->get_delay();
1700 float d = delay-mpctx->delay;
1701 ++total_frame_cnt;
1702 // we should avoid dropping too many frames in sequence unless we
1703 // are too late. and we allow 100ms A-V delay here:
1704 if (d < -dropped_frames*frame_time-0.100 && !mpctx->paused
1705 && !mpctx->update_video_immediately) {
1706 ++drop_frame_cnt;
1707 ++dropped_frames;
1708 return frame_dropping;
1709 } else
1710 dropped_frames = 0;
1712 return 0;
1716 #ifdef HAVE_RTC
1717 int rtc_fd = -1;
1718 #endif
1720 static float timing_sleep(struct MPContext *mpctx, float time_frame)
1722 #ifdef HAVE_RTC
1723 if (rtc_fd >= 0){
1724 // -------- RTC -----------
1725 current_module="sleep_rtc";
1726 while (time_frame > 0.000) {
1727 unsigned long rtc_ts;
1728 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
1729 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno));
1730 time_frame -= get_relative_time(mpctx);
1732 } else
1733 #endif
1735 // assume kernel HZ=100 for softsleep, works with larger HZ but with
1736 // unnecessarily high CPU usage
1737 float margin = softsleep ? 0.011 : 0;
1738 current_module = "sleep_timer";
1739 while (time_frame > margin) {
1740 usec_sleep(1000000 * (time_frame - margin));
1741 time_frame -= get_relative_time(mpctx);
1743 if (softsleep){
1744 current_module = "sleep_soft";
1745 if (time_frame < 0)
1746 mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow);
1747 while (time_frame > 0)
1748 time_frame -= get_relative_time(mpctx); // burn the CPU
1751 return time_frame;
1754 #ifdef CONFIG_DVDNAV
1755 #ifndef FF_B_TYPE
1756 #define FF_B_TYPE 3
1757 #endif
1758 /// store decoded video image
1759 static mp_image_t * mp_dvdnav_copy_mpi(mp_image_t *to_mpi,
1760 mp_image_t *from_mpi) {
1761 mp_image_t *mpi;
1763 /// Do not store B-frames
1764 if (from_mpi->pict_type == FF_B_TYPE)
1765 return to_mpi;
1767 if (to_mpi &&
1768 to_mpi->w == from_mpi->w &&
1769 to_mpi->h == from_mpi->h &&
1770 to_mpi->imgfmt == from_mpi->imgfmt)
1771 mpi = to_mpi;
1772 else {
1773 if (to_mpi)
1774 free_mp_image(to_mpi);
1775 if (from_mpi->w == 0 || from_mpi->h == 0)
1776 return NULL;
1777 mpi = alloc_mpi(from_mpi->w,from_mpi->h,from_mpi->imgfmt);
1780 copy_mpi(mpi,from_mpi);
1781 return mpi;
1784 static void mp_dvdnav_reset_stream (MPContext *ctx) {
1785 struct MPOpts *opts = &ctx->opts;
1786 if (ctx->sh_video) {
1787 /// clear video pts
1788 ctx->d_video->pts = 0.0f;
1789 ctx->sh_video->pts = 0.0f;
1790 ctx->sh_video->i_pts = 0.0f;
1791 ctx->sh_video->last_pts = 0.0f;
1792 ctx->sh_video->num_buffered_pts = 0;
1793 ctx->sh_video->num_frames = 0;
1794 ctx->sh_video->num_frames_decoded = 0;
1795 ctx->sh_video->timer = 0.0f;
1796 ctx->sh_video->stream_delay = 0.0f;
1797 ctx->sh_video->timer = 0;
1798 ctx->demuxer->stream_pts = MP_NOPTS_VALUE;
1801 if (ctx->sh_audio) {
1802 /// free audio packets and reset
1803 ds_free_packs(ctx->d_audio);
1804 audio_delay -= ctx->sh_audio->stream_delay;
1805 ctx->delay =- audio_delay;
1806 ctx->audio_out->reset();
1807 resync_audio_stream(ctx->sh_audio);
1810 if (ctx->d_sub) opts->sub_id = -2;
1812 audio_delay = 0.0f;
1814 /// clear all EOF related flags
1815 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0;
1818 /// Restore last decoded DVDNAV (still frame)
1819 static mp_image_t *mp_dvdnav_restore_smpi(struct MPContext *mpctx,
1820 int *in_size,
1821 unsigned char **start,
1822 mp_image_t *decoded_frame)
1824 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
1825 return decoded_frame;
1827 /// a change occured in dvdnav stream
1828 if (mp_dvdnav_cell_has_changed(mpctx->stream,0)) {
1829 mp_dvdnav_read_wait(mpctx->stream, 1, 1);
1830 mp_dvdnav_context_free(mpctx);
1831 mp_dvdnav_reset_stream(mpctx);
1832 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
1833 mp_dvdnav_cell_has_changed(mpctx->stream,1);
1836 if (*in_size < 0) {
1837 float len;
1839 /// Display still frame, if any
1840 if (mpctx->nav_smpi && !mpctx->nav_buffer)
1841 decoded_frame = mpctx->nav_smpi;
1843 /// increment video frame : continue playing after still frame
1844 len = demuxer_get_time_length(mpctx->demuxer);
1845 if (mpctx->sh_video->pts >= len &&
1846 mpctx->sh_video->pts > 0.0 && len > 0.0) {
1847 mp_dvdnav_skip_still(mpctx->stream);
1848 mp_dvdnav_skip_wait(mpctx->stream);
1850 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps;
1852 if (mpctx->nav_buffer) {
1853 *start = mpctx->nav_start;
1854 *in_size = mpctx->nav_in_size;
1855 if (mpctx->nav_start)
1856 memcpy(*start,mpctx->nav_buffer,mpctx->nav_in_size);
1860 return decoded_frame;
1863 /// Save last decoded DVDNAV (still frame)
1864 static void mp_dvdnav_save_smpi(struct MPContext *mpctx, int in_size,
1865 unsigned char *start,
1866 mp_image_t *decoded_frame)
1868 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
1869 return;
1871 if (mpctx->nav_buffer)
1872 free(mpctx->nav_buffer);
1874 mpctx->nav_buffer = malloc(in_size);
1875 mpctx->nav_start = start;
1876 mpctx->nav_in_size = mpctx->nav_buffer ? in_size : -1;
1877 if (mpctx->nav_buffer)
1878 memcpy(mpctx->nav_buffer,start,in_size);
1880 if (decoded_frame && mpctx->nav_smpi != decoded_frame)
1881 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi,decoded_frame);
1883 #endif /* CONFIG_DVDNAV */
1885 /* Modify video timing to match the audio timeline. There are two main
1886 * reasons this is needed. First, video and audio can start from different
1887 * positions at beginning of file or after a seek (MPlayer starts both
1888 * immediately even if they have different pts). Second, the file can have
1889 * audio timestamps that are inconsistent with the duration of the audio
1890 * packets, for example two consecutive timestamp values differing by
1891 * one second but only a packet with enough samples for half a second
1892 * of playback between them.
1894 static void adjust_sync(struct MPContext *mpctx, double frame_time)
1896 struct MPOpts *opts = &mpctx->opts;
1897 current_module = "av_sync";
1899 if (!mpctx->sh_audio)
1900 return;
1902 double a_pts = written_audio_pts(mpctx) - mpctx->delay;
1903 double v_pts = mpctx->sh_video->pts;
1904 double av_delay = a_pts - v_pts;
1905 // Try to sync vo_flip() so it will *finish* at given time
1906 av_delay += mpctx->last_vo_flip_duration;
1907 av_delay -= audio_delay; // This much pts difference is desired
1909 double change = av_delay * 0.1;
1910 double max_change = default_max_pts_correction >= 0 ?
1911 default_max_pts_correction : frame_time * 0.1;
1912 if (change < -max_change)
1913 change = -max_change;
1914 else if (change > max_change)
1915 change = max_change;
1916 mpctx->delay += change;
1917 mpctx->total_avsync_change += change;
1920 static int fill_audio_out_buffers(struct MPContext *mpctx)
1922 struct MPOpts *opts = &mpctx->opts;
1923 unsigned int t;
1924 double tt;
1925 int playsize;
1926 int playflags=0;
1927 int audio_eof=0;
1928 int bytes_to_write;
1929 sh_audio_t * const sh_audio = mpctx->sh_audio;
1931 current_module="play_audio";
1933 while (1) {
1934 int sleep_time;
1935 // all the current uses of ao_data.pts seem to be in aos that handle
1936 // sync completely wrong; there should be no need to use ao_data.pts
1937 // in get_space()
1938 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
1939 bytes_to_write = mpctx->audio_out->get_space();
1940 if (mpctx->sh_video || bytes_to_write >= ao_data.outburst)
1941 break;
1943 // handle audio-only case:
1944 // this is where mplayer sleeps during audio-only playback
1945 // to avoid 100% CPU use
1946 sleep_time = (ao_data.outburst - bytes_to_write) * 1000 / ao_data.bps;
1947 if (sleep_time < 10) sleep_time = 10; // limit to 100 wakeups per second
1948 usec_sleep(sleep_time * 1000);
1951 while (bytes_to_write) {
1952 playsize = bytes_to_write;
1953 if (playsize > MAX_OUTBURST)
1954 playsize = MAX_OUTBURST;
1955 bytes_to_write -= playsize;
1957 // Fill buffer if needed:
1958 current_module="decode_audio";
1959 t = GetTimer();
1960 if (decode_audio(sh_audio, playsize) < 0) // EOF or error
1961 if (mpctx->d_audio->eof) {
1962 audio_eof = 1;
1963 if (sh_audio->a_out_buffer_len == 0)
1964 return 0;
1966 t = GetTimer() - t;
1967 tt = t*0.000001f; audio_time_usage+=tt;
1968 if (playsize > sh_audio->a_out_buffer_len) {
1969 playsize = sh_audio->a_out_buffer_len;
1970 if (audio_eof)
1971 playflags |= AOPLAY_FINAL_CHUNK;
1973 if (!playsize)
1974 break;
1976 // play audio:
1977 current_module="play_audio";
1979 // Is this pts value actually useful for the aos that access it?
1980 // They're obviously badly broken in the way they handle av sync;
1981 // would not having access to this make them more broken?
1982 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
1983 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags);
1985 if (playsize > 0) {
1986 sh_audio->a_out_buffer_len -= playsize;
1987 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize],
1988 sh_audio->a_out_buffer_len);
1989 mpctx->delay += opts->playback_speed*playsize/(double)ao_data.bps;
1991 else if (audio_eof && mpctx->audio_out->get_delay() < .04) {
1992 // Sanity check to avoid hanging in case current ao doesn't output
1993 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK
1994 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n");
1995 sh_audio->a_out_buffer_len = 0;
1998 return 1;
2001 static int sleep_until_update(struct MPContext *mpctx, float *time_frame,
2002 float *aq_sleep_time)
2004 struct MPOpts *opts = &mpctx->opts;
2005 int frame_time_remaining = 0;
2006 current_module="calc_sleep_time";
2008 *time_frame -= get_relative_time(mpctx); // reset timer
2010 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
2011 float delay = mpctx->audio_out->get_delay();
2012 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay);
2014 if (autosync) {
2016 * Adjust this raw delay value by calculating the expected
2017 * delay for this frame and generating a new value which is
2018 * weighted between the two. The higher autosync is, the
2019 * closer to the delay value gets to that which "-nosound"
2020 * would have used, and the longer it will take for A/V
2021 * sync to settle at the right value (but it eventually will.)
2022 * This settling time is very short for values below 100.
2024 float predicted = mpctx->delay / opts->playback_speed + *time_frame;
2025 float difference = delay - predicted;
2026 delay = predicted + difference / (float)autosync;
2029 *time_frame = delay - mpctx->delay / opts->playback_speed;
2031 // delay = amount of audio buffered in soundcard/driver
2032 if (delay > 0.25) delay=0.25; else
2033 if (delay < 0.10) delay=0.10;
2034 if (*time_frame > delay*0.6) {
2035 // sleep time too big - may cause audio drops (buffer underrun)
2036 frame_time_remaining = 1;
2037 *time_frame = delay*0.5;
2039 } else {
2040 // If we're lagging more than 200 ms behind the right playback rate,
2041 // don't try to "catch up".
2042 // If benchmark is set always output frames as fast as possible
2043 // without sleeping.
2044 if (*time_frame < -0.2 || benchmark)
2045 *time_frame = 0;
2048 *aq_sleep_time += *time_frame;
2051 //============================== SLEEP: ===================================
2053 // flag 256 means: libvo driver does its timing (dvb card)
2054 if (*time_frame > 0.001 && !(mpctx->sh_video->output_flags&256))
2055 *time_frame = timing_sleep(mpctx, *time_frame);
2056 return frame_time_remaining;
2059 int reinit_video_chain(struct MPContext *mpctx)
2061 struct MPOpts *opts = &mpctx->opts;
2062 sh_video_t * const sh_video = mpctx->sh_video;
2063 double ar=-1.0;
2064 //================== Init VIDEO (codec & libvo) ==========================
2065 if (!opts->fixed_vo || !(mpctx->initialized_flags & INITIALIZED_VO)) {
2066 current_module="preinit_libvo";
2068 //shouldn't we set dvideo->id=-2 when we fail?
2069 //if((mpctx->video_out->preinit(vo_subdevice))!=0){
2070 if(!(mpctx->video_out=init_best_video_out(opts, mpctx->x11_state, mpctx->key_fifo, mpctx->input))){
2071 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorInitializingVODevice);
2072 goto err_out;
2074 mpctx->initialized_flags|=INITIALIZED_VO;
2077 if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
2078 mpctx->sh_video->stream_aspect = ar;
2079 current_module="init_video_filters";
2081 char* vf_arg[] = { "_oldargs_", (char*)mpctx->video_out , NULL };
2082 sh_video->vfilter = vf_open_filter(opts, NULL,"vo",vf_arg);
2084 #ifdef CONFIG_MENU
2085 if(use_menu) {
2086 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2087 vf_menu = vf_open_plugin(opts,libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2088 if(!vf_menu) {
2089 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantOpenLibmenuFilterWithThisRootMenu,menu_root);
2090 use_menu = 0;
2093 if(vf_menu)
2094 sh_video->vfilter = vf_menu;
2095 #endif
2097 #ifdef CONFIG_ASS
2098 if(ass_enabled) {
2099 int i;
2100 int insert = 1;
2101 if (opts->vf_settings)
2102 for (i = 0; opts->vf_settings[i].name; ++i)
2103 if (strcmp(opts->vf_settings[i].name, "ass") == 0) {
2104 insert = 0;
2105 break;
2107 if (insert) {
2108 extern vf_info_t vf_info_ass;
2109 const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
2110 char* vf_arg[] = {"auto", "1", NULL};
2111 vf_instance_t* vf_ass = vf_open_plugin(opts, libass_vfs,sh_video->vfilter,"ass",vf_arg);
2112 if (vf_ass)
2113 sh_video->vfilter = vf_ass;
2114 else
2115 mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
2118 #endif
2120 sh_video->vfilter = append_filters(sh_video->vfilter, opts->vf_settings);
2122 #ifdef CONFIG_ASS
2123 if (ass_enabled)
2124 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_INIT_EOSD, ass_library);
2125 #endif
2127 current_module="init_video_codec";
2129 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2130 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2131 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2133 if(!sh_video->initialized){
2134 if(!opts->fixed_vo) uninit_player(mpctx, INITIALIZED_VO);
2135 goto err_out;
2138 mpctx->initialized_flags|=INITIALIZED_VCODEC;
2140 if (sh_video->codec)
2141 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2143 sh_video->last_pts = MP_NOPTS_VALUE;
2144 sh_video->num_buffered_pts = 0;
2145 sh_video->next_frame_time = 0;
2147 if(auto_quality>0){
2148 // Auto quality option enabled
2149 output_quality=get_video_quality_max(sh_video);
2150 if(auto_quality>output_quality) auto_quality=output_quality;
2151 else output_quality=auto_quality;
2152 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2153 set_video_quality(sh_video,output_quality);
2156 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2158 current_module="init_vo";
2160 return 1;
2162 err_out:
2163 mpctx->sh_video = mpctx->d_video->sh = NULL;
2164 return 0;
2167 static double update_video_nocorrect_pts(struct MPContext *mpctx,
2168 int *blit_frame)
2170 struct sh_video *sh_video = mpctx->sh_video;
2171 *blit_frame = 0;
2172 double frame_time = 0;
2173 while (1) {
2174 current_module = "filter_video";
2175 // In nocorrect-pts mode there is no way to properly time these frames
2176 if (vf_output_queued_frame(sh_video->vfilter))
2177 break;
2178 unsigned char *packet = NULL;
2179 frame_time = sh_video->next_frame_time;
2180 if (mpctx->update_video_immediately)
2181 frame_time = 0;
2182 int in_size = video_read_frame(sh_video, &sh_video->next_frame_time,
2183 &packet, force_fps);
2184 if (in_size < 0) {
2185 #ifdef CONFIG_DVDNAV
2186 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
2187 if (mp_dvdnav_is_eof(mpctx->stream))
2188 return -1;
2189 if (mpctx->d_video)
2190 mpctx->d_video->eof = 0;
2191 if (mpctx->d_audio)
2192 mpctx->d_audio->eof = 0;
2193 mpctx->stream->eof = 0;
2194 } else
2195 #endif
2196 return -1;
2198 if (in_size > max_framesize)
2199 max_framesize = in_size;
2200 sh_video->timer += frame_time;
2201 if (mpctx->sh_audio)
2202 mpctx->delay -= frame_time;
2203 // video_read_frame can change fps (e.g. for ASF video)
2204 vo_fps = sh_video->fps;
2205 int framedrop_type = check_framedrop(mpctx, frame_time);
2206 current_module = "decode video";
2208 void *decoded_frame;
2209 #ifdef CONFIG_DVDNAV
2210 decoded_frame = mp_dvdnav_restore_smpi(mpctx, &in_size, &packet, NULL);
2211 if (in_size >= 0 && !decoded_frame)
2212 #endif
2213 decoded_frame = decode_video(sh_video, packet, in_size, framedrop_type,
2214 sh_video->pts);
2215 #ifdef CONFIG_DVDNAV
2216 // Save last still frame for future display
2217 mp_dvdnav_save_smpi(mpctx, in_size, packet, decoded_frame);
2218 #endif
2219 if (decoded_frame) {
2220 // These updates are done here for vf_expand OSD/subtitles
2221 update_subtitles(sh_video, mpctx->d_sub, 0);
2222 update_teletext(sh_video, mpctx->demuxer, 0);
2223 update_osd_msg(mpctx);
2224 current_module = "filter video";
2225 if (filter_video(sh_video, decoded_frame, sh_video->pts))
2226 break;
2229 *blit_frame = 1;
2230 return frame_time;
2233 static double update_video(struct MPContext *mpctx, int *blit_frame)
2235 struct sh_video *sh_video = mpctx->sh_video;
2236 *blit_frame = 0;
2237 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_SET_OSD_OBJ,
2238 mpctx->osd); // hack for vf_expand
2239 if (!mpctx->opts.correct_pts)
2240 return update_video_nocorrect_pts(mpctx, blit_frame);
2242 double pts;
2244 while (1) {
2245 current_module = "filter_video";
2246 // XXX Time used in this call is not counted in any performance
2247 // timer now, OSD time is not updated correctly for filter-added frames
2248 if (vf_output_queued_frame(sh_video->vfilter))
2249 break;
2250 unsigned char *packet = NULL;
2251 bool hit_eof = false;
2252 int in_size = ds_get_packet_pts(mpctx->d_video, &packet, &pts);
2253 if (in_size < 0) {
2254 // try to extract last frames in case of decoder lag
2255 in_size = 0;
2256 pts = 1e300;
2257 hit_eof = true;
2259 if (in_size > max_framesize)
2260 max_framesize = in_size;
2261 current_module = "decode video";
2262 int framedrop_type = check_framedrop(mpctx, sh_video->frametime);
2263 void *decoded_frame = decode_video(sh_video, packet, in_size,
2264 framedrop_type, pts);
2265 if (decoded_frame) {
2266 // These updates are done here for vf_expand OSD/subtitles
2267 update_subtitles(sh_video, mpctx->d_sub, 0);
2268 update_teletext(sh_video, mpctx->demuxer, 0);
2269 update_osd_msg(mpctx);
2270 current_module = "filter video";
2271 if (filter_video(sh_video, decoded_frame, sh_video->pts))
2272 break;
2273 } else if (hit_eof)
2274 return -1;
2277 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_GET_PTS, &pts);
2278 if (pts == MP_NOPTS_VALUE) {
2279 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Video pts after filters MISSING\n");
2280 // Try to use decoder pts from before filters
2281 pts = sh_video->pts;
2283 sh_video->pts = pts;
2284 if (sh_video->last_pts == MP_NOPTS_VALUE)
2285 sh_video->last_pts = sh_video->pts;
2286 else if (sh_video->last_pts > sh_video->pts) {
2287 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Decreasing video pts: %f < %f\n",
2288 sh_video->pts, sh_video->last_pts);
2289 /* If the difference in pts is small treat it as jitter around the
2290 * right value (possibly caused by incorrect timestamp ordering) and
2291 * just show this frame immediately after the last one.
2292 * Treat bigger differences as timestamp resets and start counting
2293 * timing of later frames from the position of this one. */
2294 if (sh_video->last_pts - sh_video->pts > 0.5)
2295 sh_video->last_pts = sh_video->pts;
2296 else
2297 sh_video->pts = sh_video->last_pts;
2299 double frame_time = sh_video->pts - sh_video->last_pts;
2300 sh_video->last_pts = sh_video->pts;
2301 sh_video->timer += frame_time;
2302 if (mpctx->sh_audio)
2303 mpctx->delay -= frame_time;
2304 *blit_frame = 1;
2305 return frame_time;
2308 void pause_player(struct MPContext *mpctx)
2310 if (mpctx->paused)
2311 return;
2312 mpctx->paused = 1;
2313 mpctx->step_frames = 0;
2314 mpctx->time_frame -= get_relative_time(mpctx);
2316 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
2317 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
2319 if (mpctx->audio_out && mpctx->sh_audio)
2320 mpctx->audio_out->pause(); // pause audio, keep data if possible
2323 void unpause_player(struct MPContext *mpctx)
2325 if (!mpctx->paused)
2326 return;
2327 mpctx->paused = 0;
2329 if (mpctx->audio_out && mpctx->sh_audio)
2330 mpctx->audio_out->resume(); // resume audio
2331 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok
2332 && !mpctx->step_frames)
2333 vo_control(mpctx->video_out, VOCTRL_RESUME, NULL); // resume video
2334 (void)get_relative_time(mpctx); // ignore time that passed during pause
2337 void add_step_frame(struct MPContext *mpctx)
2339 mpctx->step_frames++;
2340 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
2341 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
2342 unpause_player(mpctx);
2345 static void pause_loop(struct MPContext *mpctx)
2347 mp_cmd_t* cmd;
2348 if (!quiet) {
2349 // Small hack to display the pause message on the OSD line.
2350 // The pause string is: "\n == PAUSE == \r" so we need to
2351 // take the first and the last char out
2352 if (term_osd && !mpctx->sh_video) {
2353 char msg[128] = MSGTR_Paused;
2354 int mlen = strlen(msg);
2355 msg[mlen-1] = '\0';
2356 set_osd_msg(OSD_MSG_PAUSE, 1, 0, "%s", msg+1);
2357 update_osd_msg(mpctx);
2358 } else
2359 mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
2360 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n");
2362 #ifdef CONFIG_GUI
2363 if (use_gui)
2364 guiGetEvent(guiCEvent, (char *)guiSetPause);
2365 #endif
2367 while ( (cmd = mp_input_get_cmd(mpctx->input, 20, 1, 1)) == NULL
2368 || cmd->id == MP_CMD_SET_MOUSE_POS || cmd->pausing == 4) {
2369 if (cmd) {
2370 cmd = mp_input_get_cmd(mpctx->input, 0,1,0);
2371 run_command(mpctx, cmd);
2372 mp_cmd_free(cmd);
2373 continue;
2375 if (mpctx->sh_video && mpctx->video_out)
2376 vo_check_events(mpctx->video_out);
2377 #ifdef CONFIG_GUI
2378 if (use_gui) {
2379 guiEventHandling();
2380 guiGetEvent(guiReDraw, NULL);
2381 if (guiIntfStruct.Playing!=2 || (mpctx->rel_seek_secs || mpctx->abs_seek_pos))
2382 break;
2384 #endif
2385 #ifdef CONFIG_MENU
2386 if (vf_menu)
2387 vf_menu_pause_update(vf_menu);
2388 #endif
2389 usec_sleep(20000);
2390 update_osd_msg(mpctx);
2391 int hack = vo_osd_changed(0);
2392 vo_osd_changed(hack);
2393 if (hack)
2394 break;
2396 #ifdef CONFIG_GUI
2397 if (use_gui) {
2398 if (guiIntfStruct.Playing == guiSetStop)
2399 mpctx->eof = 1;
2400 else
2401 guiGetEvent(guiCEvent, (char *)guiSetPlay);
2403 #endif
2407 // Find the right mute status and record position for new file position
2408 static void edl_seek_reset(MPContext *mpctx)
2410 mpctx->edl_muted = 0;
2411 next_edl_record = edl_records;
2413 while (next_edl_record) {
2414 if (next_edl_record->start_sec >= mpctx->sh_video->pts)
2415 break;
2417 if (next_edl_record->action == EDL_MUTE)
2418 mpctx->edl_muted = !mpctx->edl_muted;
2419 next_edl_record = next_edl_record->next;
2421 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2422 mixer_mute(&mpctx->mixer);
2426 // Execute EDL command for the current position if one exists
2427 static void edl_update(MPContext *mpctx)
2429 if (!next_edl_record)
2430 return;
2432 if (!mpctx->sh_video) {
2433 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlNOsh_video);
2434 free_edl(edl_records);
2435 next_edl_record = NULL;
2436 edl_records = NULL;
2437 return;
2440 if (mpctx->sh_video->pts >= next_edl_record->start_sec) {
2441 if (next_edl_record->action == EDL_SKIP) {
2442 mpctx->osd_function = OSD_FFW;
2443 mpctx->abs_seek_pos = 0;
2444 mpctx->rel_seek_secs = next_edl_record->length_sec;
2445 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop "
2446 "[%f], length [%f]\n", next_edl_record->start_sec,
2447 next_edl_record->stop_sec, next_edl_record->length_sec);
2448 edl_decision = 1;
2450 else if (next_edl_record->action == EDL_MUTE) {
2451 mpctx->edl_muted = !mpctx->edl_muted;
2452 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2453 mixer_mute(&mpctx->mixer);
2454 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n",
2455 next_edl_record->start_sec );
2457 next_edl_record = next_edl_record->next;
2462 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute
2463 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length
2464 // return -1 if seek failed (non-seekable stream?), 0 otherwise
2465 static int seek(MPContext *mpctx, double amount, int style)
2467 current_module = "seek";
2468 if (demux_seek(mpctx->demuxer, amount, audio_delay, style) == 0)
2469 return -1;
2471 if (mpctx->sh_video) {
2472 current_module = "seek_video_reset";
2473 resync_video_stream(mpctx->sh_video);
2474 if (mpctx->video_out->config_ok)
2475 vo_control(mpctx->video_out, VOCTRL_RESET, NULL);
2476 mpctx->sh_video->num_buffered_pts = 0;
2477 mpctx->sh_video->last_pts = MP_NOPTS_VALUE;
2478 mpctx->num_buffered_frames = 0;
2479 mpctx->delay = 0;
2480 mpctx->time_frame = 0;
2481 mpctx->update_video_immediately = true;
2482 // Not all demuxers set d_video->pts during seek, so this value
2483 // (which is used by at least vobsub and edl code below) may
2484 // be completely wrong (probably 0).
2485 mpctx->sh_video->pts = mpctx->d_video->pts;
2486 update_subtitles(mpctx->sh_video, mpctx->d_sub, 1);
2487 update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
2490 if (mpctx->sh_audio) {
2491 current_module = "seek_audio_reset";
2492 mpctx->audio_out->reset(); // stop audio, throwing away buffered data
2493 mpctx->sh_audio->a_buffer_len = 0;
2494 mpctx->sh_audio->a_out_buffer_len = 0;
2497 if (vo_vobsub && mpctx->sh_video) {
2498 current_module = "seek_vobsub_reset";
2499 vobsub_seek(vo_vobsub, mpctx->sh_video->pts);
2502 edl_seek_reset(mpctx);
2504 mpctx->total_avsync_change = 0;
2505 audio_time_usage = 0; video_time_usage = 0; vout_time_usage = 0;
2506 drop_frame_cnt = 0;
2508 current_module = NULL;
2509 return 0;
2513 static int read_keys(void *ctx, int fd)
2515 getch2(ctx);
2516 return mplayer_get_key(ctx, 0);
2520 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object
2521 * file for some tools to link against. */
2522 #ifndef DISABLE_MAIN
2523 int main(int argc,char* argv[]){
2526 char * mem_ptr;
2528 // movie info:
2530 /* Flag indicating whether MPlayer should exit without playing anything. */
2531 int opt_exit = 0;
2533 //float a_frame=0; // Audio
2535 int i;
2537 int gui_no_filename=0;
2539 struct MPContext *mpctx = &(struct MPContext){
2540 .osd_function = OSD_PLAY,
2541 .begin_skip = MP_NOPTS_VALUE,
2542 .play_tree_step = 1,
2543 .global_sub_pos = -1,
2544 .set_of_sub_pos = -1,
2545 .file_format = DEMUXER_TYPE_UNKNOWN,
2546 .last_dvb_step = 1,
2549 InitTimer();
2550 srand(GetTimerMS());
2552 mp_msg_init();
2554 #ifdef CONFIG_X11
2555 mpctx->x11_state = vo_x11_init_state();
2556 #endif
2557 struct MPOpts *opts = &mpctx->opts;
2558 set_default_mplayer_options(opts);
2559 // Create the config context and register the options
2560 mpctx->mconfig = m_config_new(opts, cfg_include);
2561 m_config_register_options(mpctx->mconfig,mplayer_opts);
2562 mp_input_register_options(mpctx->mconfig);
2564 // Preparse the command line
2565 m_config_preparse_command_line(mpctx->mconfig,argc,argv);
2567 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
2568 set_path_env();
2569 #endif
2571 #ifdef CONFIG_TV
2572 stream_tv_defaults.immediate = 1;
2573 #endif
2575 if (argc > 1 && argv[1] &&
2576 (!strcmp(argv[1], "-gui") || !strcmp(argv[1], "-nogui"))) {
2577 use_gui = !strcmp(argv[1], "-gui");
2578 } else
2579 if ( argv[0] )
2581 char *base = strrchr(argv[0], '/');
2582 if (!base)
2583 base = strrchr(argv[0], '\\');
2584 if (!base)
2585 base = argv[0];
2586 if(strstr(base, "gmplayer"))
2587 use_gui=1;
2590 parse_cfgfiles(mpctx, mpctx->mconfig);
2592 #ifdef CONFIG_GUI
2593 if ( use_gui ) cfg_read();
2594 #endif
2596 mpctx->playtree = m_config_parse_mp_command_line(mpctx->mconfig, argc, argv);
2597 if(mpctx->playtree == NULL)
2598 opt_exit = 1;
2599 else {
2600 mpctx->playtree = play_tree_cleanup(mpctx->playtree);
2601 if(mpctx->playtree) {
2602 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mpctx->mconfig);
2603 if(mpctx->playtree_iter) {
2604 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
2605 play_tree_iter_free(mpctx->playtree_iter);
2606 mpctx->playtree_iter = NULL;
2608 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
2612 mpctx->key_fifo = mp_fifo_create(opts);
2614 print_version("MPlayer");
2616 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_GUI)
2617 void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows");
2618 if(runningmplayer && mpctx->filename && use_gui){
2619 COPYDATASTRUCT csData;
2620 char file[MAX_PATH];
2621 char *filepart = mpctx->filename;
2622 if(GetFullPathName(mpctx->filename, MAX_PATH, file, &filepart)){
2623 csData.dwData = 0;
2624 csData.cbData = strlen(file)*2;
2625 csData.lpData = file;
2626 SendMessage(runningmplayer, WM_COPYDATA, (WPARAM)runningmplayer, (LPARAM)&csData);
2629 #endif
2631 #if defined(__MINGW32__) || defined(__CYGWIN__)
2632 // stop Windows from showing all kinds of annoying error dialogs
2633 SetErrorMode(0x8003);
2634 // request 1ms timer resolution
2635 timeBeginPeriod(1);
2636 #endif
2638 #ifdef CONFIG_PRIORITY
2639 set_priority();
2640 #endif
2642 #ifndef CONFIG_GUI
2643 if(use_gui){
2644 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui);
2645 use_gui=0;
2647 #else
2648 #if !defined(__MINGW32__) && !defined(__CYGWIN__)
2649 if(use_gui && !vo_init()){
2650 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX);
2651 use_gui=0;
2653 #endif
2654 if (use_gui && mpctx->playtree_iter){
2655 char cwd[PATH_MAX+2];
2656 // Free Playtree and Playtree-Iter as it's not used by the GUI.
2657 play_tree_iter_free(mpctx->playtree_iter);
2658 mpctx->playtree_iter=NULL;
2660 if (getcwd(cwd, PATH_MAX) != (char *)NULL)
2662 strcat(cwd, "/");
2663 // Prefix relative paths with current working directory
2664 play_tree_add_bpf(mpctx->playtree, cwd);
2666 // Import initital playtree into GUI.
2667 import_initial_playtree_into_gui(mpctx->playtree, mpctx->mconfig, enqueue);
2669 #endif /* CONFIG_GUI */
2671 if(opts->video_driver_list && strcmp(opts->video_driver_list[0],"help")==0){
2672 list_video_out();
2673 opt_exit = 1;
2676 if(opts->audio_driver_list && strcmp(opts->audio_driver_list[0],"help")==0){
2677 list_audio_out();
2678 opt_exit = 1;
2681 /* Check codecs.conf. */
2682 if(!codecs_file || !parse_codec_cfg(codecs_file)){
2683 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
2684 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
2685 if(!parse_codec_cfg(NULL)){
2686 exit_player_with_rc(mpctx, EXIT_NONE, 0);
2688 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_BuiltinCodecsConf);
2691 free( mem_ptr ); // release the buffer created by get_path()
2694 #if 0
2695 if(video_codec_list){
2696 int i;
2697 video_codec=video_codec_list[0];
2698 for(i=0;video_codec_list[i];i++)
2699 mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]);
2701 #endif
2702 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
2703 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs);
2704 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n");
2705 list_codecs(1);
2706 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2707 opt_exit = 1;
2709 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
2710 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs);
2711 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n");
2712 list_codecs(0);
2713 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2714 opt_exit = 1;
2716 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
2717 vfm_help();
2718 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2719 opt_exit = 1;
2721 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
2722 afm_help();
2723 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2724 opt_exit = 1;
2726 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
2727 af_help();
2728 printf("\n");
2729 opt_exit = 1;
2731 #ifdef CONFIG_X11
2732 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
2733 fstype_help();
2734 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
2735 opt_exit = 1;
2737 #endif
2738 if((demuxer_name && strcmp(demuxer_name,"help")==0) ||
2739 (audio_demuxer_name && strcmp(audio_demuxer_name,"help")==0) ||
2740 (sub_demuxer_name && strcmp(sub_demuxer_name,"help")==0)){
2741 demuxer_help();
2742 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2743 opt_exit = 1;
2745 if(list_properties) {
2746 property_print_help();
2747 opt_exit = 1;
2750 if(opt_exit)
2751 exit_player(mpctx, EXIT_NONE);
2753 if (player_idle_mode && use_gui) {
2754 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NoIdleAndGui);
2755 exit_player_with_rc(mpctx, EXIT_NONE, 1);
2758 if(!mpctx->filename && !player_idle_mode){
2759 if(!use_gui){
2760 // no file/vcd/dvd -> show HELP:
2761 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text);
2762 exit_player_with_rc(mpctx, EXIT_NONE, 0);
2763 } else gui_no_filename=1;
2766 /* Display what configure line was used */
2767 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
2769 // Many users forget to include command line in bugreports...
2770 if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
2771 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
2772 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
2773 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
2776 //------ load global data first ------
2778 mpctx->osd = osd_create();
2780 // check font
2781 #ifdef CONFIG_FREETYPE
2782 init_freetype();
2783 #endif
2784 #ifdef CONFIG_FONTCONFIG
2785 if(font_fontconfig <= 0)
2787 #endif
2788 #ifdef CONFIG_BITMAP_FONT
2789 if(font_name){
2790 vo_font=read_font_desc(font_name,font_factor,verbose>1);
2791 if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,
2792 filename_recode(font_name));
2793 } else {
2794 // try default:
2795 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
2796 free(mem_ptr); // release the buffer created by get_path()
2797 if(!vo_font)
2798 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
2800 if (sub_font_name)
2801 mpctx->osd->sub_font = read_font_desc(sub_font_name, font_factor, verbose>1);
2802 else
2803 mpctx->osd->sub_font = vo_font;
2804 #endif
2805 #ifdef CONFIG_FONTCONFIG
2807 #endif
2809 #ifdef CONFIG_ASS
2810 ass_library = ass_init();
2811 #endif
2813 #ifdef HAVE_RTC
2814 if(!nortc)
2816 // seteuid(0); /* Can't hurt to try to get root here */
2817 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
2818 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_RTCDeviceNotOpenable,
2819 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
2820 else {
2821 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
2823 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
2824 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno));
2825 mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp);
2826 close (rtc_fd);
2827 rtc_fd = -1;
2828 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
2829 /* variable only by the root */
2830 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno));
2831 close (rtc_fd);
2832 rtc_fd = -1;
2833 } else
2834 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_UsingRTCTiming, irqp);
2837 #ifdef CONFIG_GUI
2838 // breaks DGA and SVGAlib and VESA drivers: --A'rpi
2839 // and now ? -- Pontscho
2840 if(use_gui) setuid( getuid() ); // strongly test, please check this.
2841 #endif
2842 if(rtc_fd<0)
2843 #endif /* HAVE_RTC */
2844 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
2845 softsleep?"software":timer_name);
2847 #ifdef HAVE_TERMCAP
2848 if ( !use_gui ) load_termcap(NULL); // load key-codes
2849 #endif
2851 // ========== Init keyboard FIFO (connection to libvo) ============
2853 // Init input system
2854 current_module = "init_input";
2855 mpctx->input = mp_input_init(&opts->input, use_gui);
2856 mp_input_add_key_fd(mpctx->input, -1,0,mplayer_get_key,NULL, mpctx->key_fifo);
2857 if(slave_mode)
2858 mp_input_add_cmd_fd(mpctx->input, 0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);
2859 else if(!noconsolecontrols)
2860 mp_input_add_key_fd(mpctx->input, 0, 1, read_keys, NULL, mpctx->key_fifo);
2861 // Set the libstream interrupt callback
2862 stream_set_interrupt_callback(mp_input_check_interrupt, mpctx->input);
2864 #ifdef CONFIG_MENU
2865 if(use_menu) {
2866 if(menu_cfg && menu_init(mpctx, mpctx->mconfig, mpctx->input, menu_cfg))
2867 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg);
2868 else {
2869 menu_cfg = get_path("menu.conf");
2870 if(menu_init(mpctx, mpctx->mconfig, mpctx->input, menu_cfg))
2871 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg);
2872 else {
2873 if(menu_init(mpctx, mpctx->mconfig, mpctx->input,
2874 MPLAYER_CONFDIR "/menu.conf"))
2875 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
2876 else {
2877 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitFailed);
2878 use_menu = 0;
2883 #endif
2885 current_module = NULL;
2887 /// Catch signals
2888 #ifndef __MINGW32__
2889 signal(SIGCHLD,child_sighandler);
2890 #endif
2892 #ifdef CONFIG_CRASH_DEBUG
2893 prog_path = argv[0];
2894 #endif
2895 //========= Catch terminate signals: ================
2896 // terminate requests:
2897 signal(SIGTERM,exit_sighandler); // kill
2898 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
2900 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
2902 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
2903 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
2904 #ifdef CONFIG_SIGHANDLER
2905 // fatal errors:
2906 signal(SIGBUS,exit_sighandler); // bus error
2907 signal(SIGSEGV,exit_sighandler); // segfault
2908 signal(SIGILL,exit_sighandler); // illegal instruction
2909 signal(SIGFPE,exit_sighandler); // floating point exc.
2910 signal(SIGABRT,exit_sighandler); // abort()
2911 #ifdef CONFIG_CRASH_DEBUG
2912 if (crash_debug)
2913 signal(SIGTRAP,exit_sighandler);
2914 #endif
2915 #endif
2917 #ifdef CONFIG_GUI
2918 if(use_gui){
2919 guiInit();
2920 guiGetEvent(guiSetContext, mpctx);
2921 mpctx->initialized_flags|=INITIALIZED_GUI;
2922 guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) );
2924 #endif
2926 // ******************* Now, let's see the per-file stuff ********************
2928 play_next_file:
2930 // init global sub numbers
2931 mpctx->global_sub_size = 0;
2932 { int i; for (i = 0; i < SUB_SOURCES; i++) mpctx->global_sub_indices[i] = -1; }
2934 if (mpctx->filename) {
2935 load_per_protocol_config (mpctx->mconfig, mpctx->filename);
2936 load_per_extension_config (mpctx->mconfig, mpctx->filename);
2937 load_per_file_config (mpctx->mconfig, mpctx->filename);
2940 if (opts->video_driver_list)
2941 load_per_output_config (mpctx->mconfig, PROFILE_CFG_VO, opts->video_driver_list[0]);
2942 if (opts->audio_driver_list)
2943 load_per_output_config (mpctx->mconfig, PROFILE_CFG_AO, opts->audio_driver_list[0]);
2945 // We must enable getch2 here to be able to interrupt network connection
2946 // or cache filling
2947 if(!noconsolecontrols && !slave_mode){
2948 if(mpctx->initialized_flags&INITIALIZED_GETCH2)
2949 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_Getch2InitializedTwice);
2950 else
2951 getch2_enable(); // prepare stdin for hotkeys...
2952 mpctx->initialized_flags|=INITIALIZED_GETCH2;
2953 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
2956 // =================== GUI idle loop (STOP state) ===========================
2957 #ifdef CONFIG_GUI
2958 if ( use_gui ) {
2959 mpctx->file_format=DEMUXER_TYPE_UNKNOWN;
2960 guiGetEvent( guiSetDefaults,0 );
2961 while ( guiIntfStruct.Playing != 1 )
2963 mp_cmd_t* cmd;
2964 usec_sleep(20000);
2965 guiEventHandling();
2966 guiGetEvent( guiReDraw,NULL );
2967 if ( (cmd = mp_input_get_cmd(mpctx->input, 0,0,0)) != NULL) {
2968 guiGetEvent(guiIEvent, (char *)cmd->id);
2969 mp_cmd_free(cmd);
2972 guiGetEvent( guiSetParameters,NULL );
2973 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM )
2975 play_tree_t * entry = play_tree_new();
2976 play_tree_add_file( entry,guiIntfStruct.Filename );
2977 if ( mpctx->playtree ) play_tree_free_list( mpctx->playtree->child,1 );
2978 else mpctx->playtree=play_tree_new();
2979 play_tree_set_child( mpctx->playtree,entry );
2980 if(mpctx->playtree)
2982 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mpctx->mconfig);
2983 if(mpctx->playtree_iter)
2985 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY)
2987 play_tree_iter_free(mpctx->playtree_iter);
2988 mpctx->playtree_iter = NULL;
2990 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
2995 #endif /* CONFIG_GUI */
2997 while (player_idle_mode && !mpctx->filename) {
2998 play_tree_t * entry = NULL;
2999 mp_cmd_t * cmd;
3000 while (!(cmd = mp_input_get_cmd(mpctx->input, 0,1,0))) { // wait for command
3001 if (mpctx->video_out)
3002 vo_check_events(mpctx->video_out);
3003 usec_sleep(20000);
3005 switch (cmd->id) {
3006 case MP_CMD_LOADFILE:
3007 // prepare a tree entry with the new filename
3008 entry = play_tree_new();
3009 play_tree_add_file(entry, cmd->args[0].v.s);
3010 // The entry is added to the main playtree after the switch().
3011 break;
3012 case MP_CMD_LOADLIST:
3013 entry = parse_playlist_file(mpctx->mconfig, cmd->args[0].v.s);
3014 break;
3015 case MP_CMD_QUIT:
3016 exit_player_with_rc(mpctx, EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3017 break;
3018 case MP_CMD_GET_PROPERTY:
3019 case MP_CMD_SET_PROPERTY:
3020 case MP_CMD_STEP_PROPERTY:
3021 run_command(mpctx, cmd);
3022 break;
3025 mp_cmd_free(cmd);
3027 if (entry) { // user entered a command that gave a valid entry
3028 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it
3029 play_tree_free_list(mpctx->playtree->child, 1);
3030 else mpctx->playtree=play_tree_new(); // .. or make a brand new playtree
3032 if (!mpctx->playtree) continue; // couldn't make playtree! wait for next command
3034 play_tree_set_child(mpctx->playtree, entry);
3036 /* Make iterator start at the top the of tree. */
3037 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mpctx->mconfig);
3038 if (!mpctx->playtree_iter) continue;
3040 // find the first real item in the tree
3041 if (play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3042 // no items!
3043 play_tree_iter_free(mpctx->playtree_iter);
3044 mpctx->playtree_iter = NULL;
3045 continue; // wait for next command
3047 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter, 1);
3050 //---------------------------------------------------------------------------
3052 if(mpctx->filename)
3053 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing,
3054 filename_recode(mpctx->filename));
3056 if (edl_filename) {
3057 if (edl_records) free_edl(edl_records);
3058 next_edl_record = edl_records = edl_parse_file();
3060 if (edl_output_filename) {
3061 if (edl_fd) fclose(edl_fd);
3062 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
3064 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlCantOpenForWrite,
3065 filename_recode(edl_output_filename));
3069 //==================== Open VOB-Sub ============================
3071 current_module="vobsub";
3072 if (vobsub_name){
3073 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
3074 if(vo_vobsub==NULL)
3075 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,
3076 filename_recode(vobsub_name));
3077 } else if (sub_auto && mpctx->filename){
3078 /* try to autodetect vobsub from movie filename ::atmos */
3079 char *buf = strdup(mpctx->filename), *psub;
3080 char *pdot = strrchr(buf, '.');
3081 char *pslash = strrchr(buf, '/');
3082 #if defined(__MINGW32__) || defined(__CYGWIN__)
3083 if (!pslash) pslash = strrchr(buf, '\\');
3084 #endif
3085 if (pdot && (!pslash || pdot > pslash))
3086 *pdot = '\0';
3087 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
3088 /* try from ~/.mplayer/sub */
3089 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
3090 char *bname;
3091 int l;
3092 bname = strrchr(buf,'/');
3093 #if defined(__MINGW32__) || defined(__CYGWIN__)
3094 if(!bname) bname = strrchr(buf,'\\');
3095 #endif
3096 if(bname) bname++;
3097 else bname = buf;
3098 l = strlen(psub) + strlen(bname) + 1;
3099 psub = realloc(psub,l);
3100 strcat(psub,bname);
3101 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
3102 free(psub);
3104 free(buf);
3106 if(vo_vobsub){
3107 mpctx->initialized_flags|=INITIALIZED_VOBSUB;
3108 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
3109 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
3111 // setup global sub numbering
3112 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] = mpctx->global_sub_size; // the global # of the first vobsub.
3113 mpctx->global_sub_size += vobsub_get_indexes_count(vo_vobsub);
3116 //============ Open & Sync STREAM --- fork cache2 ====================
3118 mpctx->stream=NULL;
3119 mpctx->demuxer=NULL;
3120 if (mpctx->d_audio) {
3121 //free_demuxer_stream(mpctx->d_audio);
3122 mpctx->d_audio=NULL;
3124 if (mpctx->d_video) {
3125 //free_demuxer_stream(d_video);
3126 mpctx->d_video=NULL;
3128 mpctx->sh_audio=NULL;
3129 mpctx->sh_video=NULL;
3131 current_module="open_stream";
3132 mpctx->stream = open_stream(mpctx->filename, opts, &mpctx->file_format);
3133 if(!mpctx->stream) { // error...
3134 mpctx->stop_play = libmpdemux_was_interrupted(mpctx, PT_NEXT_ENTRY);
3135 goto goto_next_file;
3137 mpctx->initialized_flags|=INITIALIZED_STREAM;
3139 #ifdef CONFIG_GUI
3140 if ( use_gui ) guiGetEvent( guiSetStream,(char *)mpctx->stream );
3141 #endif
3143 if(mpctx->file_format == DEMUXER_TYPE_PLAYLIST) {
3144 mp_msg(MSGT_CPLAYER, MSGL_ERR, "\nThis looks like a playlist, but "
3145 "playlist support will not be used automatically.\n"
3146 "MPlayer's playlist code is unsafe and should only be used with "
3147 "trusted sources.\nPlayback will probably fail.\n\n");
3148 #if 0
3149 play_tree_t* entry;
3150 // Handle playlist
3151 current_module="handle_playlist";
3152 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",
3153 filename_recode(mpctx->filename));
3154 entry = parse_playtree(mpctx->stream, mpctx->mconfig, 0);
3155 mpctx->eof=playtree_add_playlist(mpctx, entry);
3156 goto goto_next_file;
3157 #endif
3159 mpctx->stream->start_pos+=seek_to_byte;
3161 if(stream_dump_type==5){
3162 unsigned char buf[4096];
3163 int len;
3164 FILE *f;
3165 current_module="dumpstream";
3166 if(mpctx->stream->type==STREAMTYPE_STREAM && mpctx->stream->fd<0){
3167 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpstreamFdUnavailable);
3168 exit_player(mpctx, EXIT_ERROR);
3170 stream_reset(mpctx->stream);
3171 stream_seek(mpctx->stream,mpctx->stream->start_pos);
3172 f=fopen(stream_dump_name,"wb");
3173 if(!f){
3174 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3175 exit_player(mpctx, EXIT_ERROR);
3177 if (dvd_chapter > 1) {
3178 int chapter = dvd_chapter - 1;
3179 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter);
3181 while(!mpctx->stream->eof && !async_quit_request){
3182 len=stream_read(mpctx->stream,buf,4096);
3183 if(len>0) {
3184 if(fwrite(buf,len,1,f) != 1) {
3185 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3186 exit_player(mpctx, EXIT_ERROR);
3189 if(dvd_last_chapter > 0) {
3190 int chapter = -1;
3191 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER,
3192 &chapter) == STREAM_OK && chapter + 1 > dvd_last_chapter)
3193 break;
3196 if(fclose(f)) {
3197 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_ErrorWritingFile,stream_dump_name);
3198 exit_player(mpctx, EXIT_ERROR);
3200 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3201 exit_player_with_rc(mpctx, EXIT_EOF, 0);
3204 #ifdef CONFIG_DVDREAD
3205 if(mpctx->stream->type==STREAMTYPE_DVD){
3206 current_module="dvd lang->id";
3207 if(opts->audio_id==-1) opts->audio_id=dvd_aid_from_lang(mpctx->stream,audio_lang);
3208 if(dvdsub_lang && opts->sub_id==-2) opts->sub_id=-1;
3209 if(dvdsub_lang && opts->sub_id==-1) opts->sub_id=dvd_sid_from_lang(mpctx->stream,dvdsub_lang);
3210 // setup global sub numbering
3211 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3212 mpctx->global_sub_size += dvd_number_of_subs(mpctx->stream);
3213 current_module=NULL;
3215 #endif
3217 #ifdef CONFIG_DVDNAV
3218 if(mpctx->stream->type==STREAMTYPE_DVDNAV){
3219 current_module="dvdnav lang->id";
3220 if(opts->audio_id==-1) opts->audio_id=mp_dvdnav_aid_from_lang(mpctx->stream,audio_lang);
3221 if(dvdsub_lang && opts->sub_id==-2) opts->sub_id=-1;
3222 if(dvdsub_lang && opts->sub_id==-1) opts->sub_id=mp_dvdnav_sid_from_lang(mpctx->stream,dvdsub_lang);
3223 // setup global sub numbering
3224 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3225 mpctx->global_sub_size += mp_dvdnav_number_of_subs(mpctx->stream);
3226 current_module=NULL;
3228 #endif
3230 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
3231 goto_enable_cache:
3232 if(stream_cache_size>0){
3233 current_module="enable_cache";
3234 if(!stream_enable_cache(mpctx->stream,stream_cache_size*1024,
3235 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
3236 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0)))
3237 if((mpctx->stop_play = libmpdemux_was_interrupted(mpctx, PT_NEXT_ENTRY))) goto goto_next_file;
3240 //============ Open DEMUXERS --- DETECT file type =======================
3241 current_module="demux_open";
3243 mpctx->demuxer=demux_open(opts, mpctx->stream,mpctx->file_format,opts->audio_id,opts->video_id,opts->sub_id,mpctx->filename);
3245 // HACK to get MOV Reference Files working
3247 if (mpctx->demuxer && mpctx->demuxer->type==DEMUXER_TYPE_PLAYLIST)
3249 unsigned char* playlist_entry;
3250 play_tree_t *list = NULL, *entry = NULL;
3252 current_module="handle_demux_playlist";
3253 while (ds_get_packet(mpctx->demuxer->video,&playlist_entry)>0)
3255 char *temp, *bname;
3257 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",
3258 filename_recode(playlist_entry));
3260 bname=mp_basename(playlist_entry);
3261 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
3262 continue;
3264 if (!strncmp(bname,mp_basename(mpctx->filename),strlen(bname))) // ignoring self-reference
3265 continue;
3267 entry = play_tree_new();
3269 if (mpctx->filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
3271 temp=malloc((strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename))+strlen(playlist_entry)+1));
3272 if (temp)
3274 strncpy(temp, mpctx->filename, strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename)));
3275 temp[strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename))]='\0';
3276 strcat(temp, playlist_entry);
3277 play_tree_add_file(entry,temp);
3278 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
3279 free(temp);
3282 else
3283 play_tree_add_file(entry,playlist_entry);
3285 if(!list)
3286 list = entry;
3287 else
3288 play_tree_append_entry(list,entry);
3290 free_demuxer(mpctx->demuxer);
3291 mpctx->demuxer = NULL;
3293 if (list)
3295 entry = play_tree_new();
3296 play_tree_set_child(entry,list);
3297 mpctx->stop_play = playtree_add_playlist(mpctx, entry);
3298 goto goto_next_file;
3302 if(!mpctx->demuxer)
3303 goto goto_next_file;
3304 if(dvd_chapter>1) {
3305 float pts;
3306 if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter-1, 1, &pts, NULL, NULL) >= 0 && pts > -1.0)
3307 seek(mpctx, pts, SEEK_ABSOLUTE);
3310 mpctx->initialized_flags|=INITIALIZED_DEMUXER;
3312 if (mpctx->stream->type != STREAMTYPE_DVD && mpctx->stream->type != STREAMTYPE_DVDNAV) {
3313 int i;
3314 int maxid = -1;
3315 // setup global sub numbering
3316 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3317 for (i = 0; i < MAX_S_STREAMS; i++)
3318 if (mpctx->demuxer->s_streams[i])
3319 maxid = FFMAX(maxid, mpctx->demuxer->s_streams[i]->sid);
3320 mpctx->global_sub_size += maxid + 1;
3322 // Make opts->sub_id always selectable if set.
3323 if (mpctx->global_sub_size <= mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id)
3324 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id + 1;
3326 #ifdef CONFIG_ASS
3327 if (ass_enabled && ass_library) {
3328 for (i = 0; i < mpctx->demuxer->num_attachments; ++i) {
3329 demux_attachment_t* att = mpctx->demuxer->attachments + i;
3330 if (extract_embedded_fonts &&
3331 att->name && att->type && att->data && att->data_size &&
3332 (strcmp(att->type, "application/x-truetype-font") == 0 ||
3333 strcmp(att->type, "application/x-font") == 0))
3334 ass_add_font(ass_library, att->name, att->data, att->data_size);
3337 #endif
3339 current_module="demux_open2";
3341 //file_format=demuxer->file_format;
3343 mpctx->d_audio=mpctx->demuxer->audio;
3344 mpctx->d_video=mpctx->demuxer->video;
3345 mpctx->d_sub=mpctx->demuxer->sub;
3347 // select audio stream
3348 select_audio(mpctx->demuxer, opts->audio_id, audio_lang);
3350 // DUMP STREAMS:
3351 if((stream_dump_type)&&(stream_dump_type<4)){
3352 FILE *f;
3353 demux_stream_t *ds=NULL;
3354 current_module="dump";
3355 // select stream to dump
3356 switch(stream_dump_type){
3357 case 1: ds=mpctx->d_audio;break;
3358 case 2: ds=mpctx->d_video;break;
3359 case 3: ds=mpctx->d_sub;break;
3361 if(!ds){
3362 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedStreamMissing);
3363 exit_player(mpctx, EXIT_ERROR);
3365 // disable other streams:
3366 if(mpctx->d_audio && mpctx->d_audio!=ds) {ds_free_packs(mpctx->d_audio); mpctx->d_audio->id=-2; }
3367 if(mpctx->d_video && mpctx->d_video!=ds) {ds_free_packs(mpctx->d_video); mpctx->d_video->id=-2; }
3368 if(mpctx->d_sub && mpctx->d_sub!=ds) {ds_free_packs(mpctx->d_sub); mpctx->d_sub->id=-2; }
3369 // let's dump it!
3370 f=fopen(stream_dump_name,"wb");
3371 if(!f){
3372 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile);
3373 exit_player(mpctx, EXIT_ERROR);
3375 while(!ds->eof){
3376 unsigned char* start;
3377 int in_size=ds_get_packet(ds,&start);
3378 if( (mpctx->demuxer->file_format==DEMUXER_TYPE_AVI || mpctx->demuxer->file_format==DEMUXER_TYPE_ASF || mpctx->demuxer->file_format==DEMUXER_TYPE_MOV)
3379 && stream_dump_type==2) fwrite(&in_size,1,4,f);
3380 if(in_size>0) fwrite(start,in_size,1,f);
3381 if(dvd_last_chapter>0) {
3382 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3383 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3384 break;
3387 fclose(f);
3388 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped);
3389 exit_player_with_rc(mpctx, EXIT_EOF, 0);
3392 mpctx->sh_audio=mpctx->d_audio->sh;
3393 mpctx->sh_video=mpctx->d_video->sh;
3395 if(mpctx->sh_video){
3397 current_module="video_read_properties";
3398 if(!video_read_properties(mpctx->sh_video)) {
3399 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
3400 mpctx->sh_video=mpctx->d_video->sh=NULL;
3401 } else {
3402 mp_msg(MSGT_CPLAYER,MSGL_V,MSGTR_FilefmtFourccSizeFpsFtime,
3403 mpctx->demuxer->file_format,mpctx->sh_video->format, mpctx->sh_video->disp_w,mpctx->sh_video->disp_h,
3404 mpctx->sh_video->fps,mpctx->sh_video->frametime
3407 /* need to set fps here for output encoders to pick it up in their init */
3408 if(force_fps){
3409 mpctx->sh_video->fps=force_fps;
3410 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3412 vo_fps = mpctx->sh_video->fps;
3414 if(!mpctx->sh_video->fps && !force_fps){
3415 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
3416 mpctx->sh_video=mpctx->d_video->sh=NULL;
3422 if(!mpctx->sh_video && !mpctx->sh_audio){
3423 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NoStreamFound);
3424 #ifdef CONFIG_DVBIN
3425 if(mpctx->stream->type == STREAMTYPE_DVB)
3427 int dir;
3428 int v = mpctx->last_dvb_step;
3429 if(v > 0)
3430 dir = DVB_CHANNEL_HIGHER;
3431 else
3432 dir = DVB_CHANNEL_LOWER;
3434 if(dvb_step_channel(mpctx->stream, dir)) {
3435 mpctx->stop_play = PT_NEXT_ENTRY;
3436 mpctx->dvbin_reopen = 1;
3439 #endif
3440 goto goto_next_file; // exit_player(MSGTR_Exit_error);
3443 /* display clip info */
3444 demux_info_print(mpctx->demuxer);
3446 //================== Read SUBTITLES (DVD & TEXT) ==========================
3447 if(vo_spudec==NULL && mpctx->sh_video &&
3448 (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)){
3449 init_vo_spudec(mpctx);
3452 if(mpctx->sh_video) {
3453 // after reading video params we should load subtitles because
3454 // we know fps so now we can adjust subtitle time to ~6 seconds AST
3455 // check .sub
3456 current_module="read_subtitles_file";
3457 if(sub_name){
3458 for (i = 0; sub_name[i] != NULL; ++i)
3459 add_subtitles(mpctx, sub_name[i], mpctx->sh_video->fps, 0);
3461 if(sub_auto) { // auto load sub file ...
3462 char *psub = get_path( "sub/" );
3463 char **tmp = sub_filenames((psub ? psub : ""), mpctx->filename);
3464 int i = 0;
3465 free(psub); // release the buffer created by get_path() above
3466 while (tmp[i]) {
3467 add_subtitles(mpctx, tmp[i], mpctx->sh_video->fps, 1);
3468 free(tmp[i++]);
3470 free(tmp);
3472 if (mpctx->set_of_sub_size > 0) {
3473 // setup global sub numbering
3474 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = mpctx->global_sub_size; // the global # of the first sub.
3475 mpctx->global_sub_size += mpctx->set_of_sub_size;
3479 if (mpctx->global_sub_size) {
3480 // find the best sub to use
3481 int vobsub_index_id = vobsub_get_index_by_id(vo_vobsub, vobsub_id);
3482 mpctx->global_sub_pos = -1; // no subs by default
3483 if (vobsub_index_id >= 0) {
3484 // if user asks for a vobsub id, use that first.
3485 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] + vobsub_index_id;
3486 } else if (opts->sub_id >= 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
3487 // if user asks for a dvd sub id, use that next.
3488 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id;
3489 } else if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] >= 0) {
3490 // if there are text subs to use, use those. (autosubs come last here)
3491 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_SUBS];
3492 } else if (opts->sub_id < 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
3493 // finally select subs by language and container hints
3494 if (opts->sub_id < 0 && dvdsub_lang)
3495 opts->sub_id = demuxer_sub_track_by_lang(mpctx->demuxer, dvdsub_lang);
3496 if (opts->sub_id < 0)
3497 opts->sub_id = demuxer_default_sub_track(mpctx->demuxer);
3498 if (opts->sub_id >= 0)
3499 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id;
3501 // rather than duplicate code, use the SUB_SELECT handler to init the right one.
3502 mpctx->global_sub_pos--;
3503 mp_property_do("sub",M_PROPERTY_STEP_UP,NULL, mpctx);
3504 if(subdata)
3505 switch (stream_dump_type) {
3506 case 3: list_sub_file(subdata); break;
3507 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break;
3508 case 6: dump_srt(subdata, mpctx->sh_video->fps); break;
3509 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break;
3510 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break;
3511 case 9: dump_sami(subdata, mpctx->sh_video->fps); break;
3515 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_FILENAME=%s\n",
3516 filename_recode(mpctx->filename));
3517 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_DEMUXER=%s\n", mpctx->demuxer->desc->name);
3518 if (mpctx->sh_video) {
3519 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3520 if (mpctx->sh_video->format >= 0x20202020)
3521 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format);
3522 else
3523 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format);
3524 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps*8);
3525 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w);
3526 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h);
3527 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps);
3528 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect);
3530 if (mpctx->sh_audio) {
3531 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3532 if (mpctx->sh_audio->format >= 0x20202020)
3533 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format);
3534 else
3535 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format);
3536 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps*8);
3537 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate);
3538 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels);
3540 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_LENGTH=%.2lf\n", demuxer_get_time_length(mpctx->demuxer));
3541 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_SEEKABLE=%d\n", mpctx->stream->seek ? 1 : 0);
3542 if (mpctx->demuxer) {
3543 if (mpctx->demuxer->num_chapters == 0)
3544 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
3545 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters);
3548 if(!mpctx->sh_video) goto main; // audio-only
3550 if(!reinit_video_chain(mpctx)) {
3551 if(!mpctx->sh_video){
3552 if(!mpctx->sh_audio) goto goto_next_file;
3553 goto main; // exit_player(MSGTR_Exit_error);
3557 if(mpctx->sh_video->output_flags & 0x08 && vo_spudec)
3558 spudec_set_hw_spu(vo_spudec,mpctx->video_out);
3560 #ifdef CONFIG_FREETYPE
3561 force_load_font = 1;
3562 #endif
3564 //================== MAIN: ==========================
3565 main:
3566 current_module="main";
3568 if(playing_msg) {
3569 char* msg = property_expand_string(mpctx, playing_msg);
3570 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",msg);
3571 free(msg);
3575 // Disable the term OSD in verbose mode
3576 if(verbose) term_osd = 0;
3579 //int frame_corr_num=0; //
3580 //float v_frame=0; // Video
3581 //float num_frames=0; // number of frames played
3583 int frame_time_remaining=0; // flag
3584 int blit_frame=0;
3585 mpctx->num_buffered_frames=0;
3587 // Make sure old OSD does not stay around,
3588 // e.g. with -fixed-vo and same-resolution files
3589 clear_osd_msgs();
3590 update_osd_msg(mpctx);
3592 //================ SETUP AUDIO ==========================
3594 if(mpctx->sh_audio){
3595 reinit_audio_chain(mpctx);
3596 if (mpctx->sh_audio && mpctx->sh_audio->codec)
3597 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name);
3600 current_module="av_init";
3602 if(mpctx->sh_video){
3603 mpctx->sh_video->timer=0;
3604 if (! ignore_start)
3605 audio_delay += mpctx->sh_video->stream_delay;
3607 if(mpctx->sh_audio){
3608 if (start_volume >= 0)
3609 mixer_setvolume(&mpctx->mixer, start_volume, start_volume);
3610 if (! ignore_start)
3611 audio_delay -= mpctx->sh_audio->stream_delay;
3612 mpctx->delay=-audio_delay;
3615 if(!mpctx->sh_audio){
3616 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound);
3617 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",mpctx->d_audio->packs);
3618 ds_free_packs(mpctx->d_audio); // free buffered chunks
3619 //mpctx->d_audio->id=-2; // do not read audio chunks
3620 //uninit_player(mpctx, INITIALIZED_AO); // close device
3622 if(!mpctx->sh_video){
3623 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Video_NoVideo);
3624 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",mpctx->d_video->packs);
3625 ds_free_packs(mpctx->d_video);
3626 mpctx->d_video->id=-2;
3627 //if(!fixed_vo) uninit_player(mpctx, INITIALIZED_VO);
3630 if (!mpctx->sh_video && !mpctx->sh_audio)
3631 goto goto_next_file;
3633 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
3634 if(force_fps && mpctx->sh_video){
3635 vo_fps = mpctx->sh_video->fps=force_fps;
3636 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3637 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,mpctx->sh_video->fps,mpctx->sh_video->frametime);
3640 #ifdef CONFIG_GUI
3641 if ( use_gui ) {
3642 if ( mpctx->sh_audio ) guiIntfStruct.AudioType=mpctx->sh_audio->channels; else guiIntfStruct.AudioType=0;
3643 if ( !mpctx->sh_video && mpctx->sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
3644 guiGetEvent( guiSetFileFormat,(char *)mpctx->demuxer->file_format );
3645 if ( guiGetEvent( guiSetValues,(char *)mpctx->sh_video ) ) goto goto_next_file;
3646 guiGetEvent( guiSetDemuxer,(char *)mpctx->demuxer );
3648 #endif
3650 mp_input_set_section(mpctx->input, NULL);
3651 //TODO: add desired (stream-based) sections here
3652 if (mpctx->stream->type==STREAMTYPE_TV) mp_input_set_section(mpctx->input, "tv");
3653 if (mpctx->stream->type==STREAMTYPE_DVDNAV) mp_input_set_section(mpctx->input, "dvdnav");
3655 //==================== START PLAYING =======================
3657 if(opts->loop_times>1) opts->loop_times--; else
3658 if(opts->loop_times==1) opts->loop_times = -1;
3660 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);
3662 total_time_usage_start=GetTimer();
3663 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
3664 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
3665 play_n_frames=play_n_frames_mf;
3667 if(play_n_frames==0){
3668 mpctx->stop_play=PT_NEXT_ENTRY; goto goto_next_file;
3671 if (seek_to_sec) {
3672 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE);
3673 end_at.pos += seek_to_sec;
3676 if (end_at.type == END_AT_SIZE) {
3677 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_MPEndposNoSizeBased);
3678 end_at.type = END_AT_NONE;
3681 #ifdef CONFIG_DVDNAV
3682 mp_dvdnav_context_free(mpctx);
3683 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3684 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
3685 mp_dvdnav_cell_has_changed(mpctx->stream,1);
3687 #endif
3689 get_relative_time(mpctx); // reset current delta
3690 mpctx->time_frame = 0;
3691 mpctx->drop_message_shown = 0;
3692 mpctx->update_video_immediately = true;
3693 mpctx->total_avsync_change = 0;
3695 while(!mpctx->stop_play){
3696 float aq_sleep_time=0;
3698 if(dvd_last_chapter>0) {
3699 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3700 if(cur_chapter!=-1 && cur_chapter+1>dvd_last_chapter)
3701 goto goto_next_file;
3704 if(!mpctx->sh_audio && mpctx->d_audio->sh) {
3705 mpctx->sh_audio = mpctx->d_audio->sh;
3706 mpctx->sh_audio->ds = mpctx->d_audio;
3707 reinit_audio_chain(mpctx);
3710 /*========================== PLAY AUDIO ============================*/
3712 if (mpctx->sh_audio && !mpctx->paused)
3713 if (!fill_audio_out_buffers(mpctx))
3714 // at eof, all audio at least written to ao
3715 if (!mpctx->sh_video)
3716 mpctx->stop_play = AT_END_OF_FILE;
3719 if(!mpctx->sh_video) {
3720 // handle audio-only case:
3721 double a_pos=0;
3722 // sh_audio can be NULL due to video stream switching
3723 // TODO: handle this better
3724 if (mpctx->sh_audio)
3725 a_pos = playing_audio_pts(mpctx);
3727 print_status(mpctx, a_pos, false);
3729 if(end_at.type == END_AT_TIME && end_at.pos < a_pos)
3730 mpctx->stop_play = PT_NEXT_ENTRY;
3731 update_osd_msg(mpctx);
3733 } else {
3735 /*========================== PLAY VIDEO ============================*/
3737 vo_pts=mpctx->sh_video->timer*90000.0;
3738 vo_fps=mpctx->sh_video->fps;
3740 if (!mpctx->num_buffered_frames) {
3741 double frame_time = update_video(mpctx, &blit_frame);
3742 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
3743 if (mpctx->sh_video->vf_initialized < 0) {
3744 mp_msg(MSGT_CPLAYER,MSGL_FATAL, MSGTR_NotInitializeVOPorVO);
3745 mpctx->stop_play = PT_NEXT_ENTRY;
3746 goto goto_next_file;
3748 if (blit_frame) {
3749 struct vf_instance *vf = mpctx->sh_video->vfilter;
3750 vf->control(vf, VFCTRL_DRAW_EOSD, NULL);
3751 vf->control(vf, VFCTRL_DRAW_OSD, mpctx->osd);
3752 vo_osd_changed(0);
3754 if (frame_time < 0)
3755 mpctx->stop_play = AT_END_OF_FILE;
3756 else {
3757 // might return with !eof && !blit_frame if !correct_pts
3758 mpctx->num_buffered_frames += blit_frame;
3759 if (mpctx->update_video_immediately) {
3760 // Show this frame immediately, rest normally
3761 mpctx->update_video_immediately = false;
3762 } else {
3763 mpctx->time_frame += frame_time / opts->playback_speed;
3764 adjust_sync(mpctx, frame_time);
3769 // ==========================================================================
3771 // current_module="draw_osd";
3772 // if(vo_config_count) mpctx->video_out->draw_osd();
3774 #ifdef CONFIG_GUI
3775 if(use_gui) guiEventHandling();
3776 #endif
3778 current_module="vo_check_events";
3779 vo_check_events(mpctx->video_out);
3781 #ifdef CONFIG_X11
3782 if (stop_xscreensaver) {
3783 current_module = "stop_xscreensaver";
3784 xscreensaver_heartbeat(mpctx->x11_state);
3786 #endif
3787 if (heartbeat_cmd) {
3788 static unsigned last_heartbeat;
3789 unsigned now = GetTimerMS();
3790 if (now - last_heartbeat > 30000) {
3791 last_heartbeat = now;
3792 system(heartbeat_cmd);
3796 frame_time_remaining = sleep_until_update(mpctx, &mpctx->time_frame, &aq_sleep_time);
3798 //====================== FLIP PAGE (VIDEO BLT): =========================
3800 current_module="flip_page";
3801 if (!frame_time_remaining && blit_frame) {
3802 unsigned int t2=GetTimer();
3804 vo_flip_page(mpctx->video_out);
3805 mpctx->num_buffered_frames--;
3807 mpctx->last_vo_flip_duration = (GetTimer() - t2) * 0.000001;
3808 vout_time_usage += mpctx->last_vo_flip_duration;
3809 print_status(mpctx, MP_NOPTS_VALUE, true);
3811 else
3812 print_status(mpctx, MP_NOPTS_VALUE, false);
3814 //============================ Auto QUALITY ============================
3816 /*Output quality adjustments:*/
3817 if(auto_quality>0){
3818 current_module="autoq";
3819 // float total=0.000001f * (GetTimer()-aq_total_time);
3820 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
3821 if(output_quality<auto_quality && aq_sleep_time>0)
3822 ++output_quality;
3823 else
3824 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
3825 if(output_quality>1 && aq_sleep_time<0)
3826 --output_quality;
3827 else
3828 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
3829 output_quality=0;
3830 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
3831 set_video_quality(mpctx->sh_video,output_quality);
3834 if (!frame_time_remaining && blit_frame) {
3835 if (play_n_frames >= 0) {
3836 --play_n_frames;
3837 if (play_n_frames <= 0)
3838 mpctx->stop_play = PT_NEXT_ENTRY;
3840 if (mpctx->step_frames > 0) {
3841 mpctx->step_frames--;
3842 if (mpctx->step_frames == 0)
3843 pause_player(mpctx);
3848 // FIXME: add size based support for -endpos
3849 if (end_at.type == END_AT_TIME &&
3850 !frame_time_remaining && end_at.pos <= mpctx->sh_video->pts)
3851 mpctx->stop_play = PT_NEXT_ENTRY;
3853 } // end if(mpctx->sh_video)
3855 #ifdef CONFIG_DVDNAV
3856 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
3857 nav_highlight_t hl;
3858 mp_dvdnav_get_highlight (mpctx->stream, &hl);
3859 osd_set_nav_box (hl.sx, hl.sy, hl.ex, hl.ey);
3860 vo_osd_changed (OSDTYPE_DVDNAV);
3862 if (mp_dvdnav_stream_has_changed(mpctx->stream)) {
3863 double ar = -1.0;
3864 if (stream_control (mpctx->demuxer->stream,
3865 STREAM_CTRL_GET_ASPECT_RATIO, &ar)
3866 != STREAM_UNSUPPORTED)
3867 mpctx->sh_video->stream_aspect = ar;
3870 #endif
3872 //================= Keyboard events, SEEKing ====================
3874 current_module="key_events";
3877 while (1) {
3878 mp_cmd_t* cmd;
3879 while ((cmd = mp_input_get_cmd(mpctx->input, 0,0,0)) != NULL) {
3880 run_command(mpctx, cmd);
3881 mp_cmd_free(cmd);
3882 if (mpctx->stop_play)
3883 break;
3885 if (!mpctx->paused || mpctx->stop_play || mpctx->rel_seek_secs
3886 || mpctx->abs_seek_pos)
3887 break;
3888 if (mpctx->sh_video) {
3889 update_osd_msg(mpctx);
3890 int hack = vo_osd_changed(0);
3891 vo_osd_changed(hack);
3892 if (hack)
3893 if (redraw_osd(mpctx->sh_video, mpctx->osd) < 0) {
3894 add_step_frame(mpctx);
3895 break;
3897 else
3898 vo_osd_changed(0);
3900 pause_loop(mpctx);
3904 // handle -sstep
3905 if (step_sec > 0 && !mpctx->paused) {
3906 mpctx->osd_function=OSD_FFW;
3907 mpctx->rel_seek_secs+=step_sec;
3910 edl_update(mpctx);
3912 /* Looping. */
3913 if(mpctx->stop_play==AT_END_OF_FILE && opts->loop_times>=0) {
3914 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d\n", opts->loop_times);
3916 if(opts->loop_times>1) opts->loop_times--; else
3917 if(opts->loop_times==1) opts->loop_times=-1;
3918 play_n_frames=play_n_frames_mf;
3919 mpctx->stop_play=0;
3920 mpctx->abs_seek_pos=SEEK_ABSOLUTE; mpctx->rel_seek_secs=seek_to_sec;
3921 loop_seek = 1;
3924 if(mpctx->rel_seek_secs || mpctx->abs_seek_pos){
3925 if (seek(mpctx, mpctx->rel_seek_secs, mpctx->abs_seek_pos) >= 0) {
3926 // Set OSD:
3927 if(!loop_seek){
3928 if( !edl_decision )
3929 set_osd_bar(mpctx, 0,"Position",0,100,demuxer_get_percent_pos(mpctx->demuxer));
3933 mpctx->rel_seek_secs=0;
3934 mpctx->abs_seek_pos=0;
3935 loop_seek=0;
3936 edl_decision = 0;
3939 #ifdef CONFIG_GUI
3940 if(use_gui){
3941 guiEventHandling();
3942 if(mpctx->demuxer->file_format==DEMUXER_TYPE_AVI && mpctx->sh_video && mpctx->sh_video->video.dwLength>2){
3943 // get pos from frame number / total frames
3944 guiIntfStruct.Position=(float)mpctx->d_video->pack_no*100.0f/mpctx->sh_video->video.dwLength;
3945 } else {
3946 guiIntfStruct.Position=demuxer_get_percent_pos(mpctx->demuxer);
3948 if ( mpctx->sh_video ) guiIntfStruct.TimeSec=mpctx->sh_video->pts;
3949 else if ( mpctx->sh_audio ) guiIntfStruct.TimeSec=playing_audio_pts(mpctx);
3950 guiIntfStruct.LengthInSec=demuxer_get_time_length(mpctx->demuxer);
3951 guiGetEvent( guiReDraw,NULL );
3952 guiGetEvent( guiSetVolume,NULL );
3953 if(guiIntfStruct.Playing==0) break; // STOP
3954 if(guiIntfStruct.Playing==2) mpctx->osd_function=OSD_PAUSE;
3955 if ( guiIntfStruct.DiskChanged || guiIntfStruct.NewPlay ) goto goto_next_file;
3956 #ifdef CONFIG_DVDREAD
3957 if ( mpctx->stream->type == STREAMTYPE_DVD )
3959 dvd_priv_t * dvdp = mpctx->stream->priv;
3960 guiIntfStruct.DVD.current_chapter=dvd_chapter_from_cell(dvdp,guiIntfStruct.DVD.current_title-1, dvdp->cur_cell)+1;
3962 #endif
3964 #endif /* CONFIG_GUI */
3966 } // while(!mpctx->stop_play)
3968 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",mpctx->stop_play);
3970 #ifdef CONFIG_DVBIN
3971 if(mpctx->dvbin_reopen)
3973 mpctx->stop_play = 0;
3974 uninit_player(mpctx, INITIALIZED_ALL-(INITIALIZED_GUI|INITIALIZED_STREAM|INITIALIZED_GETCH2|(opts->fixed_vo?INITIALIZED_VO:0)));
3975 cache_uninit(mpctx->stream);
3976 mpctx->dvbin_reopen = 0;
3977 goto goto_enable_cache;
3979 #endif
3982 goto_next_file: // don't jump here after ao/vo/getch initialization!
3984 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
3986 if(benchmark){
3987 double tot=video_time_usage+vout_time_usage+audio_time_usage;
3988 double total_time_usage;
3989 total_time_usage_start=GetTimer()-total_time_usage_start;
3990 total_time_usage = (float)total_time_usage_start*0.000001;
3991 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
3992 video_time_usage,vout_time_usage,audio_time_usage,
3993 total_time_usage-tot,total_time_usage);
3994 if(total_time_usage>0.0)
3995 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
3996 100.0*video_time_usage/total_time_usage,
3997 100.0*vout_time_usage/total_time_usage,
3998 100.0*audio_time_usage/total_time_usage,
3999 100.0*(total_time_usage-tot)/total_time_usage,
4000 100.0);
4001 if(total_frame_cnt && frame_dropping)
4002 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
4003 total_frame_cnt-drop_frame_cnt,
4004 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
4005 drop_frame_cnt,
4006 100*drop_frame_cnt/total_frame_cnt,
4007 total_frame_cnt,
4008 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
4011 // time to uninit all, except global stuff:
4012 uninit_player(mpctx, INITIALIZED_ALL-(INITIALIZED_GUI+(opts->fixed_vo?INITIALIZED_VO:0)));
4014 if(mpctx->set_of_sub_size > 0) {
4015 current_module="sub_free";
4016 for(i = 0; i < mpctx->set_of_sub_size; ++i) {
4017 sub_free(mpctx->set_of_subtitles[i]);
4018 #ifdef CONFIG_ASS
4019 if(mpctx->set_of_ass_tracks[i])
4020 ass_free_track( mpctx->set_of_ass_tracks[i] );
4021 #endif
4023 mpctx->set_of_sub_size = 0;
4025 vo_sub_last = vo_sub=NULL;
4026 subdata=NULL;
4027 #ifdef CONFIG_ASS
4028 ass_track = NULL;
4029 if(ass_library)
4030 ass_clear_fonts(ass_library);
4031 #endif
4033 if (!mpctx->stop_play) // In case some goto jumped here...
4034 mpctx->stop_play = PT_NEXT_ENTRY;
4036 int playtree_direction = 1;
4038 if(mpctx->stop_play == PT_NEXT_ENTRY || mpctx->stop_play == PT_PREV_ENTRY) {
4039 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->play_tree_step,0) != PLAY_TREE_ITER_ENTRY) {
4040 play_tree_iter_free(mpctx->playtree_iter);
4041 mpctx->playtree_iter = NULL;
4043 mpctx->play_tree_step = 1;
4044 } else if(mpctx->stop_play == PT_UP_NEXT || mpctx->stop_play == PT_UP_PREV) {
4045 int direction = mpctx->stop_play == PT_UP_NEXT ? 1 : -1;
4046 if(mpctx->playtree_iter) {
4047 if(play_tree_iter_up_step(mpctx->playtree_iter,direction,0) != PLAY_TREE_ITER_ENTRY) {
4048 play_tree_iter_free(mpctx->playtree_iter);
4049 mpctx->playtree_iter = NULL;
4052 } else if (mpctx->stop_play == PT_STOP) {
4053 play_tree_iter_free(mpctx->playtree_iter);
4054 mpctx->playtree_iter = NULL;
4055 } else { // NEXT PREV SRC
4056 playtree_direction = mpctx->stop_play == PT_PREV_SRC ? -1 : 1;
4059 while(mpctx->playtree_iter != NULL) {
4060 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter, playtree_direction);
4061 if(mpctx->filename == NULL) {
4062 if(play_tree_iter_step(mpctx->playtree_iter, playtree_direction, 0) != PLAY_TREE_ITER_ENTRY) {
4063 play_tree_iter_free(mpctx->playtree_iter);
4064 mpctx->playtree_iter = NULL;
4066 } else
4067 break;
4070 #ifdef CONFIG_GUI
4071 if(use_gui && !mpctx->playtree_iter) {
4072 #ifdef CONFIG_DVDREAD
4073 if(!guiIntfStruct.DiskChanged)
4074 #endif
4075 mplEnd();
4077 #endif
4079 if(use_gui || mpctx->playtree_iter != NULL || player_idle_mode){
4080 if(!mpctx->playtree_iter) mpctx->filename = NULL;
4081 mpctx->stop_play = 0;
4082 goto play_next_file;
4086 exit_player_with_rc(mpctx, EXIT_EOF, 0);
4088 return 1;
4090 #endif /* DISABLE_MAIN */