mplayer.c: silence some compiler warnings
[mplayer/glamo.git] / mplayer.c
blobd7fd2893b68a384416134e7890fcdc670872d2c8
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 /// \file
20 /// \ingroup Properties Command2Property OSDMsgStack
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stdbool.h>
25 #include "config.h"
26 #include "talloc.h"
28 #if defined(__MINGW32__) || defined(__CYGWIN__)
29 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/
30 #include <windows.h>
31 #endif
32 #include <string.h>
33 #include <unistd.h>
35 // #include <sys/mman.h>
36 #include <sys/types.h>
37 #ifndef __MINGW32__
38 #include <sys/ioctl.h>
39 #include <sys/wait.h>
40 #else
41 #define SIGHUP 1 /* hangup */
42 #define SIGQUIT 3 /* quit */
43 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
44 #define SIGBUS 10 /* bus error */
45 #define SIGPIPE 13 /* broken pipe */
46 #endif
48 #include <sys/time.h>
49 #include <sys/stat.h>
51 #include <signal.h>
52 #include <time.h>
53 #include <fcntl.h>
54 #include <limits.h>
56 #include <errno.h>
58 #include "mp_msg.h"
59 #include "av_log.h"
62 #include "m_option.h"
63 #include "m_config.h"
64 #include "mplayer.h"
65 #include "access_mpcontext.h"
66 #include "m_property.h"
68 #include "cfg-mplayer-def.h"
70 #include "ffmpeg_files/intreadwrite.h"
71 #include "libavutil/avstring.h"
73 #include "subreader.h"
75 #include "mp_osd.h"
76 #include "libvo/video_out.h"
78 #include "libvo/font_load.h"
79 #include "libvo/sub.h"
81 #ifdef CONFIG_X11
82 #include "libvo/x11_common.h"
83 #endif
85 #include "libao2/audio_out.h"
87 #include "codec-cfg.h"
89 #include "edl.h"
91 #include "spudec.h"
92 #include "vobsub.h"
94 #include "osdep/getch2.h"
95 #include "osdep/timer.h"
96 #include "osdep/findfiles.h"
98 #include "input/input.h"
100 const int under_mencoder = 0;
101 int slave_mode=0;
102 int player_idle_mode=0;
103 int quiet=0;
104 int enable_mouse_movements=0;
105 float start_volume = -1;
107 #include "osdep/priority.h"
109 char *heartbeat_cmd;
111 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
113 #ifdef HAVE_RTC
114 #ifdef __linux__
115 #include <linux/rtc.h>
116 #else
117 #include <rtc.h>
118 #define RTC_IRQP_SET RTCIO_IRQP_SET
119 #define RTC_PIE_ON RTCIO_PIE_ON
120 #endif /* __linux__ */
121 #endif /* HAVE_RTC */
123 #include "stream/tv.h"
124 #include "stream/stream_radio.h"
125 #ifdef CONFIG_DVBIN
126 #include "stream/dvbin.h"
127 #endif
128 #include "stream/cache2.h"
130 //**************************************************************************//
131 // Playtree
132 //**************************************************************************//
133 #include "playtree.h"
134 #include "playtreeparser.h"
136 //**************************************************************************//
137 // Config
138 //**************************************************************************//
139 #include "parser-cfg.h"
140 #include "parser-mpcmd.h"
142 //**************************************************************************//
143 // Config file
144 //**************************************************************************//
146 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
148 #include "get_path.h"
150 //**************************************************************************//
151 //**************************************************************************//
152 // Input media streaming & demultiplexer:
153 //**************************************************************************//
155 static int max_framesize=0;
157 #include "stream/stream.h"
158 #include "libmpdemux/demuxer.h"
159 #include "libmpdemux/stheader.h"
161 #ifdef CONFIG_DVDREAD
162 #include "stream/stream_dvd.h"
163 #endif
164 #include "stream/stream_dvdnav.h"
166 #include "libmpcodecs/dec_audio.h"
167 #include "libmpcodecs/dec_video.h"
168 #include "libmpcodecs/mp_image.h"
169 #include "libmpcodecs/vf.h"
170 #include "libmpcodecs/vd.h"
172 #include "mixer.h"
174 #include "mp_core.h"
175 #include "options.h"
176 #include "defaultopts.h"
178 static const char help_text[]=_(
179 "Usage: mplayer [options] [url|path/]filename\n"
180 "\n"
181 "Basic options: (complete list in the man page)\n"
182 " -vo <drv> select video output driver ('-vo help' for a list)\n"
183 " -ao <drv> select audio output driver ('-ao help' for a list)\n"
184 #ifdef CONFIG_VCD
185 " vcd://<trackno> play (S)VCD (Super Video CD) track (raw device, no mount)\n"
186 #endif
187 #ifdef CONFIG_DVDREAD
188 " dvd://<titleno> play DVD title from device instead of plain file\n"
189 #endif
190 " -alang/-slang select DVD audio/subtitle language (by 2-char country code)\n"
191 " -ss <position> seek to given (seconds or hh:mm:ss) position\n"
192 " -nosound do not play sound\n"
193 " -fs fullscreen playback (or -vm, -zoom, details in the man page)\n"
194 " -x <x> -y <y> set display resolution (for use with -vm or -zoom)\n"
195 " -sub <file> specify subtitle file to use (also see -subfps, -subdelay)\n"
196 " -playlist <file> specify playlist file\n"
197 " -vid x -aid y select video (x) and audio (y) stream to play\n"
198 " -fps x -srate y change video (x fps) and audio (y Hz) rate\n"
199 " -pp <quality> enable postprocessing filter (details in the man page)\n"
200 " -framedrop enable frame dropping (for slow machines)\n"
201 "\n"
202 "Basic keys: (complete list in the man page, also check input.conf)\n"
203 " <- or -> seek backward/forward 10 seconds\n"
204 " down or up seek backward/forward 1 minute\n"
205 " pgdown or pgup seek backward/forward 10 minutes\n"
206 " < or > step backward/forward in playlist\n"
207 " p or SPACE pause movie (press any key to continue)\n"
208 " q or ESC stop playing and quit program\n"
209 " + or - adjust audio delay by +/- 0.1 second\n"
210 " o cycle OSD mode: none / seekbar / seekbar + timer\n"
211 " * or / increase or decrease PCM volume\n"
212 " x or z adjust subtitle delay by +/- 0.1 second\n"
213 " r or t adjust subtitle position up/down, also see -vf expand\n"
214 "\n"
215 " * * * SEE THE MAN PAGE FOR DETAILS, FURTHER (ADVANCED) OPTIONS AND KEYS * * *\n"
216 "\n");
219 #define Exit_SIGILL_RTCpuSel _(\
220 "- MPlayer crashed by an 'Illegal Instruction'.\n"\
221 " It may be a bug in our new runtime CPU-detection code...\n"\
222 " Please read DOCS/HTML/en/bugreports.html.\n")
224 #define Exit_SIGILL _(\
225 "- MPlayer crashed by an 'Illegal Instruction'.\n"\
226 " It usually happens when you run it on a CPU different than the one it was\n"\
227 " compiled/optimized for.\n"\
228 " Verify this!\n")
230 #define Exit_SIGSEGV_SIGFPE _(\
231 "- MPlayer crashed by bad usage of CPU/FPU/RAM.\n"\
232 " Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and\n"\
233 " disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.\n")
235 #define Exit_SIGCRASH _(\
236 "- MPlayer crashed. This shouldn't happen.\n"\
237 " It can be a bug in the MPlayer code _or_ in your drivers _or_ in your\n"\
238 " gcc version. If you think it's MPlayer's fault, please read\n"\
239 " DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and\n"\
240 " won't help unless you provide this information when reporting a possible bug.\n")
242 #define SystemTooSlow _("\n\n"\
243 " ************************************************\n"\
244 " **** Your system is too SLOW to play this! ****\n"\
245 " ************************************************\n\n"\
246 "Possible reasons, problems, workarounds:\n"\
247 "- Most common: broken/buggy _audio_ driver\n"\
248 " - Try -ao sdl or use the OSS emulation of ALSA.\n"\
249 " - Experiment with different values for -autosync, 30 is a good start.\n"\
250 "- Slow video output\n"\
251 " - Try a different -vo driver (-vo help for a list) or try -framedrop!\n"\
252 "- Slow CPU\n"\
253 " - Don't try to play a big DVD/DivX on a slow CPU! Try some of the lavdopts,\n"\
254 " e.g. -vfm ffmpeg -lavdopts lowres=1:fast:skiploopfilter=all.\n"\
255 "- Broken file\n"\
256 " - Try various combinations of -nobps -ni -forceidx -mc 0.\n"\
257 "- Slow media (NFS/SMB mounts, DVD, VCD etc)\n"\
258 " - Try -cache 8192.\n"\
259 "- Are you using -cache to play a non-interleaved AVI file?\n"\
260 " - Try -nocache.\n"\
261 "Read DOCS/HTML/en/video.html for tuning/speedup tips.\n"\
262 "If none of this helps you, read DOCS/HTML/en/bugreports.html.\n\n")
265 //**************************************************************************//
266 //**************************************************************************//
268 // Common FIFO functions, and keyboard/event FIFO code
269 #include "mp_fifo.h"
270 int noconsolecontrols=0;
271 //**************************************************************************//
273 // benchmark:
274 double video_time_usage=0;
275 double vout_time_usage=0;
276 static double audio_time_usage=0;
277 static int total_time_usage_start=0;
278 static int total_frame_cnt=0;
279 static int drop_frame_cnt=0; // total number of dropped frames
280 int benchmark=0;
282 // options:
283 int auto_quality=0;
284 static int output_quality=0;
286 static int list_properties = 0;
288 int term_osd = 1;
289 static char* term_osd_esc = "\x1b[A\r\x1b[K";
290 static char* playing_msg = NULL;
291 // seek:
292 static double seek_to_sec;
293 static off_t seek_to_byte=0;
294 static off_t step_sec=0;
296 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 };
298 // A/V sync:
299 int autosync=0; // 30 might be a good default value.
301 // codecs:
302 char **audio_codec_list=NULL; // override audio codec
303 char **video_codec_list=NULL; // override video codec
304 char **audio_fm_list=NULL; // override audio codec family
305 char **video_fm_list=NULL; // override video codec family
307 // demuxer:
308 extern char *demuxer_name; // override demuxer
309 extern char *audio_demuxer_name; // override audio demuxer
310 extern char *sub_demuxer_name; // override sub demuxer
312 // this dvdsub_id was selected via slang
313 // use this to allow dvdnav to follow -slang across stream resets,
314 // in particular the subtitle ID for a language changes
315 int dvdsub_lang_id;
316 int vobsub_id=-1;
317 char* audio_lang=NULL;
318 char* dvdsub_lang=NULL;
319 static char* spudec_ifo=NULL;
320 int forced_subs_only=0;
321 int file_filter=1;
323 // cache2:
324 int stream_cache_size=-1;
325 #ifdef CONFIG_STREAM_CACHE
326 extern int cache_fill_status;
328 float stream_cache_min_percent=20.0;
329 float stream_cache_seek_min_percent=50.0;
330 #else
331 #define cache_fill_status 0
332 #endif
334 // dump:
335 static char *stream_dump_name="stream.dump";
336 int stream_dump_type=0;
338 // A-V sync:
339 static float default_max_pts_correction=-1;//0.01f;
340 float audio_delay=0;
341 static int ignore_start=0;
343 static int softsleep=0;
345 double force_fps=0;
346 static int force_srate=0;
347 static int audio_output_format=-1; // AF_FORMAT_UNKNOWN
348 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
349 static int play_n_frames=-1;
350 static int play_n_frames_mf=-1;
352 // sub:
353 char *font_name=NULL;
354 char *sub_font_name=NULL;
355 extern int font_fontconfig;
356 float font_factor=0.75;
357 char **sub_name=NULL;
358 float sub_delay=0;
359 float sub_fps=0;
360 int sub_auto = 1;
361 char *vobsub_name=NULL;
362 /*DSP!!char *dsp=NULL;*/
363 int subcc_enabled=0;
364 int suboverlap_enabled = 1;
366 #include "ass_mp.h"
368 char* current_module=NULL; // for debugging
371 // ---
373 #ifdef CONFIG_MENU
374 #include "m_struct.h"
375 #include "libmenu/menu.h"
376 extern vf_info_t vf_info_menu;
377 static const vf_info_t* const libmenu_vfs[] = {
378 &vf_info_menu,
379 NULL
381 static vf_instance_t* vf_menu = NULL;
382 int use_menu = 0;
383 static char* menu_cfg = NULL;
384 static char* menu_root = "main";
385 #endif
388 #ifdef HAVE_RTC
389 static int nortc = 1;
390 static char* rtc_device;
391 #endif
393 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
394 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
395 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode.
396 int use_filedir_conf;
397 int use_filename_title;
399 #include "mpcommon.h"
400 #include "command.h"
402 #include "metadata.h"
404 #define mp_basename2(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1))
406 const void *mpctx_get_video_out(MPContext *mpctx)
408 return mpctx->video_out;
411 const void *mpctx_get_audio_out(MPContext *mpctx)
413 return mpctx->audio_out;
416 void *mpctx_get_demuxer(MPContext *mpctx)
418 return mpctx->demuxer;
421 void *mpctx_get_playtree_iter(MPContext *mpctx)
423 return mpctx->playtree_iter;
426 void *mpctx_get_mixer(MPContext *mpctx)
428 return &mpctx->mixer;
431 int mpctx_get_global_sub_size(MPContext *mpctx)
433 return mpctx->global_sub_size;
436 int mpctx_get_osd_function(MPContext *mpctx)
438 return mpctx->osd_function;
441 static float get_relative_time(struct MPContext *mpctx)
443 unsigned int new_time = GetTimer();
444 unsigned int delta = new_time - mpctx->last_time;
445 mpctx->last_time = new_time;
446 return delta * 0.000001;
449 static int is_valid_metadata_type(struct MPContext *mpctx, metadata_t type) {
450 switch (type)
452 /* check for valid video stream */
453 case META_VIDEO_CODEC:
454 case META_VIDEO_BITRATE:
455 case META_VIDEO_RESOLUTION:
457 if (!mpctx->sh_video)
458 return 0;
459 break;
462 /* check for valid audio stream */
463 case META_AUDIO_CODEC:
464 case META_AUDIO_BITRATE:
465 case META_AUDIO_SAMPLES:
467 if (!mpctx->sh_audio)
468 return 0;
469 break;
472 /* check for valid demuxer */
473 case META_INFO_TITLE:
474 case META_INFO_ARTIST:
475 case META_INFO_ALBUM:
476 case META_INFO_YEAR:
477 case META_INFO_COMMENT:
478 case META_INFO_TRACK:
479 case META_INFO_GENRE:
481 if (!mpctx->demuxer)
482 return 0;
483 break;
486 default:
487 break;
490 return 1;
493 static char *get_demuxer_info(struct MPContext *mpctx, char *tag) {
494 char **info = mpctx->demuxer->info;
495 int n;
497 if (!info || !tag)
498 return NULL;
500 for (n = 0; info[2*n] != NULL ; n++)
501 if (!strcasecmp (info[2*n], tag))
502 break;
504 return info[2*n+1] ? strdup (info[2*n+1]) : NULL;
507 char *get_metadata(struct MPContext *mpctx, metadata_t type)
509 char *meta = NULL;
510 sh_audio_t * const sh_audio = mpctx->sh_audio;
511 sh_video_t * const sh_video = mpctx->sh_video;
513 if (!is_valid_metadata_type(mpctx, type))
514 return NULL;
516 switch (type)
518 case META_NAME:
520 return strdup (mp_basename2 (mpctx->filename));
523 case META_VIDEO_CODEC:
525 if (sh_video->format == 0x10000001)
526 meta = strdup ("mpeg1");
527 else if (sh_video->format == 0x10000002)
528 meta = strdup ("mpeg2");
529 else if (sh_video->format == 0x10000004)
530 meta = strdup ("mpeg4");
531 else if (sh_video->format == 0x10000005)
532 meta = strdup ("h264");
533 else if (sh_video->format >= 0x20202020)
535 meta = malloc (8);
536 sprintf (meta, "%.4s", (char *) &sh_video->format);
538 else
540 meta = malloc (8);
541 sprintf (meta, "0x%08X", sh_video->format);
543 return meta;
546 case META_VIDEO_BITRATE:
548 meta = malloc (16);
549 sprintf (meta, "%d kbps", (int) (sh_video->i_bps * 8 / 1024));
550 return meta;
553 case META_VIDEO_RESOLUTION:
555 meta = malloc (16);
556 sprintf (meta, "%d x %d", sh_video->disp_w, sh_video->disp_h);
557 return meta;
560 case META_AUDIO_CODEC:
562 if (sh_audio->codec && sh_audio->codec->name)
563 meta = strdup (sh_audio->codec->name);
564 return meta;
567 case META_AUDIO_BITRATE:
569 meta = malloc (16);
570 sprintf (meta, "%d kbps", (int) (sh_audio->i_bps * 8/1000));
571 return meta;
574 case META_AUDIO_SAMPLES:
576 meta = malloc (16);
577 sprintf (meta, "%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels);
578 return meta;
581 /* check for valid demuxer */
582 case META_INFO_TITLE:
583 return get_demuxer_info(mpctx, "Title");
585 case META_INFO_ARTIST:
586 return get_demuxer_info(mpctx, "Artist");
588 case META_INFO_ALBUM:
589 return get_demuxer_info(mpctx, "Album");
591 case META_INFO_YEAR:
592 return get_demuxer_info(mpctx, "Year");
594 case META_INFO_COMMENT:
595 return get_demuxer_info(mpctx, "Comment");
597 case META_INFO_TRACK:
598 return get_demuxer_info(mpctx, "Track");
600 case META_INFO_GENRE:
601 return get_demuxer_info(mpctx, "Genre");
603 default:
604 break;
607 return meta;
610 /// step size of mixer changes
611 int volstep = 3;
613 #ifdef CONFIG_DVDNAV
614 static void mp_dvdnav_context_free(MPContext *ctx){
615 if (ctx->nav_smpi) free_mp_image(ctx->nav_smpi);
616 ctx->nav_smpi = NULL;
617 if (ctx->nav_buffer) free(ctx->nav_buffer);
618 ctx->nav_buffer = NULL;
619 ctx->nav_start = NULL;
620 ctx->nav_in_size = 0;
622 #endif
624 void uninit_player(struct MPContext *mpctx, unsigned int mask){
625 mask &= mpctx->initialized_flags;
627 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
629 if(mask&INITIALIZED_ACODEC){
630 mpctx->initialized_flags&=~INITIALIZED_ACODEC;
631 current_module="uninit_acodec";
632 if(mpctx->sh_audio) uninit_audio(mpctx->sh_audio);
633 mpctx->sh_audio=NULL;
634 mpctx->mixer.afilter = NULL;
637 if(mask&INITIALIZED_VCODEC){
638 mpctx->initialized_flags&=~INITIALIZED_VCODEC;
639 current_module="uninit_vcodec";
640 if(mpctx->sh_video) uninit_video(mpctx->sh_video);
641 mpctx->sh_video=NULL;
642 #ifdef CONFIG_MENU
643 vf_menu=NULL;
644 #endif
647 if(mask&INITIALIZED_DEMUXER){
648 mpctx->initialized_flags&=~INITIALIZED_DEMUXER;
649 current_module="free_demuxer";
650 if (mpctx->num_sources) {
651 mpctx->demuxer = mpctx->sources[0].demuxer;
652 for (int i = 1; i < mpctx->num_sources; i++) {
653 free_stream(mpctx->sources[i].stream);
654 free_demuxer(mpctx->sources[i].demuxer);
657 talloc_free(mpctx->sources);
658 mpctx->sources = NULL;
659 mpctx->num_sources = 0;
660 talloc_free(mpctx->timeline);
661 mpctx->timeline = NULL;
662 mpctx->num_timeline_parts = 0;
663 talloc_free(mpctx->chapters);
664 mpctx->chapters = NULL;
665 mpctx->num_chapters = 0;
666 mpctx->video_offset = 0;
667 if(mpctx->demuxer){
668 mpctx->stream=mpctx->demuxer->stream;
669 free_demuxer(mpctx->demuxer);
671 mpctx->demuxer=NULL;
674 // kill the cache process:
675 if(mask&INITIALIZED_STREAM){
676 mpctx->initialized_flags&=~INITIALIZED_STREAM;
677 current_module="uninit_stream";
678 if(mpctx->stream) free_stream(mpctx->stream);
679 mpctx->stream=NULL;
682 if(mask&INITIALIZED_VO){
683 mpctx->initialized_flags&=~INITIALIZED_VO;
684 current_module="uninit_vo";
685 vo_destroy(mpctx->video_out);
686 mpctx->video_out=NULL;
687 #ifdef CONFIG_DVDNAV
688 mp_dvdnav_context_free(mpctx);
689 #endif
692 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code.
693 if(mask&INITIALIZED_GETCH2){
694 mpctx->initialized_flags&=~INITIALIZED_GETCH2;
695 current_module="uninit_getch2";
696 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
697 // restore terminal:
698 getch2_disable();
701 if(mask&INITIALIZED_VOBSUB){
702 mpctx->initialized_flags&=~INITIALIZED_VOBSUB;
703 current_module="uninit_vobsub";
704 if(vo_vobsub) vobsub_close(vo_vobsub);
705 vo_vobsub=NULL;
708 if (mask&INITIALIZED_SPUDEC){
709 mpctx->initialized_flags&=~INITIALIZED_SPUDEC;
710 current_module="uninit_spudec";
711 spudec_free(vo_spudec);
712 vo_spudec=NULL;
715 if(mask&INITIALIZED_AO){
716 mpctx->initialized_flags&=~INITIALIZED_AO;
717 current_module="uninit_ao";
718 if (mpctx->edl_muted) mixer_mute(&mpctx->mixer);
719 if (mpctx->audio_out)
720 mpctx->audio_out->uninit(mpctx->stop_play != AT_END_OF_FILE);
721 mpctx->audio_out=NULL;
724 current_module=NULL;
727 void exit_player_with_rc(struct MPContext *mpctx, enum exit_reason how, int rc)
729 if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
730 uninit_player(mpctx, INITIALIZED_ALL);
731 #if defined(__MINGW32__) || defined(__CYGWIN__)
732 timeEndPeriod(1);
733 #endif
734 #ifdef CONFIG_X11
735 vo_uninit(mpctx->x11_state); // Close the X11 connection (if any is open).
736 #endif
738 current_module="uninit_input";
739 mp_input_uninit(mpctx->input);
740 #ifdef CONFIG_MENU
741 if (use_menu)
742 menu_uninit();
743 #endif
745 #ifdef CONFIG_FREETYPE
746 current_module="uninit_font";
747 if (mpctx->osd && mpctx->osd->sub_font != vo_font)
748 free_font_desc(mpctx->osd->sub_font);
749 free_font_desc(vo_font);
750 vo_font = NULL;
751 done_freetype();
752 #endif
753 osd_free(mpctx->osd);
755 #ifdef CONFIG_ASS
756 ass_library_done(ass_library);
757 ass_library = NULL;
758 #endif
760 current_module="exit_player";
762 // free mplayer config
763 if(mpctx->mconfig)
764 m_config_free(mpctx->mconfig);
765 mpctx->mconfig = NULL;
767 if(mpctx->playtree_iter)
768 play_tree_iter_free(mpctx->playtree_iter);
769 mpctx->playtree_iter = NULL;
770 if(mpctx->playtree)
771 play_tree_free(mpctx->playtree, 1);
772 mpctx->playtree = NULL;
774 talloc_free(mpctx->key_fifo);
776 if(edl_records != NULL) free(edl_records); // free mem allocated for EDL
777 edl_records = NULL;
778 switch(how) {
779 case EXIT_QUIT:
780 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nExiting... (%s)\n","Quit");
781 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n");
782 break;
783 case EXIT_EOF:
784 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nExiting... (%s)\n","End of file");
785 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n");
786 break;
787 case EXIT_ERROR:
788 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nExiting... (%s)\n","Fatal error");
789 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n");
790 break;
791 default:
792 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n");
794 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
796 exit(rc);
799 static void exit_player(struct MPContext *mpctx, enum exit_reason how)
801 exit_player_with_rc(mpctx, how, 1);
804 #ifndef __MINGW32__
805 static void child_sighandler(int x){
806 pid_t pid;
807 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
809 #endif
811 #ifdef CONFIG_CRASH_DEBUG
812 static char *prog_path;
813 static int crash_debug = 0;
814 #endif
816 static void exit_sighandler(int x){
817 static int sig_count=0;
818 #ifdef CONFIG_CRASH_DEBUG
819 if (!crash_debug || x != SIGTRAP)
820 #endif
821 ++sig_count;
822 if(sig_count==5)
824 /* We're crashing bad and can't uninit cleanly :(
825 * by popular request, we make one last (dirty)
826 * effort to restore the user's
827 * terminal. */
828 getch2_disable();
829 exit(1);
831 if(sig_count==6) exit(1);
832 if(sig_count>6){
833 // can't stop :(
834 #ifndef __MINGW32__
835 kill(getpid(),SIGKILL);
836 #endif
838 mp_msg(MSGT_CPLAYER, MSGL_FATAL, "\n");
839 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,
840 "\nMPlayer interrupted by signal %d in module: %s\n", x,
841 current_module ? current_module : "unknown");
842 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x);
843 if(sig_count<=1)
844 switch(x){
845 case SIGINT:
846 case SIGQUIT:
847 case SIGTERM:
848 case SIGKILL:
849 async_quit_request = 1;
850 return; // killed from keyboard (^C) or killed [-9]
851 case SIGILL:
852 #if CONFIG_RUNTIME_CPUDETECT
853 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGILL_RTCpuSel);
854 #else
855 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGILL);
856 #endif
857 case SIGFPE:
858 case SIGSEGV:
859 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGSEGV_SIGFPE);
860 default:
861 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGCRASH);
862 #ifdef CONFIG_CRASH_DEBUG
863 if (crash_debug) {
864 int gdb_pid;
865 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
866 gdb_pid = fork();
867 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
868 if (gdb_pid == 0) { // We are the child
869 char spid[20];
870 snprintf(spid, sizeof(spid), "%i", getppid());
871 getch2_disable(); // allow terminal to work properly with gdb
872 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1)
873 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
874 } else if (gdb_pid < 0)
875 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
876 else {
877 waitpid(gdb_pid, NULL, 0);
879 if (x == SIGTRAP) return;
881 #endif
883 getch2_disable();
884 exit(1);
887 #include "cfg-mplayer.h"
889 static int cfg_include(m_option_t *conf, char *filename)
891 return m_config_parse_config_file(conf->priv, filename);
894 static void parse_cfgfiles(struct MPContext *mpctx, m_config_t* conf)
896 char *conffile;
897 int conffile_fd;
898 if (!disable_system_conf &&
899 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
900 exit_player(mpctx, EXIT_NONE);
901 if ((conffile = get_path("")) == NULL) {
902 mp_tmsg(MSGT_CPLAYER,MSGL_WARN,"Cannot find HOME directory.\n");
903 } else {
904 #ifdef __MINGW32__
905 mkdir(conffile);
906 #else
907 mkdir(conffile, 0777);
908 #endif
909 free(conffile);
910 if ((conffile = get_path("config")) == NULL) {
911 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"get_path(\"config\") problem\n");
912 } else {
913 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
914 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Creating config file: %s\n", conffile);
915 write(conffile_fd, default_config, strlen(default_config));
916 close(conffile_fd);
918 if (!disable_user_conf &&
919 m_config_parse_config_file(conf, conffile) < 0)
920 exit_player(mpctx, EXIT_NONE);
921 free(conffile);
926 #define PROFILE_CFG_PROTOCOL "protocol."
928 static void load_per_protocol_config (m_config_t* conf, const char *const file)
930 char *str;
931 char protocol[strlen (PROFILE_CFG_PROTOCOL) + strlen (file) + 1];
932 m_profile_t *p;
934 /* does filename actually uses a protocol ? */
935 str = strstr (file, "://");
936 if (!str)
937 return;
939 sprintf (protocol, "%s%s", PROFILE_CFG_PROTOCOL, file);
940 protocol[strlen (PROFILE_CFG_PROTOCOL)+strlen(file)-strlen(str)] = '\0';
941 p = m_config_get_profile (conf, protocol);
942 if (p)
944 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Loading protocol-related profile '%s'\n", protocol);
945 m_config_set_profile(conf,p);
949 #define PROFILE_CFG_EXTENSION "extension."
951 static void load_per_extension_config (m_config_t* conf, const char *const file)
953 char *str;
954 char extension[strlen (PROFILE_CFG_EXTENSION) + 8];
955 m_profile_t *p;
957 /* does filename actually have an extension ? */
958 str = strrchr (file, '.');
959 if (!str)
960 return;
962 sprintf (extension, PROFILE_CFG_EXTENSION);
963 strncat (extension, ++str, 7);
964 p = m_config_get_profile (conf, extension);
965 if (p)
967 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Loading extension-related profile '%s'\n", extension);
968 m_config_set_profile(conf,p);
972 #define PROFILE_CFG_VO "vo."
973 #define PROFILE_CFG_AO "ao."
975 static void load_per_output_config (m_config_t* conf, char *cfg, char *out)
977 char profile[strlen (cfg) + strlen (out) + 1];
978 m_profile_t *p;
980 sprintf (profile, "%s%s", cfg, out);
981 p = m_config_get_profile (conf, profile);
982 if (p)
984 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Loading extension-related profile '%s'\n", profile);
985 m_config_set_profile(conf,p);
990 * Tries to load a config file
991 * @return 0 if file was not found, 1 otherwise
993 static int try_load_config(m_config_t *conf, const char *file)
995 struct stat st;
996 if (stat(file, &st))
997 return 0;
998 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Loading config '%s'\n", file);
999 m_config_parse_config_file (conf, file);
1000 return 1;
1003 static void load_per_file_config (m_config_t* conf, const char *const file)
1005 char *confpath;
1006 char cfg[PATH_MAX];
1007 char *name;
1009 if (strlen(file) > PATH_MAX - 14) {
1010 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Filename is too long, can not load file or directory specific config files\n");
1011 return;
1013 sprintf (cfg, "%s.conf", file);
1015 name = strrchr(cfg, '/');
1016 if (HAVE_DOS_PATHS) {
1017 char *tmp = strrchr(cfg, '\\');
1018 if (!name || tmp > name)
1019 name = tmp;
1020 tmp = strrchr(cfg, ':');
1021 if (!name || tmp > name)
1022 name = tmp;
1024 if (!name)
1025 name = cfg;
1026 else
1027 name++;
1029 if (use_filedir_conf) {
1030 char dircfg[PATH_MAX];
1031 strcpy(dircfg, cfg);
1032 strcpy(dircfg + (name - cfg), "mplayer.conf");
1033 try_load_config(conf, dircfg);
1035 if (try_load_config(conf, cfg))
1036 return;
1039 if ((confpath = get_path (name)) != NULL)
1041 try_load_config(conf, confpath);
1043 free (confpath);
1047 /* When libmpdemux performs a blocking operation (network connection or
1048 * cache filling) if the operation fails we use this function to check
1049 * if it was interrupted by the user.
1050 * The function returns a new value for eof. */
1051 static int libmpdemux_was_interrupted(struct MPContext *mpctx, int stop_play)
1053 mp_cmd_t* cmd;
1054 if((cmd = mp_input_get_cmd(mpctx->input, 0, 0)) != NULL) {
1055 switch(cmd->id) {
1056 case MP_CMD_QUIT:
1057 exit_player_with_rc(mpctx, EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
1058 case MP_CMD_PLAY_TREE_STEP: {
1059 stop_play = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
1060 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i;
1061 } break;
1062 case MP_CMD_PLAY_TREE_UP_STEP: {
1063 stop_play = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
1064 } break;
1065 case MP_CMD_PLAY_ALT_SRC_STEP: {
1066 stop_play = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
1067 } break;
1069 mp_cmd_free(cmd);
1071 return stop_play;
1074 #define mp_basename(s) (strrchr(s,'\\')==NULL?(mp_basename2(s)):(strrchr(s,'\\')+1))
1076 static int playtree_add_playlist(struct MPContext *mpctx, play_tree_t* entry)
1078 play_tree_add_bpf(entry,mpctx->filename);
1081 if(!entry) {
1082 entry = mpctx->playtree_iter->tree;
1083 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1084 return PT_NEXT_ENTRY;
1086 if(mpctx->playtree_iter->tree == entry ) { // Loop with a single file
1087 if(play_tree_iter_up_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1088 return PT_NEXT_ENTRY;
1091 play_tree_remove(entry,1,1);
1092 return PT_NEXT_SRC;
1094 play_tree_insert_entry(mpctx->playtree_iter->tree,entry);
1095 play_tree_set_params_from(entry,mpctx->playtree_iter->tree);
1096 entry = mpctx->playtree_iter->tree;
1097 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1098 return PT_NEXT_ENTRY;
1100 play_tree_remove(entry,1,1);
1102 return PT_NEXT_SRC;
1105 void add_subtitles(struct MPContext *mpctx, char *filename, float fps, int noerr)
1107 struct MPOpts *opts = &mpctx->opts;
1108 sub_data *subd = NULL;
1109 struct ass_track *asst = NULL;
1111 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) {
1112 return;
1115 #ifdef CONFIG_ASS
1116 if (opts->ass_enabled) {
1117 #ifdef CONFIG_ICONV
1118 asst = ass_read_stream(ass_library, filename, sub_cp);
1119 #else
1120 asst = ass_read_stream(ass_library, filename, 0);
1121 #endif
1122 if (!asst) {
1123 subd = sub_read_file(filename, fps);
1124 if (subd) {
1125 asst = ass_read_subdata(ass_library, subd, fps);
1126 if (asst) {
1127 sub_free(subd);
1128 subd = NULL;
1132 } else
1133 #endif
1134 subd = sub_read_file(filename, fps);
1137 if (!asst && !subd) {
1138 mp_tmsg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR,
1139 "Cannot load subtitles: %s\n", filename_recode(filename));
1140 return;
1143 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst;
1144 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd;
1145 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size);
1146 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n",
1147 filename_recode(filename));
1148 ++mpctx->set_of_sub_size;
1149 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "SUB: Added subtitle file (%d): %s\n", mpctx->set_of_sub_size,
1150 filename_recode(filename));
1153 void init_vo_spudec(struct MPContext *mpctx)
1155 if (vo_spudec)
1156 spudec_free(vo_spudec);
1157 mpctx->initialized_flags &= ~INITIALIZED_SPUDEC;
1158 vo_spudec = NULL;
1160 // we currently can't work without video stream
1161 if (!mpctx->sh_video)
1162 return;
1164 if (spudec_ifo) {
1165 unsigned int palette[16], width, height;
1166 current_module="spudec_init_vobsub";
1167 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1168 vo_spudec=spudec_new_scaled(palette, width, height, NULL, 0);
1171 #ifdef CONFIG_DVDREAD
1172 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVD) {
1173 current_module="spudec_init_dvdread";
1174 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(mpctx->stream->priv))->cur_pgc->palette,
1175 mpctx->sh_video->disp_w, mpctx->sh_video->disp_h,
1176 NULL, 0);
1178 #endif
1180 #ifdef CONFIG_DVDNAV
1181 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVDNAV) {
1182 unsigned int *palette = mp_dvdnav_get_spu_clut(mpctx->stream);
1183 current_module="spudec_init_dvdnav";
1184 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1186 #endif
1188 if (vo_spudec==NULL) {
1189 sh_sub_t *sh = (sh_sub_t *)mpctx->d_sub->sh;
1190 current_module="spudec_init_normal";
1191 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1192 spudec_set_font_factor(vo_spudec,font_factor);
1195 if (vo_spudec!=NULL) {
1196 mpctx->initialized_flags|=INITIALIZED_SPUDEC;
1197 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
1202 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
1203 * make it all work is to use the builtin SDL-bootstrap code, which
1204 * will be done automatically by replacing our main() if we include SDL.h.
1206 #if defined(__APPLE__) && defined(CONFIG_SDL)
1207 #ifdef CONFIG_SDL_SDL_H
1208 #include <SDL/SDL.h>
1209 #else
1210 #include <SDL.h>
1211 #endif
1212 #endif
1215 * \brief append a formatted string
1216 * \param buf buffer to print into
1217 * \param pos position of terminating 0 in buf
1218 * \param len maximum number of characters in buf, not including terminating 0
1219 * \param format printf format string
1221 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
1223 va_list va;
1224 va_start(va, format);
1225 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
1226 va_end(va);
1227 if (*pos >= len ) {
1228 buf[len] = 0;
1229 *pos = len;
1234 * \brief append time in the hh:mm:ss.f format
1235 * \param buf buffer to print into
1236 * \param pos position of terminating 0 in buf
1237 * \param len maximum number of characters in buf, not including terminating 0
1238 * \param time time value to convert/append
1240 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
1241 int64_t tenths = 10 * time;
1242 int f1 = tenths % 10;
1243 int ss = (tenths / 10) % 60;
1244 int mm = (tenths / 600) % 60;
1245 int hh = tenths / 36000;
1246 if (time <= 0) {
1247 saddf(buf, pos, len, "unknown");
1248 return;
1250 if (hh > 0)
1251 saddf(buf, pos, len, "%2d:", hh);
1252 if (hh > 0 || mm > 0)
1253 saddf(buf, pos, len, "%02d:", mm);
1254 saddf(buf, pos, len, "%02d.%1d", ss, f1);
1257 static void print_status(struct MPContext *mpctx, double a_pos, bool at_frame)
1259 struct MPOpts *opts = &mpctx->opts;
1260 sh_video_t * const sh_video = mpctx->sh_video;
1262 if (mpctx->sh_audio && a_pos == MP_NOPTS_VALUE)
1263 a_pos = playing_audio_pts(mpctx);
1264 if (mpctx->sh_audio && sh_video && at_frame) {
1265 mpctx->last_av_difference = a_pos - sh_video->pts - audio_delay;
1266 if (mpctx->time_frame > 0)
1267 mpctx->last_av_difference += mpctx->time_frame * opts->playback_speed;
1268 if (mpctx->last_av_difference > 0.5 && drop_frame_cnt > 50
1269 && !mpctx->drop_message_shown) {
1270 mp_tmsg(MSGT_AVSYNC,MSGL_WARN,SystemTooSlow);
1271 mpctx->drop_message_shown = true;
1274 if (quiet)
1275 return;
1278 int width;
1279 char *line;
1280 unsigned pos = 0;
1281 get_screen_size();
1282 if (screen_width > 0)
1283 width = screen_width;
1284 else
1285 width = 80;
1286 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1287 /* Windows command line is broken (MinGW's rxvt works, but we
1288 * should not depend on that). */
1289 width--;
1290 #endif
1291 line = malloc(width + 1); // one additional char for the terminating null
1293 // Audio time
1294 if (mpctx->sh_audio) {
1295 saddf(line, &pos, width, "A:%6.1f ", a_pos);
1296 if (!sh_video) {
1297 float len = demuxer_get_time_length(mpctx->demuxer);
1298 saddf(line, &pos, width, "(");
1299 sadd_hhmmssf(line, &pos, width, a_pos);
1300 saddf(line, &pos, width, ") of %.1f (", len);
1301 sadd_hhmmssf(line, &pos, width, len);
1302 saddf(line, &pos, width, ") ");
1306 // Video time
1307 if (sh_video)
1308 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
1310 // A-V sync
1311 if (mpctx->sh_audio && sh_video)
1312 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ",
1313 mpctx->last_av_difference, mpctx->total_avsync_change);
1315 // Video stats
1316 if (sh_video)
1317 saddf(line, &pos, width, "%3d/%3d ",
1318 (int)sh_video->num_frames,
1319 (int)sh_video->num_frames_decoded);
1321 // CPU usage
1322 if (sh_video) {
1323 if (sh_video->timer > 0.5)
1324 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
1325 (int)(100.0*video_time_usage*opts->playback_speed/(double)sh_video->timer),
1326 (int)(100.0*vout_time_usage*opts->playback_speed/(double)sh_video->timer),
1327 (100.0*audio_time_usage*opts->playback_speed/(double)sh_video->timer));
1328 else
1329 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
1330 } else if (mpctx->sh_audio) {
1331 if (mpctx->delay > 0.5)
1332 saddf(line, &pos, width, "%4.1f%% ",
1333 100.0*audio_time_usage/(double)mpctx->delay);
1334 else
1335 saddf(line, &pos, width, "??,?%% ");
1338 // VO stats
1339 if (sh_video)
1340 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
1342 #ifdef CONFIG_STREAM_CACHE
1343 // cache stats
1344 if (stream_cache_size > 0)
1345 saddf(line, &pos, width, "%d%% ", cache_fill_status);
1346 #endif
1348 // other
1349 if (opts->playback_speed != 1)
1350 saddf(line, &pos, width, "%4.2fx ", opts->playback_speed);
1352 // end
1353 if (erase_to_end_of_line) {
1354 line[pos] = 0;
1355 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
1356 } else {
1357 memset(&line[pos], ' ', width - pos);
1358 line[width] = 0;
1359 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
1361 free(line);
1365 * \brief build a chain of audio filters that converts the input format
1366 * to the ao's format, taking into account the current playback_speed.
1367 * \param sh_audio describes the requested input format of the chain.
1368 * \param ao_data describes the requested output format of the chain.
1370 int build_afilter_chain(struct MPContext *mpctx, sh_audio_t *sh_audio, ao_data_t *ao_data)
1372 struct MPOpts *opts = &mpctx->opts;
1373 int new_srate;
1374 int result;
1375 if (!sh_audio)
1377 mpctx->mixer.afilter = NULL;
1378 return 0;
1380 if(af_control_any_rev(sh_audio->afilter,
1381 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET,
1382 &opts->playback_speed)) {
1383 new_srate = sh_audio->samplerate;
1384 } else {
1385 new_srate = sh_audio->samplerate * opts->playback_speed;
1386 if (new_srate != ao_data->samplerate) {
1387 // limits are taken from libaf/af_resample.c
1388 if (new_srate < 8000)
1389 new_srate = 8000;
1390 if (new_srate > 192000)
1391 new_srate = 192000;
1392 opts->playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1395 result = init_audio_filters(sh_audio, new_srate,
1396 &ao_data->samplerate, &ao_data->channels, &ao_data->format);
1397 mpctx->mixer.afilter = sh_audio->afilter;
1398 return result;
1402 typedef struct mp_osd_msg mp_osd_msg_t;
1403 struct mp_osd_msg {
1404 /// Previous message on the stack.
1405 mp_osd_msg_t* prev;
1406 /// Message text.
1407 char msg[128];
1408 int id,level,started;
1409 /// Display duration in ms.
1410 unsigned time;
1413 /// OSD message stack.
1414 static mp_osd_msg_t* osd_msg_stack = NULL;
1417 * \brief Add a message on the OSD message stack
1419 * If a message with the same id is already present in the stack
1420 * it is pulled on top of the stack, otherwise a new message is created.
1423 static void set_osd_msg_va(int id, int level, int time, const char *fmt,
1424 va_list ap)
1426 mp_osd_msg_t *msg,*last=NULL;
1427 int r;
1429 // look if the id is already in the stack
1430 for(msg = osd_msg_stack ; msg && msg->id != id ;
1431 last = msg, msg = msg->prev);
1432 // not found: alloc it
1433 if(!msg) {
1434 msg = calloc(1,sizeof(mp_osd_msg_t));
1435 msg->prev = osd_msg_stack;
1436 osd_msg_stack = msg;
1437 } else if(last) { // found, but it's not on top of the stack
1438 last->prev = msg->prev;
1439 msg->prev = osd_msg_stack;
1440 osd_msg_stack = msg;
1442 // write the msg
1443 r = vsnprintf(msg->msg, 128, fmt, ap);
1444 if(r >= 128) msg->msg[127] = 0;
1445 // set id and time
1446 msg->id = id;
1447 msg->level = level;
1448 msg->time = time;
1452 void set_osd_msg(int id, int level, int time, const char *fmt, ...)
1454 va_list ap;
1455 va_start(ap, fmt);
1456 set_osd_msg_va(id, level, time, fmt, ap);
1457 va_end(ap);
1460 void set_osd_tmsg(int id, int level, int time, const char *fmt, ...)
1462 va_list ap;
1463 va_start(ap, fmt);
1464 set_osd_msg_va(id, level, time, mp_gtext(fmt), ap);
1465 va_end(ap);
1470 * \brief Remove a message from the OSD stack
1472 * This function can be used to get rid of a message right away.
1476 void rm_osd_msg(int id) {
1477 mp_osd_msg_t *msg,*last=NULL;
1479 // Search for the msg
1480 for(msg = osd_msg_stack ; msg && msg->id != id ;
1481 last = msg, msg = msg->prev);
1482 if(!msg) return;
1484 // Detach it from the stack and free it
1485 if(last)
1486 last->prev = msg->prev;
1487 else
1488 osd_msg_stack = msg->prev;
1489 free(msg);
1493 * \brief Remove all messages from the OSD stack
1497 static void clear_osd_msgs(void) {
1498 mp_osd_msg_t* msg = osd_msg_stack, *prev = NULL;
1499 while(msg) {
1500 prev = msg->prev;
1501 free(msg);
1502 msg = prev;
1504 osd_msg_stack = NULL;
1508 * \brief Get the current message from the OSD stack.
1510 * This function decrements the message timer and destroys the old ones.
1511 * The message that should be displayed is returned (if any).
1515 static mp_osd_msg_t* get_osd_msg(struct MPContext *mpctx)
1517 struct MPOpts *opts = &mpctx->opts;
1518 mp_osd_msg_t *msg,*prev,*last = NULL;
1519 static unsigned last_update = 0;
1520 unsigned now = GetTimerMS();
1521 unsigned diff;
1522 char hidden_dec_done = 0;
1524 if (mpctx->osd_visible) {
1525 // 36000000 means max timed visibility is 1 hour into the future, if
1526 // the difference is greater assume it's wrapped around from below 0
1527 if (mpctx->osd_visible - now > 36000000) {
1528 mpctx->osd_visible = 0;
1529 vo_osd_progbar_type = -1; // disable
1530 vo_osd_changed(OSDTYPE_PROGBAR);
1531 mpctx->osd_function = mpctx->paused ? OSD_PAUSE : OSD_PLAY;
1534 if (mpctx->osd_show_percentage_until - now > 36000000)
1535 mpctx->osd_show_percentage_until = 0;
1537 if(!last_update) last_update = now;
1538 diff = now >= last_update ? now - last_update : 0;
1540 last_update = now;
1542 // Look for the first message in the stack with high enough level.
1543 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1544 prev = msg->prev;
1545 if (msg->level > opts->osd_level && hidden_dec_done)
1546 continue;
1547 // The message has a high enough level or it is the first hidden one
1548 // in both cases we decrement the timer or kill it.
1549 if(!msg->started || msg->time > diff) {
1550 if(msg->started) msg->time -= diff;
1551 else msg->started = 1;
1552 // display it
1553 if (msg->level <= opts->osd_level)
1554 return msg;
1555 hidden_dec_done = 1;
1556 continue;
1558 // kill the message
1559 free(msg);
1560 if(last) {
1561 last->prev = prev;
1562 msg = last;
1563 } else {
1564 osd_msg_stack = prev;
1565 msg = NULL;
1568 // Nothing found
1569 return NULL;
1573 * \brief Display the OSD bar.
1575 * Display the OSD bar or fall back on a simple message.
1579 void set_osd_bar(struct MPContext *mpctx, int type,const char* name,double min,double max,double val) {
1580 struct MPOpts *opts = &mpctx->opts;
1581 if (opts->osd_level < 1)
1582 return;
1584 if(mpctx->sh_video) {
1585 mpctx->osd_visible = (GetTimerMS() + 1000) | 1;
1586 vo_osd_progbar_type = type;
1587 vo_osd_progbar_value = 256*(val-min)/(max-min);
1588 vo_osd_changed(OSDTYPE_PROGBAR);
1589 return;
1592 set_osd_msg(OSD_MSG_BAR, 1, opts->osd_duration, "%s: %d %%",
1593 name, ROUND(100*(val-min)/(max-min)));
1597 * \brief Display text subtitles on the OSD
1599 void set_osd_subtitle(struct MPContext *mpctx, subtitle *subs)
1601 int i;
1602 vo_sub = subs;
1603 vo_osd_changed(OSDTYPE_SUBTITLE);
1604 if (!mpctx->sh_video) {
1605 // reverse order, since newest set_osd_msg is displayed first
1606 for (i = SUB_MAX_TEXT - 1; i >= 0; i--) {
1607 if (!subs || i >= subs->lines || !subs->text[i])
1608 rm_osd_msg(OSD_MSG_SUB_BASE + i);
1609 else {
1610 // HACK: currently display time for each sub line except the last is set to 2 seconds.
1611 int display_time = i == subs->lines - 1 ? 180000 : 2000;
1612 set_osd_msg(OSD_MSG_SUB_BASE + i, 1, display_time, "%s", subs->text[i]);
1619 * \brief Update the OSD message line.
1621 * This function displays the current message on the vo OSD or on the term.
1622 * If the stack is empty and the OSD level is high enough the timer
1623 * is displayed (only on the vo OSD).
1627 static void update_osd_msg(struct MPContext *mpctx)
1629 struct MPOpts *opts = &mpctx->opts;
1630 mp_osd_msg_t *msg;
1631 struct osd_state *osd = mpctx->osd;
1632 char osd_text_timer[128];
1634 if (mpctx->add_osd_seek_info) {
1635 double percentage;
1636 if (mpctx->timeline && mpctx->sh_video)
1637 percentage = mpctx->sh_video->pts * 100 /
1638 mpctx->timeline[mpctx->num_timeline_parts].start;
1639 else
1640 percentage = demuxer_get_percent_pos(mpctx->demuxer);
1641 set_osd_bar(mpctx, 0, "Position", 0, 100, percentage);
1642 if (mpctx->sh_video)
1643 mpctx->osd_show_percentage_until = (GetTimerMS() + 1000) | 1;
1644 mpctx->add_osd_seek_info = false;
1647 // Look if we have a msg
1648 if((msg = get_osd_msg(mpctx))) {
1649 if (strcmp(osd->osd_text, msg->msg)) {
1650 strncpy(osd->osd_text, msg->msg, 127);
1651 if(mpctx->sh_video) vo_osd_changed(OSDTYPE_OSD); else
1652 if(term_osd) mp_msg(MSGT_CPLAYER,MSGL_STATUS,"%s%s\n",term_osd_esc,msg->msg);
1654 return;
1657 if(mpctx->sh_video) {
1658 // fallback on the timer
1659 if (opts->osd_level >= 2) {
1660 int len;
1661 if (mpctx->timeline)
1662 len = mpctx->timeline[mpctx->num_timeline_parts].start;
1663 else
1664 len = demuxer_get_time_length(mpctx->demuxer);
1665 int percentage = -1;
1666 char percentage_text[10];
1667 int pts = demuxer_get_current_time(mpctx->demuxer);
1669 if (mpctx->osd_show_percentage_until) {
1670 if (mpctx->timeline)
1671 percentage = mpctx->sh_video->pts * 100 /
1672 mpctx->timeline[mpctx->num_timeline_parts].start;
1673 else
1674 percentage = demuxer_get_percent_pos(mpctx->demuxer);
1677 if (percentage >= 0)
1678 snprintf(percentage_text, 9, " (%d%%)", percentage);
1679 else
1680 percentage_text[0] = 0;
1682 if (opts->osd_level == 3)
1683 snprintf(osd_text_timer, 63,
1684 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1685 mpctx->osd_function,pts/3600,(pts/60)%60,pts%60,
1686 len/3600,(len/60)%60,len%60,percentage_text);
1687 else
1688 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1689 mpctx->osd_function,pts/3600,(pts/60)%60,
1690 pts%60,percentage_text);
1691 } else
1692 osd_text_timer[0]=0;
1694 if (strcmp(osd->osd_text, osd_text_timer)) {
1695 strncpy(osd->osd_text, osd_text_timer, 63);
1696 vo_osd_changed(OSDTYPE_OSD);
1698 return;
1701 // Clear the term osd line
1702 if (term_osd && osd->osd_text[0]) {
1703 osd->osd_text[0] = 0;
1704 printf("%s\n",term_osd_esc);
1708 ///@}
1709 // OSDMsgStack
1712 void reinit_audio_chain(struct MPContext *mpctx)
1714 struct MPOpts *opts = &mpctx->opts;
1715 if (!mpctx->sh_audio)
1716 return;
1717 current_module="init_audio_codec";
1718 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1719 if(!init_best_audio_codec(mpctx->sh_audio,audio_codec_list,audio_fm_list)){
1720 goto init_error;
1722 mpctx->initialized_flags|=INITIALIZED_ACODEC;
1723 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1726 current_module="af_preinit";
1727 ao_data.samplerate=force_srate;
1728 ao_data.channels=0;
1729 ao_data.format=audio_output_format;
1730 // first init to detect best values
1731 if(!init_audio_filters(mpctx->sh_audio, // preliminary init
1732 // input:
1733 mpctx->sh_audio->samplerate,
1734 // output:
1735 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
1736 mp_tmsg(MSGT_CPLAYER,MSGL_ERR, "Error at audio filter chain "
1737 "pre-init!\n");
1738 exit_player(mpctx, EXIT_ERROR);
1740 current_module="ao2_init";
1741 mpctx->audio_out = init_best_audio_out(opts->audio_driver_list,
1742 0, // plugin flag
1743 ao_data.samplerate,
1744 ao_data.channels,
1745 ao_data.format, 0);
1746 if(!mpctx->audio_out){
1747 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Could not open/initialize audio device -> no sound.\n");
1748 goto init_error;
1750 mpctx->initialized_flags|=INITIALIZED_AO;
1751 mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %dHz %dch %s (%d bytes per sample)\n",
1752 mpctx->audio_out->info->short_name,
1753 ao_data.samplerate, ao_data.channels,
1754 af_fmt2str_short(ao_data.format),
1755 af_fmt2bits(ao_data.format)/8 );
1756 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n",
1757 mpctx->audio_out->info->name, mpctx->audio_out->info->author);
1758 if(strlen(mpctx->audio_out->info->comment) > 0)
1759 mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", mpctx->audio_out->info->comment);
1760 // init audio filters:
1761 current_module="af_init";
1762 if(!build_afilter_chain(mpctx, mpctx->sh_audio, &ao_data)) {
1763 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter/ao format!\n");
1764 goto init_error;
1766 mpctx->mixer.audio_out = mpctx->audio_out;
1767 mpctx->mixer.volstep = volstep;
1768 return;
1770 init_error:
1771 uninit_player(mpctx, INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO
1772 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1773 mpctx->d_audio->id = -2;
1777 ///@}
1778 // Command2Property
1781 // Return pts value corresponding to the end point of audio written to the
1782 // ao so far.
1783 static double written_audio_pts(struct MPContext *mpctx)
1785 sh_audio_t *sh_audio = mpctx->sh_audio;
1786 demux_stream_t *d_audio = mpctx->d_audio;
1787 double buffered_output;
1788 // first calculate the end pts of audio that has been output by decoder
1789 double a_pts = sh_audio->pts;
1790 if (a_pts != MP_NOPTS_VALUE)
1791 // Good, decoder supports new way of calculating audio pts.
1792 // sh_audio->pts is the timestamp of the latest input packet with
1793 // known pts that the decoder has decoded. sh_audio->pts_bytes is
1794 // the amount of bytes the decoder has written after that timestamp.
1795 a_pts += sh_audio->pts_bytes / (double) sh_audio->o_bps;
1796 else {
1797 // Decoder doesn't support new way of calculating pts (or we're
1798 // being called before it has decoded anything with known timestamp).
1799 // Use the old method of audio pts calculation: take the timestamp
1800 // of last packet with known pts the decoder has read data from,
1801 // and add amount of bytes read after the beginning of that packet
1802 // divided by input bps. This will be inaccurate if the input/output
1803 // ratio is not constant for every audio packet or if it is constant
1804 // but not accurately known in sh_audio->i_bps.
1806 a_pts = d_audio->pts;
1807 // ds_tell_pts returns bytes read after last timestamp from
1808 // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes
1809 // it has read but not decoded
1810 if (sh_audio->i_bps)
1811 a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) /
1812 (double)sh_audio->i_bps;
1814 // Now a_pts hopefully holds the pts for end of audio from decoder.
1815 // Substract data in buffers between decoder and audio out.
1817 // Decoded but not filtered
1818 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps;
1820 // Data buffered in audio filters, measured in bytes of "missing" output
1821 buffered_output = af_calc_delay(sh_audio->afilter);
1823 // Data that was ready for ao but was buffered because ao didn't fully
1824 // accept everything to internal buffers yet
1825 buffered_output += sh_audio->a_out_buffer_len;
1827 // Filters divide audio length by playback_speed, so multiply by it
1828 // to get the length in original units without speedup or slowdown
1829 a_pts -= buffered_output * mpctx->opts.playback_speed / ao_data.bps;
1831 return a_pts + mpctx->video_offset;
1834 // Return pts value corresponding to currently playing audio.
1835 double playing_audio_pts(struct MPContext *mpctx)
1837 return written_audio_pts(mpctx) - mpctx->opts.playback_speed *
1838 mpctx->audio_out->get_delay();
1841 static int check_framedrop(struct MPContext *mpctx, double frame_time) {
1842 struct MPOpts *opts = &mpctx->opts;
1843 // check for frame-drop:
1844 current_module = "check_framedrop";
1845 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
1846 static int dropped_frames;
1847 float delay = opts->playback_speed*mpctx->audio_out->get_delay();
1848 float d = delay-mpctx->delay;
1849 ++total_frame_cnt;
1850 // we should avoid dropping too many frames in sequence unless we
1851 // are too late. and we allow 100ms A-V delay here:
1852 if (d < -dropped_frames*frame_time-0.100 && !mpctx->paused
1853 && !mpctx->update_video_immediately) {
1854 ++drop_frame_cnt;
1855 ++dropped_frames;
1856 return frame_dropping;
1857 } else
1858 dropped_frames = 0;
1860 return 0;
1864 #ifdef HAVE_RTC
1865 int rtc_fd = -1;
1866 #endif
1868 static float timing_sleep(struct MPContext *mpctx, float time_frame)
1870 #ifdef HAVE_RTC
1871 if (rtc_fd >= 0){
1872 // -------- RTC -----------
1873 current_module="sleep_rtc";
1874 while (time_frame > 0.000) {
1875 unsigned long rtc_ts;
1876 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
1877 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC read error: %s\n", strerror(errno));
1878 time_frame -= get_relative_time(mpctx);
1880 } else
1881 #endif
1883 // assume kernel HZ=100 for softsleep, works with larger HZ but with
1884 // unnecessarily high CPU usage
1885 float margin = softsleep ? 0.011 : 0;
1886 current_module = "sleep_timer";
1887 while (time_frame > margin) {
1888 usec_sleep(1000000 * (time_frame - margin));
1889 time_frame -= get_relative_time(mpctx);
1891 if (softsleep){
1892 current_module = "sleep_soft";
1893 if (time_frame < 0)
1894 mp_tmsg(MSGT_AVSYNC, MSGL_WARN, "Warning! Softsleep underflow!\n");
1895 while (time_frame > 0)
1896 time_frame -= get_relative_time(mpctx); // burn the CPU
1899 return time_frame;
1902 static void select_subtitle(MPContext *mpctx)
1904 struct MPOpts *opts = &mpctx->opts;
1905 // find the best sub to use
1906 int vobsub_index_id = vobsub_get_index_by_id(vo_vobsub, vobsub_id);
1907 mpctx->global_sub_pos = -1; // no subs by default
1908 if (vobsub_index_id >= 0) {
1909 // if user asks for a vobsub id, use that first.
1910 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] + vobsub_index_id;
1911 } else if (opts->sub_id >= 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1912 // if user asks for a dvd sub id, use that next.
1913 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id;
1914 } else if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] >= 0) {
1915 // if there are text subs to use, use those. (autosubs come last here)
1916 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_SUBS];
1917 } else if (opts->sub_id == -1 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
1918 // finally select subs by language and container hints
1919 if (opts->sub_id == -1 && dvdsub_lang)
1920 opts->sub_id = demuxer_sub_track_by_lang(mpctx->demuxer, dvdsub_lang);
1921 if (opts->sub_id == -1)
1922 opts->sub_id = demuxer_default_sub_track(mpctx->demuxer);
1923 if (opts->sub_id >= 0)
1924 mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id;
1926 // rather than duplicate code, use the SUB_SELECT handler to init the right one.
1927 mpctx->global_sub_pos--;
1928 mp_property_do("sub",M_PROPERTY_STEP_UP,NULL, mpctx);
1931 #ifdef CONFIG_DVDNAV
1932 #ifndef FF_B_TYPE
1933 #define FF_B_TYPE 3
1934 #endif
1935 /// store decoded video image
1936 static mp_image_t * mp_dvdnav_copy_mpi(mp_image_t *to_mpi,
1937 mp_image_t *from_mpi) {
1938 mp_image_t *mpi;
1940 /// Do not store B-frames
1941 if (from_mpi->pict_type == FF_B_TYPE)
1942 return to_mpi;
1944 if (to_mpi &&
1945 to_mpi->w == from_mpi->w &&
1946 to_mpi->h == from_mpi->h &&
1947 to_mpi->imgfmt == from_mpi->imgfmt)
1948 mpi = to_mpi;
1949 else {
1950 if (to_mpi)
1951 free_mp_image(to_mpi);
1952 if (from_mpi->w == 0 || from_mpi->h == 0)
1953 return NULL;
1954 mpi = alloc_mpi(from_mpi->w,from_mpi->h,from_mpi->imgfmt);
1957 copy_mpi(mpi,from_mpi);
1958 return mpi;
1961 static void mp_dvdnav_reset_stream (MPContext *ctx) {
1962 struct MPOpts *opts = &ctx->opts;
1963 if (ctx->sh_video) {
1964 /// clear video pts
1965 ctx->d_video->pts = 0.0f;
1966 ctx->sh_video->pts = 0.0f;
1967 ctx->sh_video->i_pts = 0.0f;
1968 ctx->sh_video->last_pts = 0.0f;
1969 ctx->sh_video->num_buffered_pts = 0;
1970 ctx->sh_video->num_frames = 0;
1971 ctx->sh_video->num_frames_decoded = 0;
1972 ctx->sh_video->timer = 0.0f;
1973 ctx->sh_video->stream_delay = 0.0f;
1974 ctx->sh_video->timer = 0;
1975 ctx->demuxer->stream_pts = MP_NOPTS_VALUE;
1978 if (ctx->sh_audio) {
1979 /// free audio packets and reset
1980 ds_free_packs(ctx->d_audio);
1981 audio_delay -= ctx->sh_audio->stream_delay;
1982 ctx->delay =- audio_delay;
1983 ctx->audio_out->reset();
1984 resync_audio_stream(ctx->sh_audio);
1987 audio_delay = 0.0f;
1988 ctx->global_sub_size = ctx->global_sub_indices[SUB_SOURCE_DEMUX] + mp_dvdnav_number_of_subs(ctx->stream);
1989 if (dvdsub_lang && opts->sub_id == dvdsub_lang_id) {
1990 dvdsub_lang_id = mp_dvdnav_sid_from_lang(ctx->stream, dvdsub_lang);
1991 if (dvdsub_lang_id != opts->sub_id) {
1992 opts->sub_id = dvdsub_lang_id;
1993 select_subtitle(ctx);
1997 /// clear all EOF related flags
1998 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0;
2001 /// Restore last decoded DVDNAV (still frame)
2002 static mp_image_t *mp_dvdnav_restore_smpi(struct MPContext *mpctx,
2003 int *in_size,
2004 unsigned char **start,
2005 mp_image_t *decoded_frame)
2007 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2008 return decoded_frame;
2010 /// a change occured in dvdnav stream
2011 if (mp_dvdnav_cell_has_changed(mpctx->stream,0)) {
2012 mp_dvdnav_read_wait(mpctx->stream, 1, 1);
2013 mp_dvdnav_context_free(mpctx);
2014 mp_dvdnav_reset_stream(mpctx);
2015 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
2016 mp_dvdnav_cell_has_changed(mpctx->stream,1);
2019 if (*in_size < 0) {
2020 float len;
2022 /// Display still frame, if any
2023 if (mpctx->nav_smpi && !mpctx->nav_buffer)
2024 decoded_frame = mpctx->nav_smpi;
2026 /// increment video frame : continue playing after still frame
2027 len = demuxer_get_time_length(mpctx->demuxer);
2028 if (mpctx->sh_video->pts >= len &&
2029 mpctx->sh_video->pts > 0.0 && len > 0.0) {
2030 mp_dvdnav_skip_still(mpctx->stream);
2031 mp_dvdnav_skip_wait(mpctx->stream);
2033 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps;
2035 if (mpctx->nav_buffer) {
2036 *start = mpctx->nav_start;
2037 *in_size = mpctx->nav_in_size;
2038 if (mpctx->nav_start)
2039 memcpy(*start,mpctx->nav_buffer,mpctx->nav_in_size);
2043 return decoded_frame;
2046 /// Save last decoded DVDNAV (still frame)
2047 static void mp_dvdnav_save_smpi(struct MPContext *mpctx, int in_size,
2048 unsigned char *start,
2049 mp_image_t *decoded_frame)
2051 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2052 return;
2054 if (mpctx->nav_buffer)
2055 free(mpctx->nav_buffer);
2057 mpctx->nav_buffer = malloc(in_size);
2058 mpctx->nav_start = start;
2059 mpctx->nav_in_size = mpctx->nav_buffer ? in_size : -1;
2060 if (mpctx->nav_buffer)
2061 memcpy(mpctx->nav_buffer,start,in_size);
2063 if (decoded_frame && mpctx->nav_smpi != decoded_frame)
2064 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi,decoded_frame);
2066 #endif /* CONFIG_DVDNAV */
2068 /* Modify video timing to match the audio timeline. There are two main
2069 * reasons this is needed. First, video and audio can start from different
2070 * positions at beginning of file or after a seek (MPlayer starts both
2071 * immediately even if they have different pts). Second, the file can have
2072 * audio timestamps that are inconsistent with the duration of the audio
2073 * packets, for example two consecutive timestamp values differing by
2074 * one second but only a packet with enough samples for half a second
2075 * of playback between them.
2077 static void adjust_sync(struct MPContext *mpctx, double frame_time)
2079 current_module = "av_sync";
2081 if (!mpctx->sh_audio)
2082 return;
2084 double a_pts = written_audio_pts(mpctx) - mpctx->delay;
2085 double v_pts = mpctx->sh_video->pts;
2086 double av_delay = a_pts - v_pts;
2087 // Try to sync vo_flip() so it will *finish* at given time
2088 av_delay += mpctx->last_vo_flip_duration;
2089 av_delay -= audio_delay; // This much pts difference is desired
2091 double change = av_delay * 0.1;
2092 double max_change = default_max_pts_correction >= 0 ?
2093 default_max_pts_correction : frame_time * 0.1;
2094 if (change < -max_change)
2095 change = -max_change;
2096 else if (change > max_change)
2097 change = max_change;
2098 mpctx->delay += change;
2099 mpctx->total_avsync_change += change;
2102 static int fill_audio_out_buffers(struct MPContext *mpctx)
2104 struct MPOpts *opts = &mpctx->opts;
2105 unsigned int t;
2106 double tt;
2107 int playsize;
2108 int playflags=0;
2109 int audio_eof=0;
2110 sh_audio_t * const sh_audio = mpctx->sh_audio;
2112 current_module="play_audio";
2114 while (1) {
2115 int sleep_time;
2116 // all the current uses of ao_data.pts seem to be in aos that handle
2117 // sync completely wrong; there should be no need to use ao_data.pts
2118 // in get_space()
2119 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2120 playsize = mpctx->audio_out->get_space();
2121 if (mpctx->sh_video || playsize >= ao_data.outburst)
2122 break;
2124 // handle audio-only case:
2125 // this is where mplayer sleeps during audio-only playback
2126 // to avoid 100% CPU use
2127 sleep_time = (ao_data.outburst - playsize) * 1000 / ao_data.bps;
2128 if (sleep_time < 10) sleep_time = 10; // limit to 100 wakeups per second
2129 usec_sleep(sleep_time * 1000);
2132 // Fill buffer if needed:
2133 current_module="decode_audio";
2134 t = GetTimer();
2135 if (decode_audio(sh_audio, playsize) < 0) // EOF or error
2136 if (mpctx->d_audio->eof) {
2137 audio_eof = 1;
2138 if (sh_audio->a_out_buffer_len == 0)
2139 return 0;
2141 t = GetTimer() - t;
2142 tt = t*0.000001f; audio_time_usage+=tt;
2143 if (playsize > sh_audio->a_out_buffer_len) {
2144 playsize = sh_audio->a_out_buffer_len;
2145 if (audio_eof)
2146 playflags |= AOPLAY_FINAL_CHUNK;
2148 if (!playsize)
2149 return 1;
2151 // play audio:
2152 current_module="play_audio";
2154 // Is this pts value actually useful for the aos that access it?
2155 // They're obviously badly broken in the way they handle av sync;
2156 // would not having access to this make them more broken?
2157 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2158 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags);
2160 if (playsize > 0) {
2161 sh_audio->a_out_buffer_len -= playsize;
2162 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize],
2163 sh_audio->a_out_buffer_len);
2164 mpctx->delay += opts->playback_speed*playsize/(double)ao_data.bps;
2166 else if (audio_eof && mpctx->audio_out->get_delay() < .04) {
2167 // Sanity check to avoid hanging in case current ao doesn't output
2168 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK
2169 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n");
2170 sh_audio->a_out_buffer_len = 0;
2173 return 1;
2176 static int sleep_until_update(struct MPContext *mpctx, float *time_frame,
2177 float *aq_sleep_time)
2179 struct MPOpts *opts = &mpctx->opts;
2180 int frame_time_remaining = 0;
2181 current_module="calc_sleep_time";
2183 *time_frame -= get_relative_time(mpctx); // reset timer
2185 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
2186 float delay = mpctx->audio_out->get_delay();
2187 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay);
2189 if (autosync) {
2191 * Adjust this raw delay value by calculating the expected
2192 * delay for this frame and generating a new value which is
2193 * weighted between the two. The higher autosync is, the
2194 * closer to the delay value gets to that which "-nosound"
2195 * would have used, and the longer it will take for A/V
2196 * sync to settle at the right value (but it eventually will.)
2197 * This settling time is very short for values below 100.
2199 float predicted = mpctx->delay / opts->playback_speed + *time_frame;
2200 float difference = delay - predicted;
2201 delay = predicted + difference / (float)autosync;
2204 *time_frame = delay - mpctx->delay / opts->playback_speed;
2206 // delay = amount of audio buffered in soundcard/driver
2207 if (delay > 0.25) delay=0.25; else
2208 if (delay < 0.10) delay=0.10;
2209 if (*time_frame > delay*0.6) {
2210 // sleep time too big - may cause audio drops (buffer underrun)
2211 frame_time_remaining = 1;
2212 *time_frame = delay*0.5;
2214 } else {
2215 // If we're lagging more than 200 ms behind the right playback rate,
2216 // don't try to "catch up".
2217 // If benchmark is set always output frames as fast as possible
2218 // without sleeping.
2219 if (*time_frame < -0.2 || benchmark)
2220 *time_frame = 0;
2223 *aq_sleep_time += *time_frame;
2226 //============================== SLEEP: ===================================
2228 *time_frame -= mpctx->video_out->flip_queue_offset;
2229 // flag 256 means: libvo driver does its timing (dvb card)
2230 if (*time_frame > 0.001 && !(mpctx->sh_video->output_flags&256))
2231 *time_frame = timing_sleep(mpctx, *time_frame);
2232 *time_frame += mpctx->video_out->flip_queue_offset;
2233 return frame_time_remaining;
2236 int reinit_video_chain(struct MPContext *mpctx)
2238 struct MPOpts *opts = &mpctx->opts;
2239 sh_video_t * const sh_video = mpctx->sh_video;
2240 double ar=-1.0;
2241 //================== Init VIDEO (codec & libvo) ==========================
2242 if (!opts->fixed_vo || !(mpctx->initialized_flags & INITIALIZED_VO)) {
2243 current_module="preinit_libvo";
2245 //shouldn't we set dvideo->id=-2 when we fail?
2246 //if((mpctx->video_out->preinit(vo_subdevice))!=0){
2247 if(!(mpctx->video_out=init_best_video_out(opts, mpctx->x11_state, mpctx->key_fifo, mpctx->input))){
2248 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"Error opening/initializing the selected video_out (-vo) device.\n");
2249 goto err_out;
2251 mpctx->initialized_flags|=INITIALIZED_VO;
2254 if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
2255 mpctx->sh_video->stream_aspect = ar;
2256 current_module="init_video_filters";
2258 char* vf_arg[] = { "_oldargs_", (char*)mpctx->video_out , NULL };
2259 sh_video->vfilter = vf_open_filter(opts, NULL,"vo",vf_arg);
2261 #ifdef CONFIG_MENU
2262 if(use_menu) {
2263 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2264 vf_menu = vf_open_plugin(opts,libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2265 if(!vf_menu) {
2266 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Can't open libmenu video filter with root menu %s.\n",menu_root);
2267 use_menu = 0;
2270 if(vf_menu)
2271 sh_video->vfilter = vf_menu;
2272 #endif
2274 #ifdef CONFIG_ASS
2275 if(opts->ass_enabled) {
2276 int i;
2277 int insert = 1;
2278 if (opts->vf_settings)
2279 for (i = 0; opts->vf_settings[i].name; ++i)
2280 if (strcmp(opts->vf_settings[i].name, "ass") == 0) {
2281 insert = 0;
2282 break;
2284 if (insert) {
2285 extern vf_info_t vf_info_ass;
2286 const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
2287 char* vf_arg[] = {"auto", "1", NULL};
2288 int retcode = 0;
2289 struct vf_instance *vf_ass = vf_open_plugin_noerr(opts, libass_vfs,
2290 sh_video->vfilter,
2291 "ass", vf_arg,
2292 &retcode);
2293 if (vf_ass)
2294 sh_video->vfilter = vf_ass;
2295 else if (retcode == -1) // vf_ass open() returns -1 if there's VO EOSD
2296 mp_msg(MSGT_CPLAYER, MSGL_V, "[ass] vf_ass not needed\n");
2297 else
2298 mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
2301 #endif
2303 sh_video->vfilter = append_filters(sh_video->vfilter, opts->vf_settings);
2305 #ifdef CONFIG_ASS
2306 if (opts->ass_enabled)
2307 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_INIT_EOSD, ass_library);
2308 #endif
2310 current_module="init_video_codec";
2312 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2313 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2314 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2316 if(!sh_video->initialized){
2317 if(!opts->fixed_vo) uninit_player(mpctx, INITIALIZED_VO);
2318 goto err_out;
2321 mpctx->initialized_flags|=INITIALIZED_VCODEC;
2323 if (sh_video->codec)
2324 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2326 sh_video->last_pts = MP_NOPTS_VALUE;
2327 sh_video->num_buffered_pts = 0;
2328 sh_video->next_frame_time = 0;
2330 if(auto_quality>0){
2331 // Auto quality option enabled
2332 output_quality=get_video_quality_max(sh_video);
2333 if(auto_quality>output_quality) auto_quality=output_quality;
2334 else output_quality=auto_quality;
2335 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2336 set_video_quality(sh_video,output_quality);
2339 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2341 current_module="init_vo";
2343 return 1;
2345 err_out:
2346 mpctx->sh_video = mpctx->d_video->sh = NULL;
2347 return 0;
2350 static double update_video_nocorrect_pts(struct MPContext *mpctx)
2352 struct sh_video *sh_video = mpctx->sh_video;
2353 double frame_time = 0;
2354 struct vo *video_out = mpctx->video_out;
2355 while (!video_out->frame_loaded) {
2356 current_module = "filter_video";
2357 // In nocorrect-pts mode there is no way to properly time these frames
2358 if (vo_get_buffered_frame(video_out, 0) >= 0)
2359 break;
2360 if (vf_output_queued_frame(sh_video->vfilter))
2361 continue;
2362 unsigned char *packet = NULL;
2363 frame_time = sh_video->next_frame_time;
2364 if (mpctx->update_video_immediately)
2365 frame_time = 0;
2366 int in_size = video_read_frame(sh_video, &sh_video->next_frame_time,
2367 &packet, force_fps);
2368 if (in_size < 0) {
2369 #ifdef CONFIG_DVDNAV
2370 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
2371 if (mp_dvdnav_is_eof(mpctx->stream))
2372 return -1;
2373 if (mpctx->d_video)
2374 mpctx->d_video->eof = 0;
2375 if (mpctx->d_audio)
2376 mpctx->d_audio->eof = 0;
2377 mpctx->stream->eof = 0;
2378 } else
2379 #endif
2380 return -1;
2382 if (in_size > max_framesize)
2383 max_framesize = in_size;
2384 sh_video->timer += frame_time;
2385 if (mpctx->sh_audio)
2386 mpctx->delay -= frame_time;
2387 // video_read_frame can change fps (e.g. for ASF video)
2388 vo_fps = sh_video->fps;
2389 int framedrop_type = check_framedrop(mpctx, frame_time);
2390 current_module = "decode video";
2392 void *decoded_frame;
2393 #ifdef CONFIG_DVDNAV
2394 decoded_frame = mp_dvdnav_restore_smpi(mpctx, &in_size, &packet, NULL);
2395 if (in_size >= 0 && !decoded_frame)
2396 #endif
2397 decoded_frame = decode_video(sh_video, packet, in_size, framedrop_type,
2398 sh_video->pts);
2399 #ifdef CONFIG_DVDNAV
2400 // Save last still frame for future display
2401 mp_dvdnav_save_smpi(mpctx, in_size, packet, decoded_frame);
2402 #endif
2403 if (decoded_frame) {
2404 current_module = "filter video";
2405 if (filter_video(sh_video, decoded_frame, sh_video->pts))
2406 if (!video_out->config_ok)
2407 break;
2410 return frame_time;
2413 static void determine_frame_pts(struct MPContext *mpctx)
2415 struct sh_video *sh_video = mpctx->sh_video;
2416 struct MPOpts *opts = &mpctx->opts;
2418 if (opts->user_pts_assoc_mode) {
2419 sh_video->pts_assoc_mode = opts->user_pts_assoc_mode;
2420 } else if (sh_video->pts_assoc_mode == 0) {
2421 if (sh_video->codec_reordered_pts != MP_NOPTS_VALUE)
2422 sh_video->pts_assoc_mode = 1;
2423 else
2424 sh_video->pts_assoc_mode = 2;
2425 } else {
2426 int probcount1 = sh_video->num_reordered_pts_problems;
2427 int probcount2 = sh_video->num_sorted_pts_problems;
2428 if (sh_video->pts_assoc_mode == 2) {
2429 int tmp = probcount1;
2430 probcount1 = probcount2;
2431 probcount2 = tmp;
2433 if (probcount1 >= probcount2 * 1.5 + 2) {
2434 sh_video->pts_assoc_mode = 3 - sh_video->pts_assoc_mode;
2435 mp_msg(MSGT_CPLAYER, MSGL_V, "Switching to pts association mode "
2436 "%d.\n", sh_video->pts_assoc_mode);
2439 sh_video->pts = sh_video->pts_assoc_mode == 1 ?
2440 sh_video->codec_reordered_pts : sh_video->sorted_pts;
2443 static double update_video(struct MPContext *mpctx)
2445 struct sh_video *sh_video = mpctx->sh_video;
2446 struct vo *video_out = mpctx->video_out;
2447 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_SET_OSD_OBJ,
2448 mpctx->osd); // hack for vf_expand
2449 if (!mpctx->opts.correct_pts)
2450 return update_video_nocorrect_pts(mpctx);
2452 double pts;
2454 bool hit_eof = false;
2455 while (!video_out->frame_loaded) {
2456 current_module = "filter_video";
2457 if (vo_get_buffered_frame(video_out, hit_eof) >= 0)
2458 break;
2459 // XXX Time used in this call is not counted in any performance
2460 // timer now, OSD time is not updated correctly for filter-added frames
2461 if (vf_output_queued_frame(sh_video->vfilter))
2462 continue;
2463 if (hit_eof)
2464 return -1;
2465 unsigned char *packet = NULL;
2466 int in_size = ds_get_packet_pts(mpctx->d_video, &packet, &pts);
2467 if (pts != MP_NOPTS_VALUE)
2468 pts += mpctx->video_offset;
2469 if (in_size < 0) {
2470 // try to extract last frames in case of decoder lag
2471 in_size = 0;
2472 pts = 1e300;
2473 hit_eof = true;
2475 if (in_size > max_framesize)
2476 max_framesize = in_size;
2477 current_module = "decode video";
2478 int framedrop_type = check_framedrop(mpctx, sh_video->frametime);
2479 void *decoded_frame = decode_video(sh_video, packet, in_size,
2480 framedrop_type, pts);
2481 if (decoded_frame) {
2482 determine_frame_pts(mpctx);
2483 current_module = "filter video";
2484 if (filter_video(sh_video, decoded_frame, sh_video->pts))
2485 if (!video_out->config_ok)
2486 break; // We'd likely hang in this loop otherwise
2490 pts = video_out->next_pts;
2491 if (pts == MP_NOPTS_VALUE) {
2492 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Video pts after filters MISSING\n");
2493 // Try to use decoder pts from before filters
2494 pts = sh_video->pts;
2495 if (pts == MP_NOPTS_VALUE)
2496 pts = sh_video->last_pts;
2498 sh_video->pts = pts;
2499 if (sh_video->last_pts == MP_NOPTS_VALUE)
2500 sh_video->last_pts = sh_video->pts;
2501 else if (sh_video->last_pts > sh_video->pts) {
2502 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Decreasing video pts: %f < %f\n",
2503 sh_video->pts, sh_video->last_pts);
2504 /* If the difference in pts is small treat it as jitter around the
2505 * right value (possibly caused by incorrect timestamp ordering) and
2506 * just show this frame immediately after the last one.
2507 * Treat bigger differences as timestamp resets and start counting
2508 * timing of later frames from the position of this one. */
2509 if (sh_video->last_pts - sh_video->pts > 0.5)
2510 sh_video->last_pts = sh_video->pts;
2511 else
2512 sh_video->pts = sh_video->last_pts;
2514 double frame_time = sh_video->pts - sh_video->last_pts;
2515 sh_video->last_pts = sh_video->pts;
2516 sh_video->timer += frame_time;
2517 if (mpctx->sh_audio)
2518 mpctx->delay -= frame_time;
2519 return frame_time;
2522 void pause_player(struct MPContext *mpctx)
2524 if (mpctx->paused)
2525 return;
2526 mpctx->paused = 1;
2527 mpctx->step_frames = 0;
2528 mpctx->time_frame -= get_relative_time(mpctx);
2530 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
2531 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
2533 if (mpctx->audio_out && mpctx->sh_audio)
2534 mpctx->audio_out->pause(); // pause audio, keep data if possible
2537 void unpause_player(struct MPContext *mpctx)
2539 if (!mpctx->paused)
2540 return;
2541 mpctx->paused = 0;
2543 if (mpctx->audio_out && mpctx->sh_audio)
2544 mpctx->audio_out->resume(); // resume audio
2545 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok
2546 && !mpctx->step_frames)
2547 vo_control(mpctx->video_out, VOCTRL_RESUME, NULL); // resume video
2548 (void)get_relative_time(mpctx); // ignore time that passed during pause
2551 void add_step_frame(struct MPContext *mpctx)
2553 mpctx->step_frames++;
2554 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
2555 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
2556 unpause_player(mpctx);
2559 static void pause_loop(struct MPContext *mpctx)
2561 mp_cmd_t* cmd;
2562 if (!quiet) {
2563 // Small hack to display the pause message on the OSD line.
2564 // The pause string is: "\n == PAUSE == \r" so we need to
2565 // take the first and the last char out
2566 if (term_osd && !mpctx->sh_video) {
2567 char msg[128] = _("\n ===== PAUSE =====\r");
2568 int mlen = strlen(msg);
2569 msg[mlen-1] = '\0';
2570 set_osd_msg(OSD_MSG_PAUSE, 1, 0, "%s", msg+1);
2571 update_osd_msg(mpctx);
2572 } else
2573 mp_tmsg(MSGT_CPLAYER,MSGL_STATUS,"\n ===== PAUSE =====\r");
2574 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n");
2577 while ( (cmd = mp_input_get_cmd(mpctx->input, 20, 1)) == NULL
2578 || cmd->id == MP_CMD_SET_MOUSE_POS || cmd->pausing == 4) {
2579 if (cmd) {
2580 cmd = mp_input_get_cmd(mpctx->input, 0, 0);
2581 run_command(mpctx, cmd);
2582 mp_cmd_free(cmd);
2583 continue;
2585 if (mpctx->sh_video && mpctx->video_out)
2586 vo_check_events(mpctx->video_out);
2587 #ifdef CONFIG_MENU
2588 if (vf_menu)
2589 vf_menu_pause_update(vf_menu);
2590 #endif
2591 usec_sleep(20000);
2592 update_osd_msg(mpctx);
2593 int hack = vo_osd_changed(0);
2594 vo_osd_changed(hack);
2595 if (hack)
2596 break;
2601 // Find the right mute status and record position for new file position
2602 static void edl_seek_reset(MPContext *mpctx)
2604 mpctx->edl_muted = 0;
2605 next_edl_record = edl_records;
2607 while (next_edl_record) {
2608 if (next_edl_record->start_sec >= mpctx->sh_video->pts)
2609 break;
2611 if (next_edl_record->action == EDL_MUTE)
2612 mpctx->edl_muted = !mpctx->edl_muted;
2613 next_edl_record = next_edl_record->next;
2615 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2616 mixer_mute(&mpctx->mixer);
2620 // Execute EDL command for the current position if one exists
2621 static void edl_update(MPContext *mpctx)
2623 if (!next_edl_record)
2624 return;
2626 if (!mpctx->sh_video) {
2627 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Cannot use EDL without video, disabling.\n");
2628 free_edl(edl_records);
2629 next_edl_record = NULL;
2630 edl_records = NULL;
2631 return;
2634 if (mpctx->sh_video->pts >= next_edl_record->start_sec) {
2635 if (next_edl_record->action == EDL_SKIP) {
2636 mpctx->osd_function = OSD_FFW;
2637 mpctx->abs_seek_pos = 0;
2638 mpctx->rel_seek_secs = next_edl_record->length_sec;
2639 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop "
2640 "[%f], length [%f]\n", next_edl_record->start_sec,
2641 next_edl_record->stop_sec, next_edl_record->length_sec);
2643 else if (next_edl_record->action == EDL_MUTE) {
2644 mpctx->edl_muted = !mpctx->edl_muted;
2645 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2646 mixer_mute(&mpctx->mixer);
2647 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n",
2648 next_edl_record->start_sec );
2650 next_edl_record = next_edl_record->next;
2654 static void reinit_decoders(struct MPContext *mpctx)
2656 reinit_video_chain(mpctx);
2657 reinit_audio_chain(mpctx);
2658 mp_property_do("sub", M_PROPERTY_SET, &mpctx->global_sub_pos, mpctx);
2661 static void seek_reset(struct MPContext *mpctx)
2663 if (mpctx->sh_video) {
2664 current_module = "seek_video_reset";
2665 resync_video_stream(mpctx->sh_video);
2666 mpctx->sh_video->timer = 0;
2667 vo_seek_reset(mpctx->video_out);
2668 mpctx->sh_video->timer = 0;
2669 mpctx->sh_video->num_buffered_pts = 0;
2670 mpctx->sh_video->last_pts = MP_NOPTS_VALUE;
2671 mpctx->delay = 0;
2672 mpctx->time_frame = 0;
2673 mpctx->update_video_immediately = true;
2674 // Not all demuxers set d_video->pts during seek, so this value
2675 // (which is used by at least vobsub and edl code below) may
2676 // be completely wrong (probably 0).
2677 mpctx->sh_video->pts = mpctx->d_video->pts + mpctx->video_offset;
2678 update_subtitles(mpctx, &mpctx->opts, mpctx->sh_video,
2679 mpctx->sh_video->pts, mpctx->video_offset,
2680 mpctx->d_sub, 1);
2681 update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
2684 if (mpctx->sh_audio) {
2685 current_module = "seek_audio_reset";
2686 resync_audio_stream(mpctx->sh_audio);
2687 mpctx->audio_out->reset(); // stop audio, throwing away buffered data
2688 mpctx->sh_audio->a_buffer_len = 0;
2689 mpctx->sh_audio->a_out_buffer_len = 0;
2690 if (!mpctx->sh_video)
2691 update_subtitles(mpctx, &mpctx->opts, NULL, mpctx->sh_audio->pts,
2692 mpctx->video_offset, mpctx->d_sub, 1);
2695 if (vo_vobsub && mpctx->sh_video) {
2696 current_module = "seek_vobsub_reset";
2697 vobsub_seek(vo_vobsub, mpctx->sh_video->pts);
2700 edl_seek_reset(mpctx);
2702 mpctx->total_avsync_change = 0;
2703 audio_time_usage = 0; video_time_usage = 0; vout_time_usage = 0;
2704 drop_frame_cnt = 0;
2706 current_module = NULL;
2709 static bool timeline_set_part(struct MPContext *mpctx, int i)
2711 struct timeline_part *p = mpctx->timeline + mpctx->timeline_part;
2712 struct timeline_part *n = mpctx->timeline + i;
2713 mpctx->timeline_part = i;
2714 mpctx->video_offset = n->start - n->source_start;
2715 if (n->source == p->source)
2716 return false;
2717 uninit_player(mpctx, INITIALIZED_VCODEC | (mpctx->opts.fixed_vo && mpctx->opts.video_id != -2 ? 0 : INITIALIZED_VO) | INITIALIZED_AO | INITIALIZED_ACODEC);
2718 mpctx->demuxer = n->source->demuxer;
2719 mpctx->d_video = mpctx->demuxer->video;
2720 mpctx->d_audio = mpctx->demuxer->audio;
2721 mpctx->d_sub = mpctx->demuxer->sub;
2722 mpctx->sh_video = mpctx->d_video->sh;
2723 mpctx->sh_audio = mpctx->d_audio->sh;
2724 return true;
2727 // Given pts, switch playback to the corresponding part.
2728 // Return offset within that part.
2729 static double timeline_set_from_time(struct MPContext *mpctx, double pts,
2730 bool *need_reset)
2732 if (pts < 0)
2733 pts = 0;
2734 for (int i = 0; i < mpctx->num_timeline_parts; i++) {
2735 struct timeline_part *p = mpctx->timeline + i;
2736 if (pts < (p+1)->start) {
2737 *need_reset = timeline_set_part(mpctx, i);
2738 return pts - p->start + p->source_start;
2741 return -1;
2745 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute
2746 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length
2747 // return -1 if seek failed (non-seekable stream?), 0 otherwise
2748 static int seek(MPContext *mpctx, double amount, int style)
2750 current_module = "seek";
2751 if (mpctx->stop_play == AT_END_OF_FILE)
2752 mpctx->stop_play = KEEP_PLAYING;
2753 if (mpctx->timeline && style & SEEK_FACTOR) {
2754 amount *= mpctx->timeline[mpctx->num_timeline_parts].start;
2755 style &= ~SEEK_FACTOR;
2757 if ((mpctx->demuxer->accurate_seek || mpctx->timeline) && mpctx->sh_video
2758 && !(style & (SEEK_ABSOLUTE | SEEK_FACTOR))) {
2759 style |= SEEK_ABSOLUTE;
2760 if (amount > 0)
2761 style |= SEEK_FORWARD;
2762 else
2763 style |= SEEK_BACKWARD;
2764 amount += mpctx->sh_video->pts;
2767 /* At least the liba52 decoder wants to read from the input stream
2768 * during initialization, so reinit must be done after the demux_seek()
2769 * call that clears possible stream EOF. */
2770 bool need_reset = false;
2771 if (mpctx->timeline) {
2772 amount = timeline_set_from_time(mpctx, amount, &need_reset);
2773 if (amount == -1) {
2774 mpctx->stop_play = AT_END_OF_FILE;
2775 // Clear audio from current position
2776 if (mpctx->sh_audio) {
2777 mpctx->audio_out->reset();
2778 mpctx->sh_audio->a_buffer_len = 0;
2779 mpctx->sh_audio->a_out_buffer_len = 0;
2781 return -1;
2784 int seekresult = demux_seek(mpctx->demuxer, amount, audio_delay, style);
2785 if (need_reset)
2786 reinit_decoders(mpctx);
2787 if (seekresult == 0)
2788 return -1;
2790 seek_reset(mpctx);
2791 return 0;
2794 // -2 is no chapters, -1 is before first chapter
2795 int get_current_chapter(struct MPContext *mpctx)
2797 if (!mpctx->chapters || !mpctx->sh_video)
2798 return demuxer_get_current_chapter(mpctx->demuxer);
2800 int i;
2801 double current_pts = mpctx->sh_video->pts;
2802 for (i = 1; i < mpctx->num_chapters; i++)
2803 if (current_pts < mpctx->chapters[i].start)
2804 break;
2805 return i - 1;
2808 // currently returns a string allocated with malloc, not talloc
2809 char *chapter_display_name(struct MPContext *mpctx, int chapter)
2811 if (!mpctx->chapters || !mpctx->sh_video)
2812 return demuxer_chapter_display_name(mpctx->demuxer, chapter);
2813 return strdup(mpctx->chapters[chapter].name);
2816 int seek_chapter(struct MPContext *mpctx, int chapter, double *seek_pts,
2817 char **chapter_name)
2819 if (!mpctx->chapters || !mpctx->sh_video) {
2820 int res = demuxer_seek_chapter(mpctx->demuxer, chapter, seek_pts,
2821 chapter_name);
2822 if (res >= 0 && *seek_pts == -1)
2823 seek_reset(mpctx);
2824 return res;
2827 if (chapter >= mpctx->num_chapters)
2828 return -1;
2829 if (chapter < 0)
2830 chapter = 0;
2831 *seek_pts = mpctx->chapters[chapter].start;
2832 if (chapter_name)
2833 *chapter_name = talloc_strdup(NULL, mpctx->chapters[chapter].name);
2834 return chapter;
2837 static int find_ordered_chapter_sources(struct MPContext *mpctx,
2838 struct content_source *sources,
2839 int num_sources,
2840 unsigned char uid_map[][16])
2842 int num_filenames = 0;
2843 char **filenames = NULL;
2844 if (num_sources > 1) {
2845 mp_msg(MSGT_CPLAYER, MSGL_INFO, "This file references data from "
2846 "other sources.\n");
2847 if (mpctx->stream->type != STREAMTYPE_FILE) {
2848 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Playback source is not a "
2849 "normal disk file. Will not search for related files.\n");
2850 } else {
2851 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Will scan other files in the "
2852 "same directory to find referenced sources.\n");
2853 filenames = find_files(mpctx->demuxer->filename, ".mkv",
2854 &num_filenames);
2858 int num_left = num_sources - 1;
2859 for (int i = 0; i < num_filenames && num_left > 0; i++) {
2860 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Checking file %s\n",
2861 filename_recode(filenames[i]));
2862 int format;
2863 struct stream *s = open_stream(filenames[i], &mpctx->opts, &format);
2864 if (!s)
2865 continue;
2866 struct demuxer *d = demux_open(&mpctx->opts, s, DEMUXER_TYPE_MATROSKA,
2867 mpctx->opts.audio_id,
2868 mpctx->opts.video_id,
2869 mpctx->opts.sub_id, filenames[i]);
2870 if (!d) {
2871 free_stream(s);
2872 continue;
2874 if (d->file_format == DEMUXER_TYPE_MATROSKA) {
2875 for (int i = 1; i < num_sources; i++) {
2876 if (sources[i].demuxer)
2877 continue;
2878 if (!memcmp(uid_map[i], d->matroska_data.segment_uid, 16)) {
2879 mp_msg(MSGT_CPLAYER, MSGL_INFO,"Match for source %d: %s\n",
2880 i, filename_recode(d->filename));
2881 sources[i].stream = s;
2882 sources[i].demuxer = d;
2883 num_left--;
2884 goto match;
2888 free_demuxer(d);
2889 free_stream(s);
2890 continue;
2891 match:
2894 talloc_free(filenames);
2895 if (num_left) {
2896 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Failed to find ordered chapter part!\n"
2897 "There will be parts MISSING from the video!\n");
2898 for (int i = 1, j = 1; i < num_sources; i++)
2899 if (sources[i].demuxer) {
2900 sources[j] = sources[i];
2901 memcpy(uid_map[j], uid_map[i], 16);
2902 j++;
2905 return num_sources - num_left;
2908 static void build_ordered_chapter_timeline(struct MPContext *mpctx)
2910 if (!mpctx->opts.ordered_chapters) {
2911 mp_msg(MSGT_CPLAYER, MSGL_INFO, "File uses ordered chapters, but "
2912 "you have disabled support for them. Ignoring.\n");
2913 return;
2916 mp_msg(MSGT_CPLAYER, MSGL_INFO, "File uses ordered chapters, will build "
2917 "edit timeline.\n");
2919 struct demuxer *demuxer = mpctx->demuxer;
2920 struct matroska_data *m = &demuxer->matroska_data;
2922 // +1 because sources/uid_map[0] is original file even if all chapters
2923 // actually use other sources and need separate entries
2924 struct content_source *sources = talloc_array_ptrtype(NULL, sources,
2925 m->num_ordered_chapters+1);
2926 sources[0].stream = mpctx->stream;
2927 sources[0].demuxer = mpctx->demuxer;
2928 unsigned char uid_map[m->num_ordered_chapters+1][16];
2929 int num_sources = 1;
2930 memcpy(uid_map[0], m->segment_uid, 16);
2932 for (int i = 0; i < m->num_ordered_chapters; i++) {
2933 struct matroska_chapter *c = m->ordered_chapters + i;
2934 if (!c->has_segment_uid)
2935 memcpy(c->segment_uid, m->segment_uid, 16);
2937 for (int j = 0; j < num_sources; j++)
2938 if (!memcmp(c->segment_uid, uid_map[j], 16))
2939 goto found1;
2940 memcpy(uid_map[num_sources], c->segment_uid, 16);
2941 sources[num_sources] = (struct content_source){};
2942 num_sources++;
2943 found1:
2947 num_sources = find_ordered_chapter_sources(mpctx, sources, num_sources,
2948 uid_map);
2951 // +1 for terminating chapter with start time marking end of last real one
2952 struct timeline_part *timeline = talloc_array_ptrtype(NULL, timeline,
2953 m->num_ordered_chapters + 1);
2954 struct chapter *chapters = talloc_array_ptrtype(NULL, chapters,
2955 m->num_ordered_chapters);
2956 uint64_t starttime = 0;
2957 uint64_t missing_time = 0;
2958 int part_count = 0;
2959 int num_chapters = 0;
2960 uint64_t prev_part_offset = 0;
2961 for (int i = 0; i < m->num_ordered_chapters; i++) {
2962 struct matroska_chapter *c = m->ordered_chapters + i;
2964 int j;
2965 for (j = 0; j < num_sources; j++) {
2966 if (!memcmp(c->segment_uid, uid_map[j], 16))
2967 goto found2;
2969 missing_time += c->end - c->start;
2970 continue;
2971 found2:;
2972 chapters[num_chapters].start = starttime / 1000.;
2973 chapters[num_chapters].name = talloc_strdup(chapters, c->name);
2974 /* Only add a separate part if the time or file actually changes.
2975 * Matroska files have chapter divisions that are redundant from
2976 * timeline point of view because the same chapter structure is used
2977 * both to specify the timeline and for normal chapter information.
2978 * Removing a missing inserted external chapter can also cause this. */
2979 if (part_count == 0 || c->start != starttime + prev_part_offset
2980 || sources + j != timeline[part_count - 1].source) {
2981 timeline[part_count].source = sources + j;
2982 timeline[part_count].start = chapters[num_chapters].start;
2983 timeline[part_count].source_start = c->start / 1000.;
2984 prev_part_offset = c->start - starttime;
2985 part_count++;
2987 starttime += c->end - c->start;
2988 num_chapters++;
2990 timeline[part_count].start = starttime / 1000.;
2992 if (!part_count) {
2993 // None of the parts come from the file itself???
2994 talloc_free(sources);
2995 talloc_free(timeline);
2996 talloc_free(chapters);
2997 return;
3000 mp_msg(MSGT_CPLAYER, MSGL_V, "Timeline contains %d parts from %d "
3001 "sources. Total length %.3f seconds.\n", part_count, num_sources,
3002 timeline[part_count].start);
3003 if (missing_time)
3004 mp_msg(MSGT_CPLAYER, MSGL_ERR, "There are %.3f seconds missing "
3005 "from the timeline!\n", missing_time / 1000.);
3006 mp_msg(MSGT_CPLAYER, MSGL_V, "Source files:\n");
3007 for (int i = 0; i < num_sources; i++)
3008 mp_msg(MSGT_CPLAYER, MSGL_V, "%d: %s\n", i,
3009 filename_recode(sources[i].demuxer->filename));
3010 mp_msg(MSGT_CPLAYER, MSGL_V, "Timeline parts: (number, start, "
3011 "source_start, source):\n");
3012 for (int i = 0; i < part_count; i++) {
3013 struct timeline_part *p = timeline + i;
3014 mp_msg(MSGT_CPLAYER, MSGL_V, "%3d %9.3f %9.3f %3td\n", i, p->start,
3015 p->source_start, p->source - sources);
3017 mp_msg(MSGT_CPLAYER, MSGL_V, "END %9.3f\n", timeline[part_count].start);
3018 mpctx->sources = sources;
3019 mpctx->num_sources = num_sources;
3020 mpctx->timeline = timeline;
3021 mpctx->num_timeline_parts = part_count;
3022 mpctx->num_chapters = num_chapters;
3023 mpctx->chapters = chapters;
3025 mpctx->timeline_part = 0;
3026 mpctx->demuxer = timeline[0].source->demuxer;
3030 static int read_keys(void *ctx, int fd)
3032 getch2(ctx);
3033 return mplayer_get_key(ctx, 0);
3037 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object
3038 * file for some tools to link against. */
3039 #ifndef DISABLE_MAIN
3040 int main(int argc,char* argv[]){
3043 char * mem_ptr;
3045 // movie info:
3047 /* Flag indicating whether MPlayer should exit without playing anything. */
3048 int opt_exit = 0;
3050 //float a_frame=0; // Audio
3052 int i;
3054 struct MPContext *mpctx = &(struct MPContext){
3055 .osd_function = OSD_PLAY,
3056 .begin_skip = MP_NOPTS_VALUE,
3057 .play_tree_step = 1,
3058 .global_sub_pos = -1,
3059 .set_of_sub_pos = -1,
3060 .file_format = DEMUXER_TYPE_UNKNOWN,
3061 .last_dvb_step = 1,
3064 InitTimer();
3065 srand(GetTimerMS());
3067 mp_msg_init();
3068 set_av_log_callback();
3070 #ifdef CONFIG_X11
3071 mpctx->x11_state = vo_x11_init_state();
3072 #endif
3073 struct MPOpts *opts = &mpctx->opts;
3074 set_default_mplayer_options(opts);
3075 // Create the config context and register the options
3076 mpctx->mconfig = m_config_new(opts, cfg_include);
3077 m_config_register_options(mpctx->mconfig,mplayer_opts);
3078 mp_input_register_options(mpctx->mconfig);
3080 // Preparse the command line
3081 m_config_preparse_command_line(mpctx->mconfig,argc,argv);
3083 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
3084 set_path_env();
3085 #endif
3087 #ifdef CONFIG_TV
3088 stream_tv_defaults.immediate = 1;
3089 #endif
3091 parse_cfgfiles(mpctx, mpctx->mconfig);
3093 mpctx->playtree = m_config_parse_mp_command_line(mpctx->mconfig, argc, argv);
3094 if(mpctx->playtree == NULL)
3095 opt_exit = 1;
3096 else {
3097 mpctx->playtree = play_tree_cleanup(mpctx->playtree);
3098 if(mpctx->playtree) {
3099 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mpctx->mconfig);
3100 if(mpctx->playtree_iter) {
3101 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3102 play_tree_iter_free(mpctx->playtree_iter);
3103 mpctx->playtree_iter = NULL;
3105 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
3109 mpctx->key_fifo = mp_fifo_create(opts);
3111 print_version("MPlayer");
3113 #if defined(__MINGW32__) || defined(__CYGWIN__)
3115 HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
3116 BOOL WINAPI (*setDEP)(DWORD) = NULL;
3117 if (kernel32)
3118 setDEP = GetProcAddress(kernel32, "SetProcessDEPPolicy");
3119 if (setDEP) setDEP(3);
3121 // stop Windows from showing all kinds of annoying error dialogs
3122 SetErrorMode(0x8003);
3123 // request 1ms timer resolution
3124 timeBeginPeriod(1);
3125 #endif
3127 #ifdef CONFIG_PRIORITY
3128 set_priority();
3129 #endif
3131 if(opts->video_driver_list && strcmp(opts->video_driver_list[0],"help")==0){
3132 list_video_out();
3133 opt_exit = 1;
3136 if(opts->audio_driver_list && strcmp(opts->audio_driver_list[0],"help")==0){
3137 list_audio_out();
3138 opt_exit = 1;
3141 /* Check codecs.conf. */
3142 if(!codecs_file || !parse_codec_cfg(codecs_file)){
3143 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
3144 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
3145 if(!parse_codec_cfg(NULL)){
3146 exit_player_with_rc(mpctx, EXIT_NONE, 0);
3148 mp_tmsg(MSGT_CPLAYER,MSGL_V,"Using built-in default codecs.conf.\n");
3151 free( mem_ptr ); // release the buffer created by get_path()
3154 #if 0
3155 if(video_codec_list){
3156 int i;
3157 video_codec=video_codec_list[0];
3158 for(i=0;video_codec_list[i];i++)
3159 mp_msg(MSGT_FIXME,MSGL_FIXME,"vc#%d: '%s'\n",i,video_codec_list[i]);
3161 #endif
3162 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
3163 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Available audio codecs:\n");
3164 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n");
3165 list_codecs(1);
3166 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3167 opt_exit = 1;
3169 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
3170 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Available video codecs:\n");
3171 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n");
3172 list_codecs(0);
3173 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3174 opt_exit = 1;
3176 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
3177 vfm_help();
3178 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3179 opt_exit = 1;
3181 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
3182 afm_help();
3183 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3184 opt_exit = 1;
3186 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
3187 af_help();
3188 printf("\n");
3189 opt_exit = 1;
3191 #ifdef CONFIG_X11
3192 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
3193 fstype_help();
3194 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3195 opt_exit = 1;
3197 #endif
3198 if((demuxer_name && strcmp(demuxer_name,"help")==0) ||
3199 (audio_demuxer_name && strcmp(audio_demuxer_name,"help")==0) ||
3200 (sub_demuxer_name && strcmp(sub_demuxer_name,"help")==0)){
3201 demuxer_help();
3202 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
3203 opt_exit = 1;
3205 if(list_properties) {
3206 property_print_help();
3207 opt_exit = 1;
3210 if(opt_exit)
3211 exit_player(mpctx, EXIT_NONE);
3213 if(!mpctx->filename && !player_idle_mode){
3214 // no file/vcd/dvd -> show HELP:
3215 mp_msg(MSGT_CPLAYER, MSGL_INFO, "%s", mp_gtext(help_text));
3216 exit_player_with_rc(mpctx, EXIT_NONE, 0);
3219 /* Display what configure line was used */
3220 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
3222 // Many users forget to include command line in bugreports...
3223 if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
3224 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "CommandLine:");
3225 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
3226 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
3229 //------ load global data first ------
3231 mpctx->osd = osd_create();
3233 // check font
3234 #ifdef CONFIG_FREETYPE
3235 init_freetype();
3236 #endif
3237 #ifdef CONFIG_FONTCONFIG
3238 if(font_fontconfig <= 0)
3240 #endif
3241 #ifdef CONFIG_BITMAP_FONT
3242 if(font_name){
3243 vo_font=read_font_desc(font_name,font_factor,verbose>1);
3244 if(!vo_font) mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Cannot load bitmap font: %s\n",
3245 filename_recode(font_name));
3246 } else {
3247 // try default:
3248 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
3249 free(mem_ptr); // release the buffer created by get_path()
3250 if(!vo_font)
3251 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
3253 if (sub_font_name)
3254 mpctx->osd->sub_font = read_font_desc(sub_font_name, font_factor, verbose>1);
3255 else
3256 mpctx->osd->sub_font = vo_font;
3257 #endif
3258 #ifdef CONFIG_FONTCONFIG
3260 #endif
3262 #ifdef CONFIG_ASS
3263 ass_library = ass_init();
3264 #endif
3266 #ifdef HAVE_RTC
3267 if(!nortc)
3269 // seteuid(0); /* Can't hurt to try to get root here */
3270 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
3271 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Failed to open %s: %s (it should be readable by the user.)\n",
3272 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
3273 else {
3274 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
3276 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
3277 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Linux RTC init error in ioctl (rtc_irqp_set %lu): %s\n", irqp, strerror(errno));
3278 mp_tmsg(MSGT_CPLAYER, MSGL_HINT, "Try adding \"echo %lu > /proc/sys/dev/rtc/max-user-freq\" to your system startup scripts.\n", irqp);
3279 close (rtc_fd);
3280 rtc_fd = -1;
3281 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
3282 /* variable only by the root */
3283 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error in ioctl (rtc_pie_on): %s\n", strerror(errno));
3284 close (rtc_fd);
3285 rtc_fd = -1;
3286 } else
3287 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Using Linux hardware RTC timing (%ldHz).\n", irqp);
3290 if(rtc_fd<0)
3291 #endif /* HAVE_RTC */
3292 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
3293 softsleep?"software":timer_name);
3295 #ifdef HAVE_TERMCAP
3296 load_termcap(NULL); // load key-codes
3297 #endif
3299 // ========== Init keyboard FIFO (connection to libvo) ============
3301 // Init input system
3302 current_module = "init_input";
3303 mpctx->input = mp_input_init(&opts->input);
3304 mp_input_add_key_fd(mpctx->input, -1,0,mplayer_get_key,NULL, mpctx->key_fifo);
3305 if(slave_mode)
3306 mp_input_add_cmd_fd(mpctx->input, 0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);
3307 else if(!noconsolecontrols)
3308 mp_input_add_key_fd(mpctx->input, 0, 1, read_keys, NULL, mpctx->key_fifo);
3309 // Set the libstream interrupt callback
3310 stream_set_interrupt_callback(mp_input_check_interrupt, mpctx->input);
3312 #ifdef CONFIG_MENU
3313 if(use_menu) {
3314 if(menu_cfg && menu_init(mpctx, mpctx->mconfig, mpctx->input, menu_cfg))
3315 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", menu_cfg);
3316 else {
3317 menu_cfg = get_path("menu.conf");
3318 if(menu_init(mpctx, mpctx->mconfig, mpctx->input, menu_cfg))
3319 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", menu_cfg);
3320 else {
3321 if(menu_init(mpctx, mpctx->mconfig, mpctx->input,
3322 MPLAYER_CONFDIR "/menu.conf"))
3323 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", MPLAYER_CONFDIR"/menu.conf");
3324 else {
3325 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Menu init failed.\n");
3326 use_menu = 0;
3331 #endif
3333 current_module = NULL;
3335 /// Catch signals
3336 #ifndef __MINGW32__
3337 signal(SIGCHLD,child_sighandler);
3338 #endif
3340 #ifdef CONFIG_CRASH_DEBUG
3341 prog_path = argv[0];
3342 #endif
3343 //========= Catch terminate signals: ================
3344 // terminate requests:
3345 signal(SIGTERM,exit_sighandler); // kill
3346 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
3348 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
3350 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
3351 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
3352 #ifdef CONFIG_SIGHANDLER
3353 // fatal errors:
3354 signal(SIGBUS,exit_sighandler); // bus error
3355 signal(SIGSEGV,exit_sighandler); // segfault
3356 signal(SIGILL,exit_sighandler); // illegal instruction
3357 signal(SIGFPE,exit_sighandler); // floating point exc.
3358 signal(SIGABRT,exit_sighandler); // abort()
3359 #ifdef CONFIG_CRASH_DEBUG
3360 if (crash_debug)
3361 signal(SIGTRAP,exit_sighandler);
3362 #endif
3363 #endif
3365 // ******************* Now, let's see the per-file stuff ********************
3367 play_next_file:
3369 // init global sub numbers
3370 mpctx->global_sub_size = 0;
3371 { int i; for (i = 0; i < SUB_SOURCES; i++) mpctx->global_sub_indices[i] = -1; }
3373 if (mpctx->filename) {
3374 load_per_protocol_config (mpctx->mconfig, mpctx->filename);
3375 load_per_extension_config (mpctx->mconfig, mpctx->filename);
3376 load_per_file_config (mpctx->mconfig, mpctx->filename);
3379 if (opts->video_driver_list)
3380 load_per_output_config (mpctx->mconfig, PROFILE_CFG_VO, opts->video_driver_list[0]);
3381 if (opts->audio_driver_list)
3382 load_per_output_config (mpctx->mconfig, PROFILE_CFG_AO, opts->audio_driver_list[0]);
3384 // We must enable getch2 here to be able to interrupt network connection
3385 // or cache filling
3386 if(!noconsolecontrols && !slave_mode){
3387 if(mpctx->initialized_flags&INITIALIZED_GETCH2)
3388 mp_tmsg(MSGT_CPLAYER,MSGL_WARN,"WARNING: getch2_init called twice!\n");
3389 else
3390 getch2_enable(); // prepare stdin for hotkeys...
3391 mpctx->initialized_flags|=INITIALIZED_GETCH2;
3392 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
3395 // =================== GUI idle loop (STOP state) ===========================
3396 while (player_idle_mode && !mpctx->filename) {
3397 play_tree_t * entry = NULL;
3398 mp_cmd_t * cmd;
3399 if (mpctx->video_out && mpctx->video_out->config_ok)
3400 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
3401 while (!(cmd = mp_input_get_cmd(mpctx->input, 0, 0))) { // wait for command
3402 if (mpctx->video_out)
3403 vo_check_events(mpctx->video_out);
3404 usec_sleep(20000);
3406 switch (cmd->id) {
3407 case MP_CMD_LOADFILE:
3408 // prepare a tree entry with the new filename
3409 entry = play_tree_new();
3410 play_tree_add_file(entry, cmd->args[0].v.s);
3411 // The entry is added to the main playtree after the switch().
3412 break;
3413 case MP_CMD_LOADLIST:
3414 entry = parse_playlist_file(mpctx->mconfig, cmd->args[0].v.s);
3415 break;
3416 case MP_CMD_QUIT:
3417 exit_player_with_rc(mpctx, EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3418 break;
3419 case MP_CMD_GET_PROPERTY:
3420 case MP_CMD_SET_PROPERTY:
3421 case MP_CMD_STEP_PROPERTY:
3422 run_command(mpctx, cmd);
3423 break;
3426 mp_cmd_free(cmd);
3428 if (entry) { // user entered a command that gave a valid entry
3429 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it
3430 play_tree_free_list(mpctx->playtree->child, 1);
3431 else mpctx->playtree=play_tree_new(); // .. or make a brand new playtree
3433 if (!mpctx->playtree) continue; // couldn't make playtree! wait for next command
3435 play_tree_set_child(mpctx->playtree, entry);
3437 /* Make iterator start at the top the of tree. */
3438 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mpctx->mconfig);
3439 if (!mpctx->playtree_iter) continue;
3441 // find the first real item in the tree
3442 if (play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3443 // no items!
3444 play_tree_iter_free(mpctx->playtree_iter);
3445 mpctx->playtree_iter = NULL;
3446 continue; // wait for next command
3448 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter, 1);
3451 //---------------------------------------------------------------------------
3453 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
3454 vo_control(mpctx->video_out, VOCTRL_RESUME, NULL);
3456 if (mpctx->filename) {
3457 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nPlaying %s.\n",
3458 filename_recode(mpctx->filename));
3459 if(use_filename_title && vo_wintitle == NULL)
3460 vo_wintitle = strdup(mp_basename2(mpctx->filename));
3463 if (edl_filename) {
3464 if (edl_records) free_edl(edl_records);
3465 next_edl_record = edl_records = edl_parse_file();
3467 if (edl_output_filename) {
3468 if (edl_fd) fclose(edl_fd);
3469 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
3471 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Can't open EDL file [%s] for writing.\n",
3472 filename_recode(edl_output_filename));
3476 //==================== Open VOB-Sub ============================
3478 current_module="vobsub";
3479 if (vobsub_name){
3480 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
3481 if(vo_vobsub==NULL)
3482 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Cannot load subtitles: %s\n",
3483 filename_recode(vobsub_name));
3484 } else if (sub_auto && mpctx->filename){
3485 /* try to autodetect vobsub from movie filename ::atmos */
3486 char *buf = strdup(mpctx->filename), *psub;
3487 char *pdot = strrchr(buf, '.');
3488 char *pslash = strrchr(buf, '/');
3489 #if defined(__MINGW32__) || defined(__CYGWIN__)
3490 if (!pslash) pslash = strrchr(buf, '\\');
3491 #endif
3492 if (pdot && (!pslash || pdot > pslash))
3493 *pdot = '\0';
3494 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
3495 /* try from ~/.mplayer/sub */
3496 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
3497 char *bname;
3498 int l;
3499 bname = strrchr(buf,'/');
3500 #if defined(__MINGW32__) || defined(__CYGWIN__)
3501 if(!bname) bname = strrchr(buf,'\\');
3502 #endif
3503 if(bname) bname++;
3504 else bname = buf;
3505 l = strlen(psub) + strlen(bname) + 1;
3506 psub = realloc(psub,l);
3507 strcat(psub,bname);
3508 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
3509 free(psub);
3511 free(buf);
3513 if(vo_vobsub){
3514 mpctx->initialized_flags|=INITIALIZED_VOBSUB;
3515 vobsub_set_from_lang(vo_vobsub, dvdsub_lang);
3516 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
3518 // setup global sub numbering
3519 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB] = mpctx->global_sub_size; // the global # of the first vobsub.
3520 mpctx->global_sub_size += vobsub_get_indexes_count(vo_vobsub);
3523 //============ Open & Sync STREAM --- fork cache2 ====================
3525 mpctx->stream=NULL;
3526 mpctx->demuxer=NULL;
3527 if (mpctx->d_audio) {
3528 //free_demuxer_stream(mpctx->d_audio);
3529 mpctx->d_audio=NULL;
3531 if (mpctx->d_video) {
3532 //free_demuxer_stream(d_video);
3533 mpctx->d_video=NULL;
3535 mpctx->sh_audio=NULL;
3536 mpctx->sh_video=NULL;
3538 current_module="open_stream";
3539 mpctx->stream = open_stream(mpctx->filename, opts, &mpctx->file_format);
3540 if(!mpctx->stream) { // error...
3541 mpctx->stop_play = libmpdemux_was_interrupted(mpctx, PT_NEXT_ENTRY);
3542 goto goto_next_file;
3544 mpctx->initialized_flags|=INITIALIZED_STREAM;
3546 if(mpctx->file_format == DEMUXER_TYPE_PLAYLIST) {
3547 mp_msg(MSGT_CPLAYER, MSGL_ERR, "\nThis looks like a playlist, but "
3548 "playlist support will not be used automatically.\n"
3549 "MPlayer's playlist code is unsafe and should only be used with "
3550 "trusted sources.\nPlayback will probably fail.\n\n");
3551 #if 0
3552 play_tree_t* entry;
3553 // Handle playlist
3554 current_module="handle_playlist";
3555 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",
3556 filename_recode(mpctx->filename));
3557 entry = parse_playtree(mpctx->stream, mpctx->mconfig, 0);
3558 mpctx->eof=playtree_add_playlist(mpctx, entry);
3559 goto goto_next_file;
3560 #endif
3562 mpctx->stream->start_pos+=seek_to_byte;
3564 if(stream_dump_type==5){
3565 unsigned char buf[4096];
3566 int len;
3567 FILE *f;
3568 current_module="dumpstream";
3569 stream_reset(mpctx->stream);
3570 stream_seek(mpctx->stream,mpctx->stream->start_pos);
3571 f=fopen(stream_dump_name,"wb");
3572 if(!f){
3573 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"Cannot open dump file.\n");
3574 exit_player(mpctx, EXIT_ERROR);
3576 if (opts->chapterrange[0] > 1) {
3577 int chapter = opts->chapterrange[0] - 1;
3578 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter);
3580 while(!mpctx->stream->eof && !async_quit_request){
3581 len=stream_read(mpctx->stream,buf,4096);
3582 if(len>0) {
3583 if(fwrite(buf,len,1,f) != 1) {
3584 mp_tmsg(MSGT_MENCODER,MSGL_FATAL,"%s: Error writing file.\n",stream_dump_name);
3585 exit_player(mpctx, EXIT_ERROR);
3588 if (opts->chapterrange[1] > 0) {
3589 int chapter = -1;
3590 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER,
3591 &chapter) == STREAM_OK
3592 && chapter + 1 > opts->chapterrange[1])
3593 break;
3596 if(fclose(f)) {
3597 mp_tmsg(MSGT_MENCODER,MSGL_FATAL,"%s: Error writing file.\n",stream_dump_name);
3598 exit_player(mpctx, EXIT_ERROR);
3600 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Core dumped ;)\n");
3601 exit_player_with_rc(mpctx, EXIT_EOF, 0);
3604 #ifdef CONFIG_DVDREAD
3605 if(mpctx->stream->type==STREAMTYPE_DVD){
3606 current_module="dvd lang->id";
3607 if(opts->audio_id==-1) opts->audio_id=dvd_aid_from_lang(mpctx->stream,audio_lang);
3608 if(dvdsub_lang && opts->sub_id==-1) opts->sub_id=dvd_sid_from_lang(mpctx->stream,dvdsub_lang);
3609 // setup global sub numbering
3610 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3611 mpctx->global_sub_size += dvd_number_of_subs(mpctx->stream);
3612 current_module=NULL;
3614 #endif
3616 #ifdef CONFIG_DVDNAV
3617 if(mpctx->stream->type==STREAMTYPE_DVDNAV){
3618 current_module="dvdnav lang->id";
3619 if(opts->audio_id==-1) opts->audio_id=mp_dvdnav_aid_from_lang(mpctx->stream,audio_lang);
3620 dvdsub_lang_id = -3;
3621 if(dvdsub_lang && opts->sub_id==-1)
3622 dvdsub_lang_id = opts->sub_id = mp_dvdnav_sid_from_lang(mpctx->stream,dvdsub_lang);
3623 // setup global sub numbering
3624 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3625 mpctx->global_sub_size += mp_dvdnav_number_of_subs(mpctx->stream);
3626 current_module=NULL;
3628 #endif
3630 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
3631 goto_enable_cache:
3632 if(stream_cache_size>0){
3633 int res;
3634 current_module="enable_cache";
3635 res = stream_enable_cache(mpctx->stream,stream_cache_size*1024,
3636 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
3637 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0));
3638 if(res == 0)
3639 if((mpctx->stop_play = libmpdemux_was_interrupted(mpctx, PT_NEXT_ENTRY))) goto goto_next_file;
3642 //============ Open DEMUXERS --- DETECT file type =======================
3643 current_module="demux_open";
3645 mpctx->demuxer=demux_open(opts, mpctx->stream,mpctx->file_format,opts->audio_id,opts->video_id,opts->sub_id,mpctx->filename);
3647 // HACK to get MOV Reference Files working
3649 if (mpctx->demuxer && mpctx->demuxer->type==DEMUXER_TYPE_PLAYLIST)
3651 unsigned char* playlist_entry;
3652 play_tree_t *list = NULL, *entry = NULL;
3654 current_module="handle_demux_playlist";
3655 while (ds_get_packet(mpctx->demuxer->video,&playlist_entry)>0)
3657 char *temp, *bname;
3659 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",
3660 filename_recode(playlist_entry));
3662 bname=mp_basename(playlist_entry);
3663 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
3664 continue;
3666 if (!strcmp(playlist_entry, mpctx->filename)) // ignoring self-reference
3667 continue;
3669 entry = play_tree_new();
3671 if (mpctx->filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
3673 temp=malloc((strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename))+strlen(playlist_entry)+1));
3674 if (temp)
3676 strncpy(temp, mpctx->filename, strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename)));
3677 temp[strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename))]='\0';
3678 strcat(temp, playlist_entry);
3679 if (!strcmp(temp, mpctx->filename)) {
3680 free(temp);
3681 continue;
3683 play_tree_add_file(entry,temp);
3684 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
3685 free(temp);
3688 else
3689 play_tree_add_file(entry,playlist_entry);
3691 if(!list)
3692 list = entry;
3693 else
3694 play_tree_append_entry(list,entry);
3696 free_demuxer(mpctx->demuxer);
3697 mpctx->demuxer = NULL;
3699 if (list)
3701 entry = play_tree_new();
3702 play_tree_set_child(entry,list);
3703 mpctx->stop_play = playtree_add_playlist(mpctx, entry);
3704 goto goto_next_file;
3708 if(!mpctx->demuxer)
3709 goto goto_next_file;
3711 if (mpctx->demuxer->matroska_data.ordered_chapters)
3712 build_ordered_chapter_timeline(mpctx);
3714 if (!mpctx->sources) {
3715 mpctx->sources = talloc_ptrtype(NULL, mpctx->sources);
3716 *mpctx->sources = (struct content_source){.stream = mpctx->stream,
3717 .demuxer = mpctx->demuxer};
3718 mpctx->num_sources = 1;
3721 mpctx->initialized_flags|=INITIALIZED_DEMUXER;
3723 if (mpctx->stream->type != STREAMTYPE_DVD && mpctx->stream->type != STREAMTYPE_DVDNAV) {
3724 int i;
3725 int maxid = -1;
3726 // setup global sub numbering
3727 mpctx->global_sub_indices[SUB_SOURCE_DEMUX] = mpctx->global_sub_size; // the global # of the first demux-specific sub.
3728 for (i = 0; i < MAX_S_STREAMS; i++)
3729 if (mpctx->demuxer->s_streams[i])
3730 maxid = FFMAX(maxid, mpctx->demuxer->s_streams[i]->sid);
3731 mpctx->global_sub_size += maxid + 1;
3733 // Make opts->sub_id always selectable if set.
3734 if (mpctx->global_sub_size <= mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id)
3735 mpctx->global_sub_size = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + opts->sub_id + 1;
3737 #ifdef CONFIG_ASS
3738 if (opts->ass_enabled && ass_library) {
3739 for (int j = 0; j < mpctx->num_sources; j++) {
3740 struct demuxer *d = mpctx->sources[j].demuxer;
3741 for (int i = 0; i < d->num_attachments; i++) {
3742 struct demux_attachment *att = d->attachments + i;
3743 if (use_embedded_fonts
3744 && att->name && att->type && att->data && att->data_size
3745 && (strcmp(att->type, "application/x-truetype-font") == 0
3746 || strcmp(att->type, "application/x-font") == 0))
3747 ass_add_font(ass_library, att->name, att->data, att->data_size);
3751 #endif
3753 current_module="demux_open2";
3755 //file_format=demuxer->file_format;
3757 mpctx->d_audio=mpctx->demuxer->audio;
3758 mpctx->d_video=mpctx->demuxer->video;
3759 mpctx->d_sub=mpctx->demuxer->sub;
3761 if (ts_prog) {
3762 int tmp = ts_prog;
3763 mp_property_do("switch_program", M_PROPERTY_SET, &tmp, mpctx);
3765 // select audio stream
3766 select_audio(mpctx->demuxer, opts->audio_id, audio_lang);
3768 // DUMP STREAMS:
3769 if((stream_dump_type)&&(stream_dump_type<4)){
3770 FILE *f;
3771 demux_stream_t *ds=NULL;
3772 current_module="dump";
3773 // select stream to dump
3774 switch(stream_dump_type){
3775 case 1: ds=mpctx->d_audio;break;
3776 case 2: ds=mpctx->d_video;break;
3777 case 3: ds=mpctx->d_sub;break;
3779 if(!ds){
3780 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"dump: FATAL: Selected stream missing!\n");
3781 exit_player(mpctx, EXIT_ERROR);
3783 // disable other streams:
3784 if(mpctx->d_audio && mpctx->d_audio!=ds) {ds_free_packs(mpctx->d_audio); mpctx->d_audio->id=-2; }
3785 if(mpctx->d_video && mpctx->d_video!=ds) {ds_free_packs(mpctx->d_video); mpctx->d_video->id=-2; }
3786 if(mpctx->d_sub && mpctx->d_sub!=ds) {ds_free_packs(mpctx->d_sub); mpctx->d_sub->id=-2; }
3787 // let's dump it!
3788 f=fopen(stream_dump_name,"wb");
3789 if(!f){
3790 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"Cannot open dump file.\n");
3791 exit_player(mpctx, EXIT_ERROR);
3793 while(!ds->eof){
3794 unsigned char* start;
3795 int in_size=ds_get_packet(ds,&start);
3796 if( (mpctx->demuxer->file_format==DEMUXER_TYPE_AVI || mpctx->demuxer->file_format==DEMUXER_TYPE_ASF || mpctx->demuxer->file_format==DEMUXER_TYPE_MOV)
3797 && stream_dump_type==2) fwrite(&in_size,1,4,f);
3798 if(in_size>0) fwrite(start,in_size,1,f);
3799 if (opts->chapterrange[1] > 0) {
3800 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer);
3801 if(cur_chapter!=-1 && cur_chapter+1 > opts->chapterrange[1])
3802 break;
3805 fclose(f);
3806 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Core dumped ;)\n");
3807 exit_player_with_rc(mpctx, EXIT_EOF, 0);
3810 mpctx->sh_audio=mpctx->d_audio->sh;
3811 mpctx->sh_video=mpctx->d_video->sh;
3813 if(mpctx->sh_video){
3815 current_module="video_read_properties";
3816 if(!video_read_properties(mpctx->sh_video)) {
3817 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Video: Cannot read properties.\n");
3818 mpctx->sh_video=mpctx->d_video->sh=NULL;
3819 } else {
3820 mp_tmsg(MSGT_CPLAYER,MSGL_V,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.3f ftime:=%6.4f\n",
3821 mpctx->demuxer->file_format,mpctx->sh_video->format, mpctx->sh_video->disp_w,mpctx->sh_video->disp_h,
3822 mpctx->sh_video->fps,mpctx->sh_video->frametime
3825 /* need to set fps here for output encoders to pick it up in their init */
3826 if(force_fps){
3827 mpctx->sh_video->fps=force_fps;
3828 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
3830 vo_fps = mpctx->sh_video->fps;
3832 if(!mpctx->sh_video->fps && !force_fps){
3833 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"FPS not specified in the header or invalid, use the -fps option.\n");
3834 mpctx->sh_video=mpctx->d_video->sh=NULL;
3840 if(!mpctx->sh_video && !mpctx->sh_audio){
3841 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL, "No stream found.\n");
3842 #ifdef CONFIG_DVBIN
3843 if(mpctx->stream->type == STREAMTYPE_DVB)
3845 int dir;
3846 int v = mpctx->last_dvb_step;
3847 if(v > 0)
3848 dir = DVB_CHANNEL_HIGHER;
3849 else
3850 dir = DVB_CHANNEL_LOWER;
3852 if(dvb_step_channel(mpctx->stream, dir)) {
3853 mpctx->stop_play = PT_NEXT_ENTRY;
3854 mpctx->dvbin_reopen = 1;
3857 #endif
3858 goto goto_next_file; // exit_player(_("Fatal error"));
3861 /* display clip info */
3862 demux_info_print(mpctx->demuxer);
3864 //================== Read SUBTITLES (DVD & TEXT) ==========================
3865 if(vo_spudec==NULL &&
3866 (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)){
3867 init_vo_spudec(mpctx);
3870 // after reading video params we should load subtitles because
3871 // we know fps so now we can adjust subtitle time to ~6 seconds AST
3872 // check .sub
3873 current_module="read_subtitles_file";
3874 double sub_fps = mpctx->sh_video ? mpctx->sh_video->fps : 25;
3875 if(sub_name){
3876 for (i = 0; sub_name[i] != NULL; ++i)
3877 add_subtitles(mpctx, sub_name[i], sub_fps, 0);
3879 if(sub_auto) { // auto load sub file ...
3880 char *psub = get_path( "sub/" );
3881 char **tmp = sub_filenames((psub ? psub : ""), mpctx->filename);
3882 int i = 0;
3883 free(psub); // release the buffer created by get_path() above
3884 while (tmp[i]) {
3885 add_subtitles(mpctx, tmp[i], sub_fps, 1);
3886 free(tmp[i++]);
3888 free(tmp);
3890 if (mpctx->set_of_sub_size > 0) {
3891 // setup global sub numbering
3892 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = mpctx->global_sub_size; // the global # of the first sub.
3893 mpctx->global_sub_size += mpctx->set_of_sub_size;
3897 if (mpctx->global_sub_size) {
3898 select_subtitle(mpctx);
3899 if(subdata)
3900 switch (stream_dump_type) {
3901 case 3: list_sub_file(subdata); break;
3902 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break;
3903 case 6: dump_srt(subdata, mpctx->sh_video->fps); break;
3904 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break;
3905 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break;
3906 case 9: dump_sami(subdata, mpctx->sh_video->fps); break;
3910 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_FILENAME=%s\n",
3911 filename_recode(mpctx->filename));
3912 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_DEMUXER=%s\n", mpctx->demuxer->desc->name);
3913 if (mpctx->sh_video) {
3914 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3915 if (mpctx->sh_video->format >= 0x20202020)
3916 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format);
3917 else
3918 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format);
3919 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps*8);
3920 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w);
3921 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h);
3922 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps);
3923 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect);
3925 if (mpctx->sh_audio) {
3926 /* Assume FOURCC if all bytes >= 0x20 (' ') */
3927 if (mpctx->sh_audio->format >= 0x20202020)
3928 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format);
3929 else
3930 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format);
3931 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps*8);
3932 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate);
3933 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels);
3935 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_LENGTH=%.2f\n", mpctx->timeline ?
3936 mpctx->timeline[mpctx->num_timeline_parts].start :
3937 demuxer_get_time_length(mpctx->demuxer));
3938 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_SEEKABLE=%d\n",
3939 mpctx->stream->seek && (!mpctx->demuxer || mpctx->demuxer->seekable));
3940 if (mpctx->demuxer) {
3941 if (mpctx->demuxer->num_chapters == 0)
3942 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
3943 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters);
3946 if(!mpctx->sh_video) goto main; // audio-only
3948 if(!reinit_video_chain(mpctx)) {
3949 if(!mpctx->sh_video){
3950 if(!mpctx->sh_audio) goto goto_next_file;
3951 goto main; // exit_player(_("Fatal error"));
3955 if(mpctx->sh_video->output_flags & 0x08 && vo_spudec)
3956 spudec_set_hw_spu(vo_spudec,mpctx->video_out);
3958 #ifdef CONFIG_FREETYPE
3959 force_load_font = 1;
3960 #endif
3962 //================== MAIN: ==========================
3963 main:
3964 current_module="main";
3966 if(playing_msg) {
3967 char* msg = property_expand_string(mpctx, playing_msg);
3968 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",msg);
3969 free(msg);
3973 // Disable the term OSD in verbose mode
3974 if(verbose) term_osd = 0;
3977 //int frame_corr_num=0; //
3978 //float v_frame=0; // Video
3979 //float num_frames=0; // number of frames played
3981 int frame_time_remaining=0; // flag
3982 int blit_frame=0;
3984 // Make sure old OSD does not stay around,
3985 // e.g. with -fixed-vo and same-resolution files
3986 clear_osd_msgs();
3987 update_osd_msg(mpctx);
3989 //================ SETUP AUDIO ==========================
3991 if(mpctx->sh_audio){
3992 reinit_audio_chain(mpctx);
3993 if (mpctx->sh_audio && mpctx->sh_audio->codec)
3994 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name);
3997 current_module="av_init";
3999 if(mpctx->sh_video){
4000 mpctx->sh_video->timer=0;
4001 if (! ignore_start)
4002 audio_delay += mpctx->sh_video->stream_delay;
4004 if(mpctx->sh_audio){
4005 if (start_volume >= 0)
4006 mixer_setvolume(&mpctx->mixer, start_volume, start_volume);
4007 if (! ignore_start)
4008 audio_delay -= mpctx->sh_audio->stream_delay;
4009 mpctx->delay=-audio_delay;
4012 if(!mpctx->sh_audio){
4013 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Audio: no sound\n");
4014 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",mpctx->d_audio->packs);
4015 ds_free_packs(mpctx->d_audio); // free buffered chunks
4016 //mpctx->d_audio->id=-2; // do not read audio chunks
4017 //uninit_player(mpctx, INITIALIZED_AO); // close device
4019 if(!mpctx->sh_video){
4020 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Video: no video\n");
4021 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",mpctx->d_video->packs);
4022 ds_free_packs(mpctx->d_video);
4023 mpctx->d_video->id=-2;
4024 //if(!fixed_vo) uninit_player(mpctx, INITIALIZED_VO);
4027 if (!mpctx->sh_video && !mpctx->sh_audio)
4028 goto goto_next_file;
4030 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
4031 if(force_fps && mpctx->sh_video){
4032 vo_fps = mpctx->sh_video->fps=force_fps;
4033 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
4034 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"FPS forced to be %5.3f (ftime: %5.3f).\n",mpctx->sh_video->fps,mpctx->sh_video->frametime);
4037 mp_input_set_section(mpctx->input, NULL);
4038 //TODO: add desired (stream-based) sections here
4039 if (mpctx->stream->type==STREAMTYPE_TV) mp_input_set_section(mpctx->input, "tv");
4040 if (mpctx->stream->type==STREAMTYPE_DVDNAV) mp_input_set_section(mpctx->input, "dvdnav");
4042 //==================== START PLAYING =======================
4044 if(opts->loop_times>1) opts->loop_times--; else
4045 if(opts->loop_times==1) opts->loop_times = -1;
4047 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Starting playback...\n");
4049 total_time_usage_start=GetTimer();
4050 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
4051 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
4052 play_n_frames=play_n_frames_mf;
4054 if(play_n_frames==0){
4055 mpctx->stop_play=PT_NEXT_ENTRY; goto goto_next_file;
4058 // If there's a timeline force an absolute seek to initialize state
4059 if (seek_to_sec || mpctx->timeline) {
4060 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE);
4061 end_at.pos += seek_to_sec;
4063 if (opts->chapterrange[0] > 0) {
4064 double pts;
4065 if (seek_chapter(mpctx, opts->chapterrange[0]-1, &pts, NULL) >= 0
4066 && pts > -1.0)
4067 seek(mpctx, pts, SEEK_ABSOLUTE);
4070 if (end_at.type == END_AT_SIZE) {
4071 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Option -endpos in MPlayer does not yet support size units.\n");
4072 end_at.type = END_AT_NONE;
4075 #ifdef CONFIG_DVDNAV
4076 mp_dvdnav_context_free(mpctx);
4077 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
4078 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
4079 mp_dvdnav_cell_has_changed(mpctx->stream,1);
4081 #endif
4083 get_relative_time(mpctx); // reset current delta
4084 mpctx->time_frame = 0;
4085 mpctx->drop_message_shown = 0;
4086 mpctx->update_video_immediately = true;
4087 mpctx->total_avsync_change = 0;
4088 // Make sure VO knows current pause state
4089 if (mpctx->sh_video)
4090 vo_control(mpctx->video_out, mpctx->paused ? VOCTRL_PAUSE : VOCTRL_RESUME,
4091 NULL);
4093 while(!mpctx->stop_play){
4094 float aq_sleep_time=0;
4096 if (opts->chapterrange[1] > 0) {
4097 int cur_chapter = get_current_chapter(mpctx);
4098 if(cur_chapter!=-1 && cur_chapter+1 > opts->chapterrange[1])
4099 goto goto_next_file;
4102 if(!mpctx->sh_audio && mpctx->d_audio->sh) {
4103 mpctx->sh_audio = mpctx->d_audio->sh;
4104 mpctx->sh_audio->ds = mpctx->d_audio;
4105 reinit_audio_chain(mpctx);
4108 /*========================== PLAY AUDIO ============================*/
4110 if (mpctx->sh_audio && !mpctx->paused)
4111 if (!fill_audio_out_buffers(mpctx))
4112 // at eof, all audio at least written to ao
4113 if (!mpctx->sh_video)
4114 mpctx->stop_play = AT_END_OF_FILE;
4117 if(!mpctx->sh_video) {
4118 // handle audio-only case:
4119 double a_pos=0;
4120 // sh_audio can be NULL due to video stream switching
4121 // TODO: handle this better
4122 if (mpctx->sh_audio)
4123 a_pos = playing_audio_pts(mpctx);
4125 print_status(mpctx, a_pos, false);
4127 if(end_at.type == END_AT_TIME && end_at.pos < a_pos)
4128 mpctx->stop_play = PT_NEXT_ENTRY;
4129 update_subtitles(mpctx, &mpctx->opts, NULL, a_pos, mpctx->video_offset,
4130 mpctx->d_sub, 0);
4131 update_osd_msg(mpctx);
4133 } else {
4135 /*========================== PLAY VIDEO ============================*/
4137 vo_pts=mpctx->sh_video->timer*90000.0;
4138 vo_fps=mpctx->sh_video->fps;
4140 blit_frame = mpctx->video_out->frame_loaded;
4141 if (!blit_frame) {
4142 double frame_time = update_video(mpctx);
4143 blit_frame = mpctx->video_out->frame_loaded;
4144 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
4145 if (mpctx->sh_video->vf_initialized < 0) {
4146 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL, "\nFATAL: Could not initialize video filters (-vf) or video output (-vo).\n");
4147 mpctx->stop_play = PT_NEXT_ENTRY;
4148 goto goto_next_file;
4150 if (blit_frame) {
4151 struct sh_video *sh_video = mpctx->sh_video;
4152 update_subtitles(mpctx, &mpctx->opts, sh_video, sh_video->pts,
4153 mpctx->video_offset, mpctx->d_sub, 0);
4154 update_teletext(sh_video, mpctx->demuxer, 0);
4155 update_osd_msg(mpctx);
4156 struct vf_instance *vf = mpctx->sh_video->vfilter;
4157 vf->control(vf, VFCTRL_DRAW_EOSD, NULL);
4158 vf->control(vf, VFCTRL_DRAW_OSD, mpctx->osd);
4159 vo_osd_changed(0);
4161 if (frame_time < 0)
4162 mpctx->stop_play = AT_END_OF_FILE;
4163 else {
4164 if (mpctx->update_video_immediately) {
4165 // Show this frame immediately, rest normally
4166 mpctx->update_video_immediately = false;
4167 } else {
4168 mpctx->time_frame += frame_time / opts->playback_speed;
4169 adjust_sync(mpctx, frame_time);
4173 if (mpctx->timeline) {
4174 struct timeline_part *next = mpctx->timeline + mpctx->timeline_part + 1;
4175 if (mpctx->sh_video->pts >= next->start
4176 || mpctx->stop_play == AT_END_OF_FILE
4177 && mpctx->timeline_part + 1 < mpctx->num_timeline_parts) {
4178 seek(mpctx, next->start, SEEK_ABSOLUTE);
4179 continue;
4183 // ==========================================================================
4185 // current_module="draw_osd";
4186 // if(vo_config_count) mpctx->video_out->draw_osd();
4188 current_module="vo_check_events";
4189 vo_check_events(mpctx->video_out);
4191 #ifdef CONFIG_X11
4192 if (stop_xscreensaver) {
4193 current_module = "stop_xscreensaver";
4194 xscreensaver_heartbeat(mpctx->x11_state);
4196 #endif
4197 if (heartbeat_cmd) {
4198 static unsigned last_heartbeat;
4199 unsigned now = GetTimerMS();
4200 if (now - last_heartbeat > 30000) {
4201 last_heartbeat = now;
4202 system(heartbeat_cmd);
4206 frame_time_remaining = sleep_until_update(mpctx, &mpctx->time_frame, &aq_sleep_time);
4208 //====================== FLIP PAGE (VIDEO BLT): =========================
4210 current_module="flip_page";
4211 if (!frame_time_remaining && blit_frame) {
4212 unsigned int t2=GetTimer();
4213 unsigned int pts_us = mpctx->last_time + mpctx->time_frame * 1e6;
4214 int duration = -1;
4215 double pts2 = mpctx->video_out->next_pts2;
4216 if (pts2 != MP_NOPTS_VALUE && opts->correct_pts) {
4217 // expected A/V sync correction is ignored
4218 double diff = (pts2 - mpctx->sh_video->pts);
4219 diff /= opts->playback_speed;
4220 if (mpctx->time_frame < 0)
4221 diff += mpctx->time_frame;
4222 if (diff < 0)
4223 diff = 0;
4224 if (diff > 10)
4225 diff = 10;
4226 duration = diff * 1e6;
4228 vo_flip_page(mpctx->video_out, pts_us|1, duration);
4230 mpctx->last_vo_flip_duration = (GetTimer() - t2) * 0.000001;
4231 vout_time_usage += mpctx->last_vo_flip_duration;
4232 if (mpctx->video_out->driver->flip_page_timed) {
4233 // No need to adjust sync based on flip speed
4234 mpctx->last_vo_flip_duration = 0;
4235 // For print_status - VO call finishing early is OK for sync
4236 mpctx->time_frame -= get_relative_time(mpctx);
4238 print_status(mpctx, MP_NOPTS_VALUE, true);
4240 else
4241 print_status(mpctx, MP_NOPTS_VALUE, false);
4243 //============================ Auto QUALITY ============================
4245 /*Output quality adjustments:*/
4246 if(auto_quality>0){
4247 current_module="autoq";
4248 // float total=0.000001f * (GetTimer()-aq_total_time);
4249 // if(output_quality<auto_quality && aq_sleep_time>0.05f*total)
4250 if(output_quality<auto_quality && aq_sleep_time>0)
4251 ++output_quality;
4252 else
4253 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
4254 if(output_quality>1 && aq_sleep_time<0)
4255 --output_quality;
4256 else
4257 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
4258 output_quality=0;
4259 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
4260 set_video_quality(mpctx->sh_video,output_quality);
4263 if (!frame_time_remaining && blit_frame) {
4264 if (play_n_frames >= 0) {
4265 --play_n_frames;
4266 if (play_n_frames <= 0)
4267 mpctx->stop_play = PT_NEXT_ENTRY;
4269 if (mpctx->step_frames > 0) {
4270 mpctx->step_frames--;
4271 if (mpctx->step_frames == 0)
4272 pause_player(mpctx);
4277 // FIXME: add size based support for -endpos
4278 if (end_at.type == END_AT_TIME &&
4279 !frame_time_remaining && end_at.pos <= mpctx->sh_video->pts)
4280 mpctx->stop_play = PT_NEXT_ENTRY;
4282 } // end if(mpctx->sh_video)
4284 #ifdef CONFIG_DVDNAV
4285 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
4286 nav_highlight_t hl;
4287 mp_dvdnav_get_highlight (mpctx->stream, &hl);
4288 osd_set_nav_box (hl.sx, hl.sy, hl.ex, hl.ey);
4289 vo_osd_changed (OSDTYPE_DVDNAV);
4291 if (mp_dvdnav_stream_has_changed(mpctx->stream)) {
4292 double ar = -1.0;
4293 if (stream_control (mpctx->demuxer->stream,
4294 STREAM_CTRL_GET_ASPECT_RATIO, &ar)
4295 != STREAM_UNSUPPORTED)
4296 mpctx->sh_video->stream_aspect = ar;
4299 #endif
4301 //================= Keyboard events, SEEKing ====================
4303 current_module="key_events";
4306 while (1) {
4307 mp_cmd_t* cmd;
4308 while ((cmd = mp_input_get_cmd(mpctx->input, 0, 0)) != NULL) {
4309 run_command(mpctx, cmd);
4310 mp_cmd_free(cmd);
4311 if (mpctx->stop_play)
4312 break;
4313 if (mpctx->rel_seek_secs || mpctx->abs_seek_pos) {
4314 cmd = mp_input_get_cmd(mpctx->input, 0, 1);
4315 /* Allow seek commands to be combined, but execute the real seek
4316 * before processing other commands */
4317 if (!cmd || cmd->id != MP_CMD_SEEK)
4318 break;
4321 if (!mpctx->paused || mpctx->stop_play || mpctx->rel_seek_secs
4322 || mpctx->abs_seek_pos)
4323 break;
4324 if (mpctx->sh_video) {
4325 update_osd_msg(mpctx);
4326 int hack = vo_osd_changed(0);
4327 vo_osd_changed(hack);
4328 if (hack) {
4329 if (redraw_osd(mpctx->sh_video, mpctx->osd) < 0) {
4330 add_step_frame(mpctx);
4331 break;
4333 else
4334 vo_osd_changed(0);
4337 pause_loop(mpctx);
4341 // handle -sstep
4342 if (step_sec > 0 && !mpctx->paused) {
4343 mpctx->osd_function=OSD_FFW;
4344 mpctx->rel_seek_secs+=step_sec;
4347 edl_update(mpctx);
4349 /* Looping. */
4350 if(mpctx->stop_play==AT_END_OF_FILE && opts->loop_times>=0) {
4351 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d\n", opts->loop_times);
4353 if(opts->loop_times>1) opts->loop_times--; else
4354 if(opts->loop_times==1) opts->loop_times=-1;
4355 play_n_frames=play_n_frames_mf;
4356 mpctx->stop_play=0;
4357 mpctx->abs_seek_pos=SEEK_ABSOLUTE; mpctx->rel_seek_secs=seek_to_sec;
4360 if(mpctx->rel_seek_secs || mpctx->abs_seek_pos){
4361 seek(mpctx, mpctx->rel_seek_secs, mpctx->abs_seek_pos);
4363 mpctx->rel_seek_secs=0;
4364 mpctx->abs_seek_pos=0;
4367 } // while(!mpctx->stop_play)
4369 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",mpctx->stop_play);
4371 #ifdef CONFIG_DVBIN
4372 if(mpctx->dvbin_reopen)
4374 mpctx->stop_play = 0;
4375 uninit_player(mpctx, INITIALIZED_ALL-(INITIALIZED_STREAM|INITIALIZED_GETCH2|(opts->fixed_vo?INITIALIZED_VO:0)));
4376 cache_uninit(mpctx->stream);
4377 mpctx->dvbin_reopen = 0;
4378 goto goto_enable_cache;
4380 #endif
4383 goto_next_file: // don't jump here after ao/vo/getch initialization!
4385 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
4387 if(benchmark){
4388 double tot=video_time_usage+vout_time_usage+audio_time_usage;
4389 double total_time_usage;
4390 total_time_usage_start=GetTimer()-total_time_usage_start;
4391 total_time_usage = (float)total_time_usage_start*0.000001;
4392 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
4393 video_time_usage,vout_time_usage,audio_time_usage,
4394 total_time_usage-tot,total_time_usage);
4395 if(total_time_usage>0.0)
4396 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
4397 100.0*video_time_usage/total_time_usage,
4398 100.0*vout_time_usage/total_time_usage,
4399 100.0*audio_time_usage/total_time_usage,
4400 100.0*(total_time_usage-tot)/total_time_usage,
4401 100.0);
4402 if(total_frame_cnt && frame_dropping)
4403 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
4404 total_frame_cnt-drop_frame_cnt,
4405 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
4406 drop_frame_cnt,
4407 100*drop_frame_cnt/total_frame_cnt,
4408 total_frame_cnt,
4409 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
4412 // time to uninit all, except global stuff:
4413 uninit_player(mpctx, INITIALIZED_ALL-(opts->fixed_vo?INITIALIZED_VO:0));
4415 if(mpctx->set_of_sub_size > 0) {
4416 current_module="sub_free";
4417 for(i = 0; i < mpctx->set_of_sub_size; ++i) {
4418 sub_free(mpctx->set_of_subtitles[i]);
4419 #ifdef CONFIG_ASS
4420 if(mpctx->set_of_ass_tracks[i])
4421 ass_free_track( mpctx->set_of_ass_tracks[i] );
4422 #endif
4424 mpctx->set_of_sub_size = 0;
4426 vo_sub_last = vo_sub=NULL;
4427 subdata=NULL;
4428 #ifdef CONFIG_ASS
4429 ass_track = NULL;
4430 if(ass_library)
4431 ass_clear_fonts(ass_library);
4432 #endif
4434 if (!mpctx->stop_play) // In case some goto jumped here...
4435 mpctx->stop_play = PT_NEXT_ENTRY;
4437 int playtree_direction = 1;
4439 if(mpctx->stop_play == PT_NEXT_ENTRY || mpctx->stop_play == PT_PREV_ENTRY) {
4440 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->play_tree_step,0) != PLAY_TREE_ITER_ENTRY) {
4441 play_tree_iter_free(mpctx->playtree_iter);
4442 mpctx->playtree_iter = NULL;
4444 mpctx->play_tree_step = 1;
4445 } else if(mpctx->stop_play == PT_UP_NEXT || mpctx->stop_play == PT_UP_PREV) {
4446 int direction = mpctx->stop_play == PT_UP_NEXT ? 1 : -1;
4447 if(mpctx->playtree_iter) {
4448 if(play_tree_iter_up_step(mpctx->playtree_iter,direction,0) != PLAY_TREE_ITER_ENTRY) {
4449 play_tree_iter_free(mpctx->playtree_iter);
4450 mpctx->playtree_iter = NULL;
4453 } else if (mpctx->stop_play == PT_STOP) {
4454 play_tree_iter_free(mpctx->playtree_iter);
4455 mpctx->playtree_iter = NULL;
4456 } else { // NEXT PREV SRC
4457 playtree_direction = mpctx->stop_play == PT_PREV_SRC ? -1 : 1;
4460 while(mpctx->playtree_iter != NULL) {
4461 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter, playtree_direction);
4462 if(mpctx->filename == NULL) {
4463 if(play_tree_iter_step(mpctx->playtree_iter, playtree_direction, 0) != PLAY_TREE_ITER_ENTRY) {
4464 play_tree_iter_free(mpctx->playtree_iter);
4465 mpctx->playtree_iter = NULL;
4467 } else
4468 break;
4471 if(mpctx->playtree_iter != NULL || player_idle_mode){
4472 if(!mpctx->playtree_iter) mpctx->filename = NULL;
4473 mpctx->stop_play = 0;
4474 goto play_next_file;
4478 exit_player_with_rc(mpctx, EXIT_EOF, 0);
4480 return 1;
4482 #endif /* DISABLE_MAIN */