font_load_ft.c: disable -fontconfig if compiled without libfontconfig
[mplayer/glamo.git] / mplayer.c
blob4a36afd2f24446f91bc2df29efb10be7e62415fe
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 <math.h>
27 #include "config.h"
28 #include "talloc.h"
30 #if defined(__MINGW32__) || defined(__CYGWIN__)
31 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/
32 #include <windows.h>
33 #endif
34 #include <string.h>
35 #include <unistd.h>
37 // #include <sys/mman.h>
38 #include <sys/types.h>
39 #ifndef __MINGW32__
40 #include <sys/ioctl.h>
41 #include <sys/wait.h>
42 #else
43 #define SIGHUP 1 /* hangup */
44 #define SIGQUIT 3 /* quit */
45 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
46 #define SIGBUS 10 /* bus error */
47 #define SIGPIPE 13 /* broken pipe */
48 #endif
50 #include <sys/time.h>
51 #include <sys/stat.h>
53 #include <signal.h>
54 #include <time.h>
55 #include <fcntl.h>
56 #include <limits.h>
58 #include <errno.h>
60 #include "mp_msg.h"
61 #include "av_log.h"
64 #include "m_option.h"
65 #include "m_config.h"
66 #include "mplayer.h"
67 #include "access_mpcontext.h"
68 #include "m_property.h"
70 #include "cfg-mplayer-def.h"
72 #include "libavutil/avstring.h"
74 #include "subreader.h"
76 #include "mp_osd.h"
77 #include "libvo/video_out.h"
79 #include "libvo/font_load.h"
80 #include "libvo/sub.h"
82 #ifdef CONFIG_X11
83 #include "libvo/x11_common.h"
84 #endif
86 #include "libao2/audio_out.h"
88 #include "codec-cfg.h"
90 #include "edl.h"
92 #include "spudec.h"
93 #include "vobsub.h"
95 #include "osdep/getch2.h"
96 #include "osdep/timer.h"
97 #include "osdep/findfiles.h"
99 #include "input/input.h"
101 const int under_mencoder = 0;
102 int slave_mode=0;
103 int enable_mouse_movements=0;
104 float start_volume = -1;
106 #include "osdep/priority.h"
108 char *heartbeat_cmd;
110 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
112 #ifdef HAVE_RTC
113 #ifdef __linux__
114 #include <linux/rtc.h>
115 #else
116 #include <rtc.h>
117 #define RTC_IRQP_SET RTCIO_IRQP_SET
118 #define RTC_PIE_ON RTCIO_PIE_ON
119 #endif /* __linux__ */
120 #endif /* HAVE_RTC */
122 #include "stream/tv.h"
123 #include "stream/stream_radio.h"
124 #ifdef CONFIG_DVBIN
125 #include "stream/dvbin.h"
126 #endif
127 #include "stream/cache2.h"
129 //**************************************************************************//
130 // Playtree
131 //**************************************************************************//
132 #include "playtree.h"
133 #include "playtreeparser.h"
135 //**************************************************************************//
136 // Config
137 //**************************************************************************//
138 #include "parser-cfg.h"
139 #include "parser-mpcmd.h"
141 //**************************************************************************//
142 // Config file
143 //**************************************************************************//
145 static int cfg_inc_verbose(m_option_t *conf){ ++verbose; return 0;}
147 #include "path.h"
149 //**************************************************************************//
150 //**************************************************************************//
151 // Input media streaming & demultiplexer:
152 //**************************************************************************//
154 static int max_framesize=0;
156 #include "stream/stream.h"
157 #include "libmpdemux/demuxer.h"
158 #include "libmpdemux/stheader.h"
160 #ifdef CONFIG_DVDREAD
161 #include "stream/stream_dvd.h"
162 #endif
163 #include "stream/stream_dvdnav.h"
165 #include "libmpcodecs/dec_audio.h"
166 #include "libmpcodecs/dec_video.h"
167 #include "libmpcodecs/mp_image.h"
168 #include "libmpcodecs/vf.h"
169 #include "libmpcodecs/vd.h"
171 #include "mixer.h"
173 #include "mp_core.h"
174 #include "options.h"
175 #include "defaultopts.h"
177 static const char help_text[]=_(
178 "Usage: mplayer [options] [url|path/]filename\n"
179 "\n"
180 "Basic options: (complete list in the man page)\n"
181 " -vo <drv> select video output driver ('-vo help' for a list)\n"
182 " -ao <drv> select audio output driver ('-ao help' for a list)\n"
183 #ifdef CONFIG_VCD
184 " vcd://<trackno> play (S)VCD (Super Video CD) track (raw device, no mount)\n"
185 #endif
186 #ifdef CONFIG_DVDREAD
187 " dvd://<titleno> play DVD title from device instead of plain file\n"
188 #endif
189 " -alang/-slang select DVD audio/subtitle language (by 2-char country code)\n"
190 " -ss <position> seek to given (seconds or hh:mm:ss) position\n"
191 " -nosound do not play sound\n"
192 " -fs fullscreen playback (or -vm, -zoom, details in the man page)\n"
193 " -x <x> -y <y> set display resolution (for use with -vm or -zoom)\n"
194 " -sub <file> specify subtitle file to use (also see -subfps, -subdelay)\n"
195 " -playlist <file> specify playlist file\n"
196 " -vid x -aid y select video (x) and audio (y) stream to play\n"
197 " -fps x -srate y change video (x fps) and audio (y Hz) rate\n"
198 " -pp <quality> enable postprocessing filter (details in the man page)\n"
199 " -framedrop enable frame dropping (for slow machines)\n"
200 "\n"
201 "Basic keys: (complete list in the man page, also check input.conf)\n"
202 " <- or -> seek backward/forward 10 seconds\n"
203 " down or up seek backward/forward 1 minute\n"
204 " pgdown or pgup seek backward/forward 10 minutes\n"
205 " < or > step backward/forward in playlist\n"
206 " p or SPACE pause movie (press any key to continue)\n"
207 " q or ESC stop playing and quit program\n"
208 " + or - adjust audio delay by +/- 0.1 second\n"
209 " o cycle OSD mode: none / seekbar / seekbar + timer\n"
210 " * or / increase or decrease PCM volume\n"
211 " x or z adjust subtitle delay by +/- 0.1 second\n"
212 " r or t adjust subtitle position up/down, also see -vf expand\n"
213 "\n"
214 " * * * SEE THE MAN PAGE FOR DETAILS, FURTHER (ADVANCED) OPTIONS AND KEYS * * *\n"
215 "\n");
218 #define Exit_SIGILL_RTCpuSel _(\
219 "- MPlayer crashed by an 'Illegal Instruction'.\n"\
220 " It may be a bug in our new runtime CPU-detection code...\n"\
221 " Please read DOCS/HTML/en/bugreports.html.\n")
223 #define Exit_SIGILL _(\
224 "- MPlayer crashed by an 'Illegal Instruction'.\n"\
225 " It usually happens when you run it on a CPU different than the one it was\n"\
226 " compiled/optimized for.\n"\
227 " Verify this!\n")
229 #define Exit_SIGSEGV_SIGFPE _(\
230 "- MPlayer crashed by bad usage of CPU/FPU/RAM.\n"\
231 " Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and\n"\
232 " disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.\n")
234 #define Exit_SIGCRASH _(\
235 "- MPlayer crashed. This shouldn't happen.\n"\
236 " It can be a bug in the MPlayer code _or_ in your drivers _or_ in your\n"\
237 " gcc version. If you think it's MPlayer's fault, please read\n"\
238 " DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and\n"\
239 " won't help unless you provide this information when reporting a possible bug.\n")
241 #define SystemTooSlow _("\n\n"\
242 " ************************************************\n"\
243 " **** Your system is too SLOW to play this! ****\n"\
244 " ************************************************\n\n"\
245 "Possible reasons, problems, workarounds:\n"\
246 "- Most common: broken/buggy _audio_ driver\n"\
247 " - Try -ao sdl or use the OSS emulation of ALSA.\n"\
248 " - Experiment with different values for -autosync, 30 is a good start.\n"\
249 "- Slow video output\n"\
250 " - Try a different -vo driver (-vo help for a list) or try -framedrop!\n"\
251 "- Slow CPU\n"\
252 " - Don't try to play a big DVD/DivX on a slow CPU! Try some of the lavdopts,\n"\
253 " e.g. -vfm ffmpeg -lavdopts lowres=1:fast:skiploopfilter=all.\n"\
254 "- Broken file\n"\
255 " - Try various combinations of -nobps -ni -forceidx -mc 0.\n"\
256 "- Slow media (NFS/SMB mounts, DVD, VCD etc)\n"\
257 " - Try -cache 8192.\n"\
258 "- Are you using -cache to play a non-interleaved AVI file?\n"\
259 " - Try -nocache.\n"\
260 "Read DOCS/HTML/en/video.html for tuning/speedup tips.\n"\
261 "If none of this helps you, read DOCS/HTML/en/bugreports.html.\n\n")
264 //**************************************************************************//
265 //**************************************************************************//
267 #include "mp_fifo.h"
269 // benchmark:
270 double video_time_usage=0;
271 double vout_time_usage=0;
272 static double audio_time_usage=0;
273 static int total_time_usage_start=0;
274 static int total_frame_cnt=0;
275 static int drop_frame_cnt=0; // total number of dropped frames
277 // options:
278 static int output_quality=0;
280 // seek:
281 static double seek_to_sec;
282 static off_t seek_to_byte=0;
283 static off_t step_sec=0;
285 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 };
287 // codecs:
288 char **audio_codec_list=NULL; // override audio codec
289 char **video_codec_list=NULL; // override video codec
290 char **audio_fm_list=NULL; // override audio codec family
291 char **video_fm_list=NULL; // override video codec family
293 // this dvdsub_id was selected via slang
294 // use this to allow dvdnav to follow -slang across stream resets,
295 // in particular the subtitle ID for a language changes
296 int dvdsub_lang_id;
297 int vobsub_id=-1;
298 static char* spudec_ifo=NULL;
299 int forced_subs_only=0;
300 int file_filter=1;
302 // cache2:
303 int stream_cache_size=-1;
305 // dump:
306 int stream_dump_type=0;
308 // A-V sync:
309 static float default_max_pts_correction=-1;//0.01f;
310 float audio_delay=0;
311 static int ignore_start=0;
313 double force_fps=0;
314 static int force_srate=0;
315 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
316 static int play_n_frames=-1;
317 static int play_n_frames_mf=-1;
319 // sub:
320 char *font_name=NULL;
321 char *sub_font_name=NULL;
322 extern int font_fontconfig;
323 float font_factor=0.75;
324 char **sub_name=NULL;
325 float sub_delay=0;
326 float sub_fps=0;
327 int sub_auto = 1;
328 char *vobsub_name=NULL;
329 int subcc_enabled=0;
330 int suboverlap_enabled = 1;
332 #include "ass_mp.h"
334 char* current_module=NULL; // for debugging
337 // ---
339 #ifdef CONFIG_MENU
340 #include "m_struct.h"
341 #include "libmenu/menu.h"
342 static const vf_info_t* const libmenu_vfs[] = {
343 &vf_info_menu,
344 NULL
346 static vf_instance_t* vf_menu = NULL;
347 int use_menu = 0;
348 static char* menu_cfg = NULL;
349 static char* menu_root = "main";
350 #endif
353 edl_record_ptr edl_records = NULL; ///< EDL entries memory area
354 edl_record_ptr next_edl_record = NULL; ///< only for traversing edl_records
355 FILE* edl_fd = NULL; ///< fd to write to when in -edlout mode.
356 int use_filedir_conf;
357 int use_filename_title;
359 #include "mpcommon.h"
360 #include "command.h"
362 #include "metadata.h"
364 const void *mpctx_get_video_out(MPContext *mpctx)
366 return mpctx->video_out;
369 const void *mpctx_get_audio_out(MPContext *mpctx)
371 return mpctx->audio_out;
374 void *mpctx_get_demuxer(MPContext *mpctx)
376 return mpctx->demuxer;
379 void *mpctx_get_playtree_iter(MPContext *mpctx)
381 return mpctx->playtree_iter;
384 void *mpctx_get_mixer(MPContext *mpctx)
386 return &mpctx->mixer;
389 int mpctx_get_global_sub_size(MPContext *mpctx)
391 return mpctx->global_sub_size;
394 int mpctx_get_osd_function(MPContext *mpctx)
396 return mpctx->osd_function;
399 static float get_relative_time(struct MPContext *mpctx)
401 unsigned int new_time = GetTimer();
402 unsigned int delta = new_time - mpctx->last_time;
403 mpctx->last_time = new_time;
404 return delta * 0.000001;
407 static int is_valid_metadata_type(struct MPContext *mpctx, metadata_t type) {
408 switch (type)
410 /* check for valid video stream */
411 case META_VIDEO_CODEC:
412 case META_VIDEO_BITRATE:
413 case META_VIDEO_RESOLUTION:
415 if (!mpctx->sh_video)
416 return 0;
417 break;
420 /* check for valid audio stream */
421 case META_AUDIO_CODEC:
422 case META_AUDIO_BITRATE:
423 case META_AUDIO_SAMPLES:
425 if (!mpctx->sh_audio)
426 return 0;
427 break;
430 /* check for valid demuxer */
431 case META_INFO_TITLE:
432 case META_INFO_ARTIST:
433 case META_INFO_ALBUM:
434 case META_INFO_YEAR:
435 case META_INFO_COMMENT:
436 case META_INFO_TRACK:
437 case META_INFO_GENRE:
439 if (!mpctx->demuxer)
440 return 0;
441 break;
444 default:
445 break;
448 return 1;
451 static char *get_demuxer_info(struct MPContext *mpctx, char *tag) {
452 char **info = mpctx->demuxer->info;
453 int n;
455 if (!info || !tag)
456 return NULL;
458 for (n = 0; info[2*n] != NULL ; n++)
459 if (!strcasecmp (info[2*n], tag))
460 break;
462 return info[2*n+1] ? strdup (info[2*n+1]) : NULL;
465 char *get_metadata(struct MPContext *mpctx, metadata_t type)
467 char *meta = NULL;
468 sh_audio_t * const sh_audio = mpctx->sh_audio;
469 sh_video_t * const sh_video = mpctx->sh_video;
471 if (!is_valid_metadata_type(mpctx, type))
472 return NULL;
474 switch (type)
476 case META_NAME:
478 return strdup(mp_basename(mpctx->filename));
481 case META_VIDEO_CODEC:
483 if (sh_video->format == 0x10000001)
484 meta = strdup ("mpeg1");
485 else if (sh_video->format == 0x10000002)
486 meta = strdup ("mpeg2");
487 else if (sh_video->format == 0x10000004)
488 meta = strdup ("mpeg4");
489 else if (sh_video->format == 0x10000005)
490 meta = strdup ("h264");
491 else if (sh_video->format >= 0x20202020)
493 meta = malloc (8);
494 sprintf (meta, "%.4s", (char *) &sh_video->format);
496 else
498 meta = malloc (8);
499 sprintf (meta, "0x%08X", sh_video->format);
501 return meta;
504 case META_VIDEO_BITRATE:
506 meta = malloc (16);
507 sprintf (meta, "%d kbps", (int) (sh_video->i_bps * 8 / 1024));
508 return meta;
511 case META_VIDEO_RESOLUTION:
513 meta = malloc (16);
514 sprintf (meta, "%d x %d", sh_video->disp_w, sh_video->disp_h);
515 return meta;
518 case META_AUDIO_CODEC:
520 if (sh_audio->codec && sh_audio->codec->name)
521 meta = strdup (sh_audio->codec->name);
522 return meta;
525 case META_AUDIO_BITRATE:
527 meta = malloc (16);
528 sprintf (meta, "%d kbps", (int) (sh_audio->i_bps * 8/1000));
529 return meta;
532 case META_AUDIO_SAMPLES:
534 meta = malloc (16);
535 sprintf (meta, "%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels);
536 return meta;
539 /* check for valid demuxer */
540 case META_INFO_TITLE:
541 return get_demuxer_info(mpctx, "Title");
543 case META_INFO_ARTIST:
544 return get_demuxer_info(mpctx, "Artist");
546 case META_INFO_ALBUM:
547 return get_demuxer_info(mpctx, "Album");
549 case META_INFO_YEAR:
550 return get_demuxer_info(mpctx, "Year");
552 case META_INFO_COMMENT:
553 return get_demuxer_info(mpctx, "Comment");
555 case META_INFO_TRACK:
556 return get_demuxer_info(mpctx, "Track");
558 case META_INFO_GENRE:
559 return get_demuxer_info(mpctx, "Genre");
561 default:
562 break;
565 return meta;
568 static void print_file_properties(struct MPContext *mpctx, const char *filename)
570 double start_pts = MP_NOPTS_VALUE;
571 double video_start_pts = MP_NOPTS_VALUE;
572 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_FILENAME=%s\n",
573 filename_recode(filename));
574 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_DEMUXER=%s\n", mpctx->demuxer->desc->name);
575 if (mpctx->sh_video) {
576 /* Assume FOURCC if all bytes >= 0x20 (' ') */
577 if (mpctx->sh_video->format >= 0x20202020)
578 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format);
579 else
580 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format);
581 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps*8);
582 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w);
583 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h);
584 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps);
585 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect);
586 video_start_pts = ds_get_next_pts(mpctx->d_video);
588 if (mpctx->sh_audio) {
589 /* Assume FOURCC if all bytes >= 0x20 (' ') */
590 if (mpctx->sh_audio->format >= 0x20202020)
591 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format);
592 else
593 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format);
594 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps*8);
595 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate);
596 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels);
597 start_pts = ds_get_next_pts(mpctx->d_audio);
599 if (video_start_pts != MP_NOPTS_VALUE) {
600 if (start_pts == MP_NOPTS_VALUE || !mpctx->sh_audio ||
601 (mpctx->sh_video && video_start_pts < start_pts))
602 start_pts = video_start_pts;
604 if (start_pts != MP_NOPTS_VALUE)
605 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_START_TIME=%.2f\n", start_pts);
606 else
607 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_START_TIME=unknown\n");
608 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_LENGTH=%.2f\n", get_time_length(mpctx));
609 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_SEEKABLE=%d\n",
610 mpctx->stream->seek && (!mpctx->demuxer || mpctx->demuxer->seekable));
611 if (mpctx->demuxer) {
612 if (mpctx->demuxer->num_chapters == 0)
613 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
614 mp_msg(MSGT_IDENTIFY,MSGL_INFO,"ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters);
618 /// step size of mixer changes
619 int volstep = 3;
621 #ifdef CONFIG_DVDNAV
622 static void mp_dvdnav_context_free(MPContext *ctx){
623 if (ctx->nav_smpi) free_mp_image(ctx->nav_smpi);
624 ctx->nav_smpi = NULL;
625 free(ctx->nav_buffer);
626 ctx->nav_buffer = NULL;
627 ctx->nav_start = NULL;
628 ctx->nav_in_size = 0;
630 #endif
632 void uninit_player(struct MPContext *mpctx, unsigned int mask){
633 mask &= mpctx->initialized_flags;
635 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask);
637 if(mask&INITIALIZED_ACODEC){
638 mpctx->initialized_flags&=~INITIALIZED_ACODEC;
639 current_module="uninit_acodec";
640 if(mpctx->sh_audio) uninit_audio(mpctx->sh_audio);
641 mpctx->sh_audio=NULL;
642 mpctx->mixer.afilter = NULL;
645 if(mask&INITIALIZED_VCODEC){
646 mpctx->initialized_flags&=~INITIALIZED_VCODEC;
647 current_module="uninit_vcodec";
648 if(mpctx->sh_video) uninit_video(mpctx->sh_video);
649 mpctx->sh_video=NULL;
650 #ifdef CONFIG_MENU
651 vf_menu=NULL;
652 #endif
655 if(mask&INITIALIZED_DEMUXER){
656 mpctx->initialized_flags&=~INITIALIZED_DEMUXER;
657 current_module="free_demuxer";
658 if (mpctx->num_sources) {
659 mpctx->demuxer = mpctx->sources[0].demuxer;
660 for (int i = 1; i < mpctx->num_sources; i++) {
661 free_stream(mpctx->sources[i].stream);
662 free_demuxer(mpctx->sources[i].demuxer);
665 talloc_free(mpctx->sources);
666 mpctx->sources = NULL;
667 mpctx->num_sources = 0;
668 talloc_free(mpctx->timeline);
669 mpctx->timeline = NULL;
670 mpctx->num_timeline_parts = 0;
671 talloc_free(mpctx->chapters);
672 mpctx->chapters = NULL;
673 mpctx->num_chapters = 0;
674 mpctx->video_offset = 0;
675 if(mpctx->demuxer){
676 mpctx->stream=mpctx->demuxer->stream;
677 free_demuxer(mpctx->demuxer);
679 mpctx->demuxer=NULL;
682 // kill the cache process:
683 if(mask&INITIALIZED_STREAM){
684 mpctx->initialized_flags&=~INITIALIZED_STREAM;
685 current_module="uninit_stream";
686 if(mpctx->stream) free_stream(mpctx->stream);
687 mpctx->stream=NULL;
690 if(mask&INITIALIZED_VO){
691 mpctx->initialized_flags&=~INITIALIZED_VO;
692 current_module="uninit_vo";
693 vo_destroy(mpctx->video_out);
694 mpctx->video_out=NULL;
695 #ifdef CONFIG_DVDNAV
696 mp_dvdnav_context_free(mpctx);
697 #endif
700 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code.
701 if(mask&INITIALIZED_GETCH2){
702 mpctx->initialized_flags&=~INITIALIZED_GETCH2;
703 current_module="uninit_getch2";
704 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n");
705 // restore terminal:
706 getch2_disable();
709 if(mask&INITIALIZED_VOBSUB){
710 mpctx->initialized_flags&=~INITIALIZED_VOBSUB;
711 current_module="uninit_vobsub";
712 if(vo_vobsub) vobsub_close(vo_vobsub);
713 vo_vobsub=NULL;
716 if (mask&INITIALIZED_SPUDEC){
717 mpctx->initialized_flags&=~INITIALIZED_SPUDEC;
718 current_module="uninit_spudec";
719 spudec_free(vo_spudec);
720 vo_spudec=NULL;
723 if(mask&INITIALIZED_AO){
724 mpctx->initialized_flags&=~INITIALIZED_AO;
725 current_module="uninit_ao";
726 if (mpctx->edl_muted) mixer_mute(&mpctx->mixer);
727 if (mpctx->audio_out)
728 mpctx->audio_out->uninit(mpctx->stop_play != AT_END_OF_FILE);
729 mpctx->audio_out=NULL;
732 current_module=NULL;
735 void exit_player_with_rc(struct MPContext *mpctx, enum exit_reason how, int rc)
737 if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
738 uninit_player(mpctx, INITIALIZED_ALL);
739 #if defined(__MINGW32__) || defined(__CYGWIN__)
740 timeEndPeriod(1);
741 #endif
742 #ifdef CONFIG_X11
743 vo_uninit(mpctx->x11_state); // Close the X11 connection (if any is open).
744 #endif
746 current_module="uninit_input";
747 mp_input_uninit(mpctx->input);
748 #ifdef CONFIG_MENU
749 if (use_menu)
750 menu_uninit();
751 #endif
753 #ifdef CONFIG_FREETYPE
754 current_module="uninit_font";
755 if (mpctx->osd && mpctx->osd->sub_font != vo_font)
756 free_font_desc(mpctx->osd->sub_font);
757 free_font_desc(vo_font);
758 vo_font = NULL;
759 done_freetype();
760 #endif
761 osd_free(mpctx->osd);
763 #ifdef CONFIG_ASS
764 ass_library_done(ass_library);
765 ass_library = NULL;
766 #endif
768 current_module="exit_player";
770 // free mplayer config
771 if(mpctx->mconfig)
772 m_config_free(mpctx->mconfig);
773 mpctx->mconfig = NULL;
775 if(mpctx->playtree_iter)
776 play_tree_iter_free(mpctx->playtree_iter);
777 mpctx->playtree_iter = NULL;
778 if(mpctx->playtree)
779 play_tree_free(mpctx->playtree, 1);
780 mpctx->playtree = NULL;
782 talloc_free(mpctx->key_fifo);
784 free(edl_records); // free mem allocated for EDL
785 edl_records = NULL;
786 switch(how) {
787 case EXIT_QUIT:
788 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nExiting... (%s)\n","Quit");
789 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n");
790 break;
791 case EXIT_EOF:
792 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nExiting... (%s)\n","End of file");
793 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n");
794 break;
795 case EXIT_ERROR:
796 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nExiting... (%s)\n","Fatal error");
797 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n");
798 break;
799 default:
800 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n");
802 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize);
804 exit(rc);
807 static void exit_player(struct MPContext *mpctx, enum exit_reason how)
809 exit_player_with_rc(mpctx, how, 1);
812 #ifndef __MINGW32__
813 static void child_sighandler(int x){
814 pid_t pid;
815 while((pid=waitpid(-1,NULL,WNOHANG)) > 0);
817 #endif
819 #ifdef CONFIG_CRASH_DEBUG
820 static char *prog_path;
821 static int crash_debug = 0;
822 #endif
824 static void exit_sighandler(int x){
825 static int sig_count=0;
826 #ifdef CONFIG_CRASH_DEBUG
827 if (!crash_debug || x != SIGTRAP)
828 #endif
829 ++sig_count;
830 if(sig_count==5)
832 /* We're crashing bad and can't uninit cleanly :(
833 * by popular request, we make one last (dirty)
834 * effort to restore the user's
835 * terminal. */
836 getch2_disable();
837 exit(1);
839 if(sig_count==6) exit(1);
840 if(sig_count>6){
841 // can't stop :(
842 #ifndef __MINGW32__
843 kill(getpid(),SIGKILL);
844 #endif
846 mp_msg(MSGT_CPLAYER, MSGL_FATAL, "\n");
847 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,
848 "\nMPlayer interrupted by signal %d in module: %s\n", x,
849 current_module ? current_module : "unknown");
850 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x);
851 if(sig_count<=1)
852 switch(x){
853 case SIGINT:
854 case SIGPIPE:
855 case SIGQUIT:
856 case SIGTERM:
857 case SIGKILL:
858 async_quit_request = 1;
859 return; // killed from keyboard (^C) or killed [-9]
860 case SIGILL:
861 #if CONFIG_RUNTIME_CPUDETECT
862 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGILL_RTCpuSel);
863 #else
864 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGILL);
865 #endif
866 case SIGFPE:
867 case SIGSEGV:
868 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGSEGV_SIGFPE);
869 default:
870 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,Exit_SIGCRASH);
871 #ifdef CONFIG_CRASH_DEBUG
872 if (crash_debug) {
873 int gdb_pid;
874 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n");
875 gdb_pid = fork();
876 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n");
877 if (gdb_pid == 0) { // We are the child
878 char spid[20];
879 snprintf(spid, sizeof(spid), "%i", getppid());
880 getch2_disable(); // allow terminal to work properly with gdb
881 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1)
882 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n");
883 } else if (gdb_pid < 0)
884 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n");
885 else {
886 waitpid(gdb_pid, NULL, 0);
888 if (x == SIGTRAP) return;
890 #endif
892 getch2_disable();
893 exit(1);
896 #include "cfg-mplayer.h"
898 static int cfg_include(m_option_t *conf, char *filename)
900 return m_config_parse_config_file(conf->priv, filename);
903 static void parse_cfgfiles(struct MPContext *mpctx, m_config_t* conf)
905 char *conffile;
906 int conffile_fd;
907 if (!disable_system_conf &&
908 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0)
909 exit_player(mpctx, EXIT_NONE);
910 if ((conffile = get_path("")) == NULL) {
911 mp_tmsg(MSGT_CPLAYER,MSGL_WARN,"Cannot find HOME directory.\n");
912 } else {
913 #ifdef __MINGW32__
914 mkdir(conffile);
915 #else
916 mkdir(conffile, 0777);
917 #endif
918 free(conffile);
919 if ((conffile = get_path("config")) == NULL) {
920 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"get_path(\"config\") problem\n");
921 } else {
922 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
923 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Creating config file: %s\n", conffile);
924 write(conffile_fd, default_config, strlen(default_config));
925 close(conffile_fd);
927 if (!disable_user_conf &&
928 m_config_parse_config_file(conf, conffile) < 0)
929 exit_player(mpctx, EXIT_NONE);
930 free(conffile);
935 #define PROFILE_CFG_PROTOCOL "protocol."
937 static void load_per_protocol_config (m_config_t* conf, const char *const file)
939 char *str;
940 char protocol[strlen (PROFILE_CFG_PROTOCOL) + strlen (file) + 1];
941 m_profile_t *p;
943 /* does filename actually uses a protocol ? */
944 str = strstr (file, "://");
945 if (!str)
946 return;
948 sprintf (protocol, "%s%s", PROFILE_CFG_PROTOCOL, file);
949 protocol[strlen (PROFILE_CFG_PROTOCOL)+strlen(file)-strlen(str)] = '\0';
950 p = m_config_get_profile (conf, protocol);
951 if (p)
953 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Loading protocol-related profile '%s'\n", protocol);
954 m_config_set_profile(conf,p);
958 #define PROFILE_CFG_EXTENSION "extension."
960 static void load_per_extension_config (m_config_t* conf, const char *const file)
962 char *str;
963 char extension[strlen (PROFILE_CFG_EXTENSION) + 8];
964 m_profile_t *p;
966 /* does filename actually have an extension ? */
967 str = strrchr (file, '.');
968 if (!str)
969 return;
971 sprintf (extension, PROFILE_CFG_EXTENSION);
972 strncat (extension, ++str, 7);
973 p = m_config_get_profile (conf, extension);
974 if (p)
976 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Loading extension-related profile '%s'\n", extension);
977 m_config_set_profile(conf,p);
981 #define PROFILE_CFG_VO "vo."
982 #define PROFILE_CFG_AO "ao."
984 static void load_per_output_config (m_config_t* conf, char *cfg, char *out)
986 char profile[strlen (cfg) + strlen (out) + 1];
987 m_profile_t *p;
989 sprintf (profile, "%s%s", cfg, out);
990 p = m_config_get_profile (conf, profile);
991 if (p)
993 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Loading extension-related profile '%s'\n", profile);
994 m_config_set_profile(conf,p);
999 * Tries to load a config file
1000 * @return 0 if file was not found, 1 otherwise
1002 static int try_load_config(m_config_t *conf, const char *file)
1004 struct stat st;
1005 if (stat(file, &st))
1006 return 0;
1007 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Loading config '%s'\n", file);
1008 m_config_parse_config_file (conf, file);
1009 return 1;
1012 static void load_per_file_config (m_config_t* conf, const char *const file)
1014 char *confpath;
1015 char cfg[PATH_MAX];
1016 char *name;
1018 if (strlen(file) > PATH_MAX - 14) {
1019 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Filename is too long, can not load file or directory specific config files\n");
1020 return;
1022 sprintf (cfg, "%s.conf", file);
1024 name = strrchr(cfg, '/');
1025 if (HAVE_DOS_PATHS) {
1026 char *tmp = strrchr(cfg, '\\');
1027 if (!name || tmp > name)
1028 name = tmp;
1029 tmp = strrchr(cfg, ':');
1030 if (!name || tmp > name)
1031 name = tmp;
1033 if (!name)
1034 name = cfg;
1035 else
1036 name++;
1038 if (use_filedir_conf) {
1039 char dircfg[PATH_MAX];
1040 strcpy(dircfg, cfg);
1041 strcpy(dircfg + (name - cfg), "mplayer.conf");
1042 try_load_config(conf, dircfg);
1044 if (try_load_config(conf, cfg))
1045 return;
1048 if ((confpath = get_path (name)) != NULL)
1050 try_load_config(conf, confpath);
1052 free (confpath);
1056 /* When libmpdemux performs a blocking operation (network connection or
1057 * cache filling) if the operation fails we use this function to check
1058 * if it was interrupted by the user.
1059 * The function returns a new value for eof. */
1060 static int libmpdemux_was_interrupted(struct MPContext *mpctx, int stop_play)
1062 mp_cmd_t* cmd;
1063 if((cmd = mp_input_get_cmd(mpctx->input, 0, 0)) != NULL) {
1064 switch(cmd->id) {
1065 case MP_CMD_QUIT:
1066 exit_player_with_rc(mpctx, EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
1067 case MP_CMD_PLAY_TREE_STEP: {
1068 stop_play = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
1069 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i;
1070 } break;
1071 case MP_CMD_PLAY_TREE_UP_STEP: {
1072 stop_play = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV;
1073 } break;
1074 case MP_CMD_PLAY_ALT_SRC_STEP: {
1075 stop_play = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC;
1076 } break;
1078 mp_cmd_free(cmd);
1080 return stop_play;
1083 static int playtree_add_playlist(struct MPContext *mpctx, play_tree_t* entry)
1085 play_tree_add_bpf(entry,mpctx->filename);
1088 if(!entry) {
1089 entry = mpctx->playtree_iter->tree;
1090 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1091 return PT_NEXT_ENTRY;
1093 if(mpctx->playtree_iter->tree == entry ) { // Loop with a single file
1094 if(play_tree_iter_up_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1095 return PT_NEXT_ENTRY;
1098 play_tree_remove(entry,1,1);
1099 return PT_NEXT_SRC;
1101 play_tree_insert_entry(mpctx->playtree_iter->tree,entry);
1102 play_tree_set_params_from(entry,mpctx->playtree_iter->tree);
1103 entry = mpctx->playtree_iter->tree;
1104 if(play_tree_iter_step(mpctx->playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) {
1105 return PT_NEXT_ENTRY;
1107 play_tree_remove(entry,1,1);
1109 return PT_NEXT_SRC;
1112 void add_subtitles(struct MPContext *mpctx, char *filename, float fps, int noerr)
1114 struct MPOpts *opts = &mpctx->opts;
1115 sub_data *subd = NULL;
1116 struct ass_track *asst = NULL;
1118 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) {
1119 return;
1122 #ifdef CONFIG_ASS
1123 if (opts->ass_enabled) {
1124 #ifdef CONFIG_ICONV
1125 asst = ass_read_stream(ass_library, filename, sub_cp);
1126 #else
1127 asst = ass_read_stream(ass_library, filename, 0);
1128 #endif
1129 if (!asst) {
1130 subd = sub_read_file(filename, fps);
1131 if (subd) {
1132 asst = ass_read_subdata(ass_library, subd, fps);
1133 if (asst) {
1134 sub_free(subd);
1135 subd = NULL;
1139 } else
1140 #endif
1141 subd = sub_read_file(filename, fps);
1144 if (!asst && !subd) {
1145 mp_tmsg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR,
1146 "Cannot load subtitles: %s\n", filename_recode(filename));
1147 return;
1150 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst;
1151 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd;
1152 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size);
1153 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n",
1154 filename_recode(filename));
1155 ++mpctx->set_of_sub_size;
1156 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "SUB: Added subtitle file (%d): %s\n", mpctx->set_of_sub_size,
1157 filename_recode(filename));
1160 void init_vo_spudec(struct MPContext *mpctx)
1162 spudec_free(vo_spudec);
1163 mpctx->initialized_flags &= ~INITIALIZED_SPUDEC;
1164 vo_spudec = NULL;
1166 // we currently can't work without video stream
1167 if (!mpctx->sh_video)
1168 return;
1170 if (spudec_ifo) {
1171 unsigned int palette[16], width, height;
1172 current_module="spudec_init_vobsub";
1173 if (vobsub_parse_ifo(NULL,spudec_ifo, palette, &width, &height, 1, -1, NULL) >= 0)
1174 vo_spudec=spudec_new_scaled(palette, width, height, NULL, 0);
1177 #ifdef CONFIG_DVDREAD
1178 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVD) {
1179 current_module="spudec_init_dvdread";
1180 vo_spudec=spudec_new_scaled(((dvd_priv_t *)(mpctx->stream->priv))->cur_pgc->palette,
1181 mpctx->sh_video->disp_w, mpctx->sh_video->disp_h,
1182 NULL, 0);
1184 #endif
1186 #ifdef CONFIG_DVDNAV
1187 if (vo_spudec==NULL && mpctx->stream->type==STREAMTYPE_DVDNAV) {
1188 unsigned int *palette = mp_dvdnav_get_spu_clut(mpctx->stream);
1189 current_module="spudec_init_dvdnav";
1190 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1192 #endif
1194 if (vo_spudec==NULL) {
1195 sh_sub_t *sh = mpctx->d_sub->sh;
1196 current_module="spudec_init_normal";
1197 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1198 spudec_set_font_factor(vo_spudec,font_factor);
1201 if (vo_spudec!=NULL) {
1202 mpctx->initialized_flags|=INITIALIZED_SPUDEC;
1203 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
1208 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to
1209 * make it all work is to use the builtin SDL-bootstrap code, which
1210 * will be done automatically by replacing our main() if we include SDL.h.
1212 #if defined(__APPLE__) && defined(CONFIG_SDL)
1213 #ifdef CONFIG_SDL_SDL_H
1214 #include <SDL/SDL.h>
1215 #else
1216 #include <SDL.h>
1217 #endif
1218 #endif
1221 * \brief append a formatted string
1222 * \param buf buffer to print into
1223 * \param pos position of terminating 0 in buf
1224 * \param len maximum number of characters in buf, not including terminating 0
1225 * \param format printf format string
1227 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...)
1229 va_list va;
1230 va_start(va, format);
1231 *pos += vsnprintf(&buf[*pos], len - *pos, format, va);
1232 va_end(va);
1233 if (*pos >= len ) {
1234 buf[len] = 0;
1235 *pos = len;
1240 * \brief append time in the hh:mm:ss.f format
1241 * \param buf buffer to print into
1242 * \param pos position of terminating 0 in buf
1243 * \param len maximum number of characters in buf, not including terminating 0
1244 * \param time time value to convert/append
1246 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
1247 int64_t tenths = 10 * time;
1248 int f1 = tenths % 10;
1249 int ss = (tenths / 10) % 60;
1250 int mm = (tenths / 600) % 60;
1251 int hh = tenths / 36000;
1252 if (time <= 0) {
1253 saddf(buf, pos, len, "unknown");
1254 return;
1256 if (hh > 0)
1257 saddf(buf, pos, len, "%2d:", hh);
1258 if (hh > 0 || mm > 0)
1259 saddf(buf, pos, len, "%02d:", mm);
1260 saddf(buf, pos, len, "%02d.%1d", ss, f1);
1263 static void print_status(struct MPContext *mpctx, double a_pos, bool at_frame)
1265 struct MPOpts *opts = &mpctx->opts;
1266 sh_video_t * const sh_video = mpctx->sh_video;
1268 if (mpctx->sh_audio && a_pos == MP_NOPTS_VALUE)
1269 a_pos = playing_audio_pts(mpctx);
1270 if (mpctx->sh_audio && sh_video && at_frame) {
1271 mpctx->last_av_difference = a_pos - sh_video->pts - audio_delay;
1272 if (mpctx->time_frame > 0)
1273 mpctx->last_av_difference += mpctx->time_frame * opts->playback_speed;
1274 if (mpctx->last_av_difference > 0.5 && drop_frame_cnt > 50
1275 && !mpctx->drop_message_shown) {
1276 mp_tmsg(MSGT_AVSYNC,MSGL_WARN,SystemTooSlow);
1277 mpctx->drop_message_shown = true;
1280 if (opts->quiet)
1281 return;
1284 int width;
1285 char *line;
1286 unsigned pos = 0;
1287 get_screen_size();
1288 if (screen_width > 0)
1289 width = screen_width;
1290 else
1291 width = 80;
1292 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__)
1293 /* Windows command line is broken (MinGW's rxvt works, but we
1294 * should not depend on that). */
1295 width--;
1296 #endif
1297 line = malloc(width + 1); // one additional char for the terminating null
1299 // Audio time
1300 if (mpctx->sh_audio) {
1301 saddf(line, &pos, width, "A:%6.1f ", a_pos);
1302 if (!sh_video) {
1303 float len = get_time_length(mpctx);
1304 saddf(line, &pos, width, "(");
1305 sadd_hhmmssf(line, &pos, width, a_pos);
1306 saddf(line, &pos, width, ") of %.1f (", len);
1307 sadd_hhmmssf(line, &pos, width, len);
1308 saddf(line, &pos, width, ") ");
1312 // Video time
1313 if (sh_video)
1314 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts);
1316 // A-V sync
1317 if (mpctx->sh_audio && sh_video)
1318 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ",
1319 mpctx->last_av_difference, mpctx->total_avsync_change);
1321 // Video stats
1322 if (sh_video)
1323 saddf(line, &pos, width, "%3d/%3d ",
1324 (int)sh_video->num_frames,
1325 (int)sh_video->num_frames_decoded);
1327 // CPU usage
1328 if (sh_video) {
1329 if (sh_video->timer > 0.5)
1330 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ",
1331 (int)(100.0*video_time_usage*opts->playback_speed/(double)sh_video->timer),
1332 (int)(100.0*vout_time_usage*opts->playback_speed/(double)sh_video->timer),
1333 (100.0*audio_time_usage*opts->playback_speed/(double)sh_video->timer));
1334 else
1335 saddf(line, &pos, width, "??%% ??%% ??,?%% ");
1336 } else if (mpctx->sh_audio) {
1337 if (mpctx->delay > 0.5)
1338 saddf(line, &pos, width, "%4.1f%% ",
1339 100.0*audio_time_usage/(double)mpctx->delay);
1340 else
1341 saddf(line, &pos, width, "??,?%% ");
1344 // VO stats
1345 if (sh_video)
1346 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality);
1348 #ifdef CONFIG_STREAM_CACHE
1349 // cache stats
1350 if (stream_cache_size > 0)
1351 saddf(line, &pos, width, "%d%% ", cache_fill_status);
1352 #endif
1354 // other
1355 if (opts->playback_speed != 1)
1356 saddf(line, &pos, width, "%4.2fx ", opts->playback_speed);
1358 // end
1359 if (erase_to_end_of_line) {
1360 line[pos] = 0;
1361 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line);
1362 } else {
1363 memset(&line[pos], ' ', width - pos);
1364 line[width] = 0;
1365 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line);
1367 free(line);
1371 * \brief build a chain of audio filters that converts the input format
1372 * to the ao's format, taking into account the current playback_speed.
1373 * \param sh_audio describes the requested input format of the chain.
1374 * \param ao_data describes the requested output format of the chain.
1376 int build_afilter_chain(struct MPContext *mpctx, sh_audio_t *sh_audio, ao_data_t *ao_data)
1378 struct MPOpts *opts = &mpctx->opts;
1379 int new_srate;
1380 int result;
1381 if (!sh_audio)
1383 mpctx->mixer.afilter = NULL;
1384 return 0;
1386 if(af_control_any_rev(sh_audio->afilter,
1387 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET,
1388 &opts->playback_speed)) {
1389 new_srate = sh_audio->samplerate;
1390 } else {
1391 new_srate = sh_audio->samplerate * opts->playback_speed;
1392 if (new_srate != ao_data->samplerate) {
1393 // limits are taken from libaf/af_resample.c
1394 if (new_srate < 8000)
1395 new_srate = 8000;
1396 if (new_srate > 192000)
1397 new_srate = 192000;
1398 opts->playback_speed = (float)new_srate / (float)sh_audio->samplerate;
1401 result = init_audio_filters(sh_audio, new_srate,
1402 &ao_data->samplerate, &ao_data->channels, &ao_data->format);
1403 mpctx->mixer.afilter = sh_audio->afilter;
1404 return result;
1408 typedef struct mp_osd_msg mp_osd_msg_t;
1409 struct mp_osd_msg {
1410 /// Previous message on the stack.
1411 mp_osd_msg_t* prev;
1412 /// Message text.
1413 char msg[128];
1414 int id,level,started;
1415 /// Display duration in ms.
1416 unsigned time;
1419 /// OSD message stack.
1420 static mp_osd_msg_t* osd_msg_stack = NULL;
1423 * \brief Add a message on the OSD message stack
1425 * If a message with the same id is already present in the stack
1426 * it is pulled on top of the stack, otherwise a new message is created.
1429 static void set_osd_msg_va(int id, int level, int time, const char *fmt,
1430 va_list ap)
1432 mp_osd_msg_t *msg,*last=NULL;
1433 int r;
1435 // look if the id is already in the stack
1436 for(msg = osd_msg_stack ; msg && msg->id != id ;
1437 last = msg, msg = msg->prev);
1438 // not found: alloc it
1439 if(!msg) {
1440 msg = calloc(1,sizeof(mp_osd_msg_t));
1441 msg->prev = osd_msg_stack;
1442 osd_msg_stack = msg;
1443 } else if(last) { // found, but it's not on top of the stack
1444 last->prev = msg->prev;
1445 msg->prev = osd_msg_stack;
1446 osd_msg_stack = msg;
1448 // write the msg
1449 r = vsnprintf(msg->msg, 128, fmt, ap);
1450 if(r >= 128) msg->msg[127] = 0;
1451 // set id and time
1452 msg->id = id;
1453 msg->level = level;
1454 msg->time = time;
1458 void set_osd_msg(int id, int level, int time, const char *fmt, ...)
1460 va_list ap;
1461 va_start(ap, fmt);
1462 set_osd_msg_va(id, level, time, fmt, ap);
1463 va_end(ap);
1466 void set_osd_tmsg(int id, int level, int time, const char *fmt, ...)
1468 va_list ap;
1469 va_start(ap, fmt);
1470 set_osd_msg_va(id, level, time, mp_gtext(fmt), ap);
1471 va_end(ap);
1476 * \brief Remove a message from the OSD stack
1478 * This function can be used to get rid of a message right away.
1482 void rm_osd_msg(int id) {
1483 mp_osd_msg_t *msg,*last=NULL;
1485 // Search for the msg
1486 for(msg = osd_msg_stack ; msg && msg->id != id ;
1487 last = msg, msg = msg->prev);
1488 if(!msg) return;
1490 // Detach it from the stack and free it
1491 if(last)
1492 last->prev = msg->prev;
1493 else
1494 osd_msg_stack = msg->prev;
1495 free(msg);
1499 * \brief Remove all messages from the OSD stack
1503 static void clear_osd_msgs(void) {
1504 mp_osd_msg_t* msg = osd_msg_stack, *prev = NULL;
1505 while(msg) {
1506 prev = msg->prev;
1507 free(msg);
1508 msg = prev;
1510 osd_msg_stack = NULL;
1514 * \brief Get the current message from the OSD stack.
1516 * This function decrements the message timer and destroys the old ones.
1517 * The message that should be displayed is returned (if any).
1521 static mp_osd_msg_t* get_osd_msg(struct MPContext *mpctx)
1523 struct MPOpts *opts = &mpctx->opts;
1524 mp_osd_msg_t *msg,*prev,*last = NULL;
1525 static unsigned last_update = 0;
1526 unsigned now = GetTimerMS();
1527 unsigned diff;
1528 char hidden_dec_done = 0;
1530 if (mpctx->osd_visible) {
1531 // 36000000 means max timed visibility is 1 hour into the future, if
1532 // the difference is greater assume it's wrapped around from below 0
1533 if (mpctx->osd_visible - now > 36000000) {
1534 mpctx->osd_visible = 0;
1535 vo_osd_progbar_type = -1; // disable
1536 vo_osd_changed(OSDTYPE_PROGBAR);
1537 mpctx->osd_function = mpctx->paused ? OSD_PAUSE : OSD_PLAY;
1540 if (mpctx->osd_show_percentage_until - now > 36000000)
1541 mpctx->osd_show_percentage_until = 0;
1543 if(!last_update) last_update = now;
1544 diff = now >= last_update ? now - last_update : 0;
1546 last_update = now;
1548 // Look for the first message in the stack with high enough level.
1549 for(msg = osd_msg_stack ; msg ; last = msg, msg = prev) {
1550 prev = msg->prev;
1551 if (msg->level > opts->osd_level && hidden_dec_done)
1552 continue;
1553 // The message has a high enough level or it is the first hidden one
1554 // in both cases we decrement the timer or kill it.
1555 if(!msg->started || msg->time > diff) {
1556 if(msg->started) msg->time -= diff;
1557 else msg->started = 1;
1558 // display it
1559 if (msg->level <= opts->osd_level)
1560 return msg;
1561 hidden_dec_done = 1;
1562 continue;
1564 // kill the message
1565 free(msg);
1566 if(last) {
1567 last->prev = prev;
1568 msg = last;
1569 } else {
1570 osd_msg_stack = prev;
1571 msg = NULL;
1574 // Nothing found
1575 return NULL;
1579 * \brief Display the OSD bar.
1581 * Display the OSD bar or fall back on a simple message.
1585 void set_osd_bar(struct MPContext *mpctx, int type,const char* name,double min,double max,double val) {
1586 struct MPOpts *opts = &mpctx->opts;
1587 if (opts->osd_level < 1)
1588 return;
1590 if(mpctx->sh_video) {
1591 mpctx->osd_visible = (GetTimerMS() + 1000) | 1;
1592 vo_osd_progbar_type = type;
1593 vo_osd_progbar_value = 256*(val-min)/(max-min);
1594 vo_osd_changed(OSDTYPE_PROGBAR);
1595 return;
1598 set_osd_msg(OSD_MSG_BAR, 1, opts->osd_duration, "%s: %d %%",
1599 name, ROUND(100*(val-min)/(max-min)));
1603 * \brief Display text subtitles on the OSD
1605 void set_osd_subtitle(struct MPContext *mpctx, subtitle *subs)
1607 int i;
1608 vo_sub = subs;
1609 vo_osd_changed(OSDTYPE_SUBTITLE);
1610 if (!mpctx->sh_video) {
1611 // reverse order, since newest set_osd_msg is displayed first
1612 for (i = SUB_MAX_TEXT - 1; i >= 0; i--) {
1613 if (!subs || i >= subs->lines || !subs->text[i])
1614 rm_osd_msg(OSD_MSG_SUB_BASE + i);
1615 else {
1616 // HACK: currently display time for each sub line except the last is set to 2 seconds.
1617 int display_time = i == subs->lines - 1 ? 180000 : 2000;
1618 set_osd_msg(OSD_MSG_SUB_BASE + i, 1, display_time, "%s", subs->text[i]);
1625 * \brief Update the OSD message line.
1627 * This function displays the current message on the vo OSD or on the term.
1628 * If the stack is empty and the OSD level is high enough the timer
1629 * is displayed (only on the vo OSD).
1633 static void update_osd_msg(struct MPContext *mpctx)
1635 struct MPOpts *opts = &mpctx->opts;
1636 mp_osd_msg_t *msg;
1637 struct osd_state *osd = mpctx->osd;
1638 char osd_text_timer[128];
1640 if (mpctx->add_osd_seek_info) {
1641 double percentage = get_percent_pos(mpctx);
1642 set_osd_bar(mpctx, 0, "Position", 0, 100, percentage);
1643 if (mpctx->sh_video)
1644 mpctx->osd_show_percentage_until = (GetTimerMS() + 1000) | 1;
1645 mpctx->add_osd_seek_info = false;
1648 // Look if we have a msg
1649 if((msg = get_osd_msg(mpctx))) {
1650 if (strcmp(osd->osd_text, msg->msg)) {
1651 strncpy(osd->osd_text, msg->msg, 127);
1652 if(mpctx->sh_video) vo_osd_changed(OSDTYPE_OSD); else
1653 if(opts->term_osd)
1654 mp_msg(MSGT_CPLAYER,MSGL_STATUS, "%s%s\n", opts->term_osd_esc,
1655 msg->msg);
1657 return;
1660 if(mpctx->sh_video) {
1661 // fallback on the timer
1662 if (opts->osd_level >= 2) {
1663 int len = get_time_length(mpctx);
1664 int percentage = -1;
1665 char percentage_text[10];
1666 int pts = get_current_time(mpctx);
1668 if (mpctx->osd_show_percentage_until)
1669 percentage = get_percent_pos(mpctx);
1671 if (percentage >= 0)
1672 snprintf(percentage_text, 9, " (%d%%)", percentage);
1673 else
1674 percentage_text[0] = 0;
1676 if (opts->osd_level == 3)
1677 snprintf(osd_text_timer, 63,
1678 "%c %02d:%02d:%02d / %02d:%02d:%02d%s",
1679 mpctx->osd_function,pts/3600,(pts/60)%60,pts%60,
1680 len/3600,(len/60)%60,len%60,percentage_text);
1681 else
1682 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s",
1683 mpctx->osd_function,pts/3600,(pts/60)%60,
1684 pts%60,percentage_text);
1685 } else
1686 osd_text_timer[0]=0;
1688 if (strcmp(osd->osd_text, osd_text_timer)) {
1689 strncpy(osd->osd_text, osd_text_timer, 63);
1690 vo_osd_changed(OSDTYPE_OSD);
1692 return;
1695 // Clear the term osd line
1696 if (opts->term_osd && osd->osd_text[0]) {
1697 osd->osd_text[0] = 0;
1698 printf("%s\n", opts->term_osd_esc);
1702 ///@}
1703 // OSDMsgStack
1706 void reinit_audio_chain(struct MPContext *mpctx)
1708 struct MPOpts *opts = &mpctx->opts;
1709 if (!mpctx->sh_audio)
1710 return;
1711 if (!(mpctx->initialized_flags & INITIALIZED_ACODEC)) {
1712 current_module="init_audio_codec";
1713 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1714 if(!init_best_audio_codec(mpctx->sh_audio,audio_codec_list,audio_fm_list)){
1715 goto init_error;
1717 mpctx->initialized_flags|=INITIALIZED_ACODEC;
1718 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
1722 current_module="af_preinit";
1723 if (!(mpctx->initialized_flags & INITIALIZED_AO)) {
1724 ao_data.samplerate=force_srate;
1725 ao_data.channels=0;
1726 ao_data.format = opts->audio_output_format;
1728 // first init to detect best values
1729 if(!init_audio_filters(mpctx->sh_audio, // preliminary init
1730 // input:
1731 mpctx->sh_audio->samplerate,
1732 // output:
1733 &ao_data.samplerate, &ao_data.channels, &ao_data.format)){
1734 mp_tmsg(MSGT_CPLAYER,MSGL_ERR, "Error at audio filter chain "
1735 "pre-init!\n");
1736 exit_player(mpctx, EXIT_ERROR);
1738 if (!(mpctx->initialized_flags & INITIALIZED_AO)) {
1739 current_module="ao2_init";
1740 ao_data.buffersize = opts->ao_buffersize;
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);
1762 // init audio filters:
1763 current_module="af_init";
1764 if(!build_afilter_chain(mpctx, mpctx->sh_audio, &ao_data)) {
1765 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Couldn't find matching filter/ao format!\n");
1766 goto init_error;
1768 mpctx->mixer.audio_out = mpctx->audio_out;
1769 mpctx->mixer.volstep = volstep;
1770 mpctx->syncing_audio = true;
1771 return;
1773 init_error:
1774 uninit_player(mpctx, INITIALIZED_ACODEC|INITIALIZED_AO); // close codec and possibly AO
1775 mpctx->sh_audio=mpctx->d_audio->sh=NULL; // -> nosound
1776 mpctx->d_audio->id = -2;
1780 ///@}
1781 // Command2Property
1784 // Return pts value corresponding to the end point of audio written to the
1785 // ao so far.
1786 static double written_audio_pts(struct MPContext *mpctx)
1788 sh_audio_t *sh_audio = mpctx->sh_audio;
1789 demux_stream_t *d_audio = mpctx->d_audio;
1790 double buffered_output;
1791 // first calculate the end pts of audio that has been output by decoder
1792 double a_pts = sh_audio->pts;
1793 if (a_pts != MP_NOPTS_VALUE)
1794 // Good, decoder supports new way of calculating audio pts.
1795 // sh_audio->pts is the timestamp of the latest input packet with
1796 // known pts that the decoder has decoded. sh_audio->pts_bytes is
1797 // the amount of bytes the decoder has written after that timestamp.
1798 a_pts += sh_audio->pts_bytes / (double) sh_audio->o_bps;
1799 else {
1800 // Decoder doesn't support new way of calculating pts (or we're
1801 // being called before it has decoded anything with known timestamp).
1802 // Use the old method of audio pts calculation: take the timestamp
1803 // of last packet with known pts the decoder has read data from,
1804 // and add amount of bytes read after the beginning of that packet
1805 // divided by input bps. This will be inaccurate if the input/output
1806 // ratio is not constant for every audio packet or if it is constant
1807 // but not accurately known in sh_audio->i_bps.
1809 a_pts = d_audio->pts;
1810 // ds_tell_pts returns bytes read after last timestamp from
1811 // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes
1812 // it has read but not decoded
1813 if (sh_audio->i_bps)
1814 a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) /
1815 (double)sh_audio->i_bps;
1817 // Now a_pts hopefully holds the pts for end of audio from decoder.
1818 // Substract data in buffers between decoder and audio out.
1820 // Decoded but not filtered
1821 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps;
1823 // Data buffered in audio filters, measured in bytes of "missing" output
1824 buffered_output = af_calc_delay(sh_audio->afilter);
1826 // Data that was ready for ao but was buffered because ao didn't fully
1827 // accept everything to internal buffers yet
1828 buffered_output += sh_audio->a_out_buffer_len;
1830 // Filters divide audio length by playback_speed, so multiply by it
1831 // to get the length in original units without speedup or slowdown
1832 a_pts -= buffered_output * mpctx->opts.playback_speed / ao_data.bps;
1834 return a_pts + mpctx->video_offset;
1837 // Return pts value corresponding to currently playing audio.
1838 double playing_audio_pts(struct MPContext *mpctx)
1840 return written_audio_pts(mpctx) - mpctx->opts.playback_speed *
1841 mpctx->audio_out->get_delay();
1844 static int check_framedrop(struct MPContext *mpctx, double frame_time) {
1845 struct MPOpts *opts = &mpctx->opts;
1846 // check for frame-drop:
1847 current_module = "check_framedrop";
1848 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
1849 static int dropped_frames;
1850 float delay = opts->playback_speed*mpctx->audio_out->get_delay();
1851 float d = delay-mpctx->delay;
1852 ++total_frame_cnt;
1853 // we should avoid dropping too many frames in sequence unless we
1854 // are too late. and we allow 100ms A-V delay here:
1855 if (d < -dropped_frames*frame_time-0.100 && !mpctx->paused
1856 && !mpctx->restart_playback) {
1857 ++drop_frame_cnt;
1858 ++dropped_frames;
1859 return frame_dropping;
1860 } else
1861 dropped_frames = 0;
1863 return 0;
1867 #ifdef HAVE_RTC
1868 int rtc_fd = -1;
1869 #endif
1871 static float timing_sleep(struct MPContext *mpctx, float time_frame)
1873 #ifdef HAVE_RTC
1874 if (rtc_fd >= 0){
1875 // -------- RTC -----------
1876 current_module="sleep_rtc";
1877 while (time_frame > 0.000) {
1878 unsigned long rtc_ts;
1879 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0)
1880 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC read error: %s\n", strerror(errno));
1881 time_frame -= get_relative_time(mpctx);
1883 } else
1884 #endif
1886 // assume kernel HZ=100 for softsleep, works with larger HZ but with
1887 // unnecessarily high CPU usage
1888 struct MPOpts *opts = &mpctx->opts;
1889 float margin = opts->softsleep ? 0.011 : 0;
1890 current_module = "sleep_timer";
1891 while (time_frame > margin) {
1892 usec_sleep(1000000 * (time_frame - margin));
1893 time_frame -= get_relative_time(mpctx);
1895 if (opts->softsleep){
1896 current_module = "sleep_soft";
1897 if (time_frame < 0)
1898 mp_tmsg(MSGT_AVSYNC, MSGL_WARN, "Warning! Softsleep underflow!\n");
1899 while (time_frame > 0)
1900 time_frame -= get_relative_time(mpctx); // burn the CPU
1903 return time_frame;
1906 static int select_subtitle(MPContext *mpctx)
1908 struct MPOpts *opts = &mpctx->opts;
1909 // find the best sub to use
1910 int id;
1911 int found = 0;
1912 mpctx->global_sub_pos = -1; // no subs by default
1913 if (vobsub_id >= 0) {
1914 // if user asks for a vobsub id, use that first.
1915 id = vobsub_id;
1916 found = mp_property_do("sub_vob", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK;
1919 if (!found && opts->sub_id >= 0) {
1920 // if user asks for a dvd sub id, use that next.
1921 id = opts->sub_id;
1922 found = mp_property_do("sub_demux", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK;
1925 if (!found) {
1926 // if there are text subs to use, use those. (autosubs come last here)
1927 id = 0;
1928 found = mp_property_do("sub_file", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK;
1931 if (!found && opts->sub_id == -1) {
1932 // finally select subs by language and container hints
1933 if (opts->sub_id == -1)
1934 opts->sub_id =
1935 demuxer_sub_track_by_lang_and_default(mpctx->d_sub->demuxer,
1936 opts->sub_lang);
1937 if (opts->sub_id >= 0) {
1938 id = opts->sub_id;
1939 found = mp_property_do("sub_demux", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK;
1942 return found;
1945 #ifdef CONFIG_DVDNAV
1946 #ifndef FF_B_TYPE
1947 #define FF_B_TYPE 3
1948 #endif
1949 /// store decoded video image
1950 static mp_image_t * mp_dvdnav_copy_mpi(mp_image_t *to_mpi,
1951 mp_image_t *from_mpi) {
1952 mp_image_t *mpi;
1954 /// Do not store B-frames
1955 if (from_mpi->pict_type == FF_B_TYPE)
1956 return to_mpi;
1958 if (to_mpi &&
1959 to_mpi->w == from_mpi->w &&
1960 to_mpi->h == from_mpi->h &&
1961 to_mpi->imgfmt == from_mpi->imgfmt)
1962 mpi = to_mpi;
1963 else {
1964 if (to_mpi)
1965 free_mp_image(to_mpi);
1966 if (from_mpi->w == 0 || from_mpi->h == 0)
1967 return NULL;
1968 mpi = alloc_mpi(from_mpi->w,from_mpi->h,from_mpi->imgfmt);
1971 copy_mpi(mpi,from_mpi);
1972 return mpi;
1975 static void mp_dvdnav_reset_stream (MPContext *ctx) {
1976 struct MPOpts *opts = &ctx->opts;
1977 if (ctx->sh_video) {
1978 /// clear video pts
1979 ctx->d_video->pts = 0.0f;
1980 ctx->sh_video->pts = 0.0f;
1981 ctx->sh_video->i_pts = 0.0f;
1982 ctx->sh_video->last_pts = 0.0f;
1983 ctx->sh_video->num_buffered_pts = 0;
1984 ctx->sh_video->num_frames = 0;
1985 ctx->sh_video->num_frames_decoded = 0;
1986 ctx->sh_video->timer = 0.0f;
1987 ctx->sh_video->stream_delay = 0.0f;
1988 ctx->sh_video->timer = 0;
1989 ctx->demuxer->stream_pts = MP_NOPTS_VALUE;
1992 if (ctx->sh_audio) {
1993 /// free audio packets and reset
1994 ds_free_packs(ctx->d_audio);
1995 audio_delay -= ctx->sh_audio->stream_delay;
1996 ctx->delay =- audio_delay;
1997 ctx->audio_out->reset();
1998 resync_audio_stream(ctx->sh_audio);
2001 audio_delay = 0.0f;
2002 ctx->sub_counts[SUB_SOURCE_DEMUX] = mp_dvdnav_number_of_subs(ctx->stream);
2003 if (opts->sub_lang && opts->sub_id == dvdsub_lang_id) {
2004 dvdsub_lang_id = mp_dvdnav_sid_from_lang(ctx->stream, opts->sub_lang);
2005 if (dvdsub_lang_id != opts->sub_id) {
2006 opts->sub_id = dvdsub_lang_id;
2007 select_subtitle(ctx);
2011 /// clear all EOF related flags
2012 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0;
2015 /// Restore last decoded DVDNAV (still frame)
2016 static mp_image_t *mp_dvdnav_restore_smpi(struct MPContext *mpctx,
2017 int *in_size,
2018 unsigned char **start,
2019 mp_image_t *decoded_frame)
2021 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2022 return decoded_frame;
2024 /// a change occured in dvdnav stream
2025 if (mp_dvdnav_cell_has_changed(mpctx->stream,0)) {
2026 mp_dvdnav_read_wait(mpctx->stream, 1, 1);
2027 mp_dvdnav_context_free(mpctx);
2028 mp_dvdnav_reset_stream(mpctx);
2029 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
2030 mp_dvdnav_cell_has_changed(mpctx->stream,1);
2033 if (*in_size < 0) {
2034 float len;
2036 /// Display still frame, if any
2037 if (mpctx->nav_smpi && !mpctx->nav_buffer)
2038 decoded_frame = mpctx->nav_smpi;
2040 /// increment video frame : continue playing after still frame
2041 len = get_time_length(mpctx);
2042 if (mpctx->sh_video->pts >= len &&
2043 mpctx->sh_video->pts > 0.0 && len > 0.0) {
2044 mp_dvdnav_skip_still(mpctx->stream);
2045 mp_dvdnav_skip_wait(mpctx->stream);
2047 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps;
2049 if (mpctx->nav_buffer) {
2050 *start = mpctx->nav_start;
2051 *in_size = mpctx->nav_in_size;
2052 if (mpctx->nav_start)
2053 memcpy(*start,mpctx->nav_buffer,mpctx->nav_in_size);
2057 return decoded_frame;
2060 /// Save last decoded DVDNAV (still frame)
2061 static void mp_dvdnav_save_smpi(struct MPContext *mpctx, int in_size,
2062 unsigned char *start,
2063 mp_image_t *decoded_frame)
2065 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2066 return;
2068 free(mpctx->nav_buffer);
2070 mpctx->nav_buffer = malloc(in_size);
2071 mpctx->nav_start = start;
2072 mpctx->nav_in_size = mpctx->nav_buffer ? in_size : -1;
2073 if (mpctx->nav_buffer)
2074 memcpy(mpctx->nav_buffer,start,in_size);
2076 if (decoded_frame && mpctx->nav_smpi != decoded_frame)
2077 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi,decoded_frame);
2079 #endif /* CONFIG_DVDNAV */
2081 /* Modify video timing to match the audio timeline. There are two main
2082 * reasons this is needed. First, video and audio can start from different
2083 * positions at beginning of file or after a seek (MPlayer starts both
2084 * immediately even if they have different pts). Second, the file can have
2085 * audio timestamps that are inconsistent with the duration of the audio
2086 * packets, for example two consecutive timestamp values differing by
2087 * one second but only a packet with enough samples for half a second
2088 * of playback between them.
2090 static void adjust_sync(struct MPContext *mpctx, double frame_time)
2092 current_module = "av_sync";
2094 if (!mpctx->sh_audio || mpctx->syncing_audio)
2095 return;
2097 double a_pts = written_audio_pts(mpctx) - mpctx->delay;
2098 double v_pts = mpctx->sh_video->pts;
2099 double av_delay = a_pts - v_pts;
2100 // Try to sync vo_flip() so it will *finish* at given time
2101 av_delay += mpctx->last_vo_flip_duration;
2102 av_delay -= audio_delay; // This much pts difference is desired
2104 double change = av_delay * 0.1;
2105 double max_change = default_max_pts_correction >= 0 ?
2106 default_max_pts_correction : frame_time * 0.1;
2107 if (change < -max_change)
2108 change = -max_change;
2109 else if (change > max_change)
2110 change = max_change;
2111 mpctx->delay += change;
2112 mpctx->total_avsync_change += change;
2115 #define ASYNC_PLAY_DONE -3
2116 static int audio_start_sync(struct MPContext *mpctx, int playsize)
2118 struct MPOpts *opts = &mpctx->opts;
2119 sh_audio_t * const sh_audio = mpctx->sh_audio;
2120 int res;
2122 // Timing info may not be set without
2123 res = decode_audio(sh_audio, 1);
2124 if (res < 0)
2125 return res;
2127 int bytes;
2128 while (1) {
2129 double written_pts = written_audio_pts(mpctx);
2130 double ptsdiff = written_pts - mpctx->sh_video->pts - mpctx->delay
2131 - audio_delay;
2132 bytes = ptsdiff * ao_data.bps / mpctx->opts.playback_speed;
2133 bytes -= bytes % (ao_data.channels * af_fmt2bits(ao_data.format) / 8);
2135 if (fabs(ptsdiff) > 300 // pts reset or just broken?
2136 || written_pts <= 0) // ogg demuxers give packets without timing
2137 bytes = 0;
2139 if (bytes > 0)
2140 break;
2142 mpctx->syncing_audio = false;
2143 int a = FFMIN(-bytes, FFMAX(playsize, 20000));
2144 int res = decode_audio(sh_audio, a);
2145 bytes += sh_audio->a_out_buffer_len;
2146 if (bytes >= 0) {
2147 memmove(sh_audio->a_out_buffer,
2148 sh_audio->a_out_buffer +
2149 sh_audio->a_out_buffer_len - bytes,
2150 bytes);
2151 sh_audio->a_out_buffer_len = bytes;
2152 if (res < 0)
2153 return res;
2154 return decode_audio(sh_audio, playsize);
2156 sh_audio->a_out_buffer_len = 0;
2157 if (res < 0)
2158 return res;
2160 int fillbyte = 0;
2161 if ((ao_data.format & AF_FORMAT_SIGN_MASK) == AF_FORMAT_US)
2162 fillbyte = 0x80;
2163 if (bytes >= playsize) {
2164 /* This case could fall back to the one below with
2165 * bytes = playsize, but then silence would keep accumulating
2166 * in a_out_buffer if the AO accepts less data than it asks for
2167 * in playsize. */
2168 char *p = malloc(playsize);
2169 memset(p, fillbyte, playsize);
2170 playsize = mpctx->audio_out->play(p, playsize, 0);
2171 free(p);
2172 mpctx->delay += opts->playback_speed*playsize/(double)ao_data.bps;
2173 return ASYNC_PLAY_DONE;
2175 mpctx->syncing_audio = false;
2176 decode_audio_prepend_bytes(sh_audio, bytes, fillbyte);
2177 return decode_audio(sh_audio, playsize);
2180 static int fill_audio_out_buffers(struct MPContext *mpctx)
2182 struct MPOpts *opts = &mpctx->opts;
2183 unsigned int t;
2184 double tt;
2185 int playsize;
2186 int playflags=0;
2187 int audio_eof=0;
2188 bool format_change = false;
2189 sh_audio_t * const sh_audio = mpctx->sh_audio;
2191 current_module="play_audio";
2193 while (1) {
2194 int sleep_time;
2195 // all the current uses of ao_data.pts seem to be in aos that handle
2196 // sync completely wrong; there should be no need to use ao_data.pts
2197 // in get_space()
2198 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2199 playsize = mpctx->audio_out->get_space();
2200 if (mpctx->sh_video || playsize >= ao_data.outburst)
2201 break;
2203 // handle audio-only case:
2204 // this is where mplayer sleeps during audio-only playback
2205 // to avoid 100% CPU use
2206 sleep_time = (ao_data.outburst - playsize) * 1000 / ao_data.bps;
2207 if (sleep_time < 10) sleep_time = 10; // limit to 100 wakeups per second
2208 usec_sleep(sleep_time * 1000);
2211 // Fill buffer if needed:
2212 current_module="decode_audio";
2213 t = GetTimer();
2215 if (!opts->initial_audio_sync || (ao_data.format & AF_FORMAT_SPECIAL_MASK))
2216 mpctx->syncing_audio = false;
2218 int res;
2219 if (mpctx->syncing_audio && mpctx->sh_video)
2220 res = audio_start_sync(mpctx, playsize);
2221 else
2222 res = decode_audio(sh_audio, playsize);
2223 if (res < 0) { // EOF, error or format change
2224 if (res == -2)
2225 format_change = true;
2226 else if (res == ASYNC_PLAY_DONE)
2227 return 1;
2228 else if (mpctx->d_audio->eof) {
2229 audio_eof = 1;
2230 int unitsize = ao_data.channels * af_fmt2bits(ao_data.format) / 8;
2231 if (sh_audio->a_out_buffer_len < unitsize)
2232 return 0;
2235 t = GetTimer() - t;
2236 tt = t*0.000001f; audio_time_usage+=tt;
2237 if (playsize > sh_audio->a_out_buffer_len) {
2238 playsize = sh_audio->a_out_buffer_len;
2239 if (audio_eof)
2240 playflags |= AOPLAY_FINAL_CHUNK;
2242 if (!playsize)
2243 return 1;
2245 // play audio:
2246 current_module="play_audio";
2248 // Is this pts value actually useful for the aos that access it?
2249 // They're obviously badly broken in the way they handle av sync;
2250 // would not having access to this make them more broken?
2251 ao_data.pts = ((mpctx->sh_video?mpctx->sh_video->timer:0)+mpctx->delay)*90000.0;
2252 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags);
2254 if (playsize > 0) {
2255 sh_audio->a_out_buffer_len -= playsize;
2256 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize],
2257 sh_audio->a_out_buffer_len);
2258 mpctx->delay += opts->playback_speed*playsize/(double)ao_data.bps;
2260 else if (audio_eof && mpctx->audio_out->get_delay() < .04) {
2261 // Sanity check to avoid hanging in case current ao doesn't output
2262 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK
2263 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n");
2264 sh_audio->a_out_buffer_len = 0;
2267 /* The format change isn't handled too gracefully. A more precise
2268 * implementation would require draining buffered old-format audio
2269 * while displaying video, then doing the output format switch.
2271 if (format_change) {
2272 uninit_player(mpctx, INITIALIZED_AO);
2273 reinit_audio_chain(mpctx);
2276 return 1;
2279 static int sleep_until_update(struct MPContext *mpctx, float *time_frame,
2280 float *aq_sleep_time)
2282 struct MPOpts *opts = &mpctx->opts;
2283 int frame_time_remaining = 0;
2284 current_module="calc_sleep_time";
2286 *time_frame -= get_relative_time(mpctx); // reset timer
2288 if (mpctx->sh_audio && !mpctx->d_audio->eof) {
2289 float delay = mpctx->audio_out->get_delay();
2290 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay);
2292 if (opts->autosync) {
2294 * Adjust this raw delay value by calculating the expected
2295 * delay for this frame and generating a new value which is
2296 * weighted between the two. The higher autosync is, the
2297 * closer to the delay value gets to that which "-nosound"
2298 * would have used, and the longer it will take for A/V
2299 * sync to settle at the right value (but it eventually will.)
2300 * This settling time is very short for values below 100.
2302 float predicted = mpctx->delay / opts->playback_speed + *time_frame;
2303 float difference = delay - predicted;
2304 delay = predicted + difference / (float)opts->autosync;
2307 *time_frame = delay - mpctx->delay / opts->playback_speed;
2308 *time_frame -= mpctx->video_out->flip_queue_offset;
2310 // delay = amount of audio buffered in soundcard/driver
2311 if (delay > 0.25) delay=0.25; else
2312 if (delay < 0.10) delay=0.10;
2314 if (*time_frame > delay*0.6) {
2315 // sleep time too big - may cause audio drops (buffer underrun)
2316 frame_time_remaining = 1;
2317 *time_frame = delay*0.5;
2319 } else {
2320 // If we're lagging more than 200 ms behind the right playback rate,
2321 // don't try to "catch up".
2322 // If benchmark is set always output frames as fast as possible
2323 // without sleeping.
2324 if (*time_frame < -0.2 || opts->benchmark)
2325 *time_frame = 0;
2326 *time_frame -= mpctx->video_out->flip_queue_offset;
2329 *aq_sleep_time += *time_frame;
2332 //============================== SLEEP: ===================================
2334 // flag 256 means: libvo driver does its timing (dvb card)
2335 if (*time_frame > 0.001 && !(mpctx->sh_video->output_flags&256))
2336 *time_frame = timing_sleep(mpctx, *time_frame);
2337 *time_frame += mpctx->video_out->flip_queue_offset;
2338 return frame_time_remaining;
2341 int reinit_video_chain(struct MPContext *mpctx)
2343 struct MPOpts *opts = &mpctx->opts;
2344 sh_video_t * const sh_video = mpctx->sh_video;
2345 double ar=-1.0;
2346 //================== Init VIDEO (codec & libvo) ==========================
2347 if (!opts->fixed_vo || !(mpctx->initialized_flags & INITIALIZED_VO)) {
2348 current_module="preinit_libvo";
2350 //shouldn't we set dvideo->id=-2 when we fail?
2351 //if((mpctx->video_out->preinit(vo_subdevice))!=0){
2352 if(!(mpctx->video_out=init_best_video_out(opts, mpctx->x11_state, mpctx->key_fifo, mpctx->input))){
2353 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"Error opening/initializing the selected video_out (-vo) device.\n");
2354 goto err_out;
2356 mpctx->initialized_flags|=INITIALIZED_VO;
2359 if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
2360 mpctx->sh_video->stream_aspect = ar;
2361 current_module="init_video_filters";
2363 char* vf_arg[] = { "_oldargs_", (char*)mpctx->video_out , NULL };
2364 sh_video->vfilter = vf_open_filter(opts, NULL,"vo",vf_arg);
2366 #ifdef CONFIG_MENU
2367 if(use_menu) {
2368 char* vf_arg[] = { "_oldargs_", menu_root, NULL };
2369 vf_menu = vf_open_plugin(opts,libmenu_vfs,sh_video->vfilter,"menu",vf_arg);
2370 if(!vf_menu) {
2371 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Can't open libmenu video filter with root menu %s.\n",menu_root);
2372 use_menu = 0;
2375 if(vf_menu)
2376 sh_video->vfilter = vf_menu;
2377 #endif
2379 #ifdef CONFIG_ASS
2380 if(opts->ass_enabled) {
2381 int i;
2382 int insert = 1;
2383 if (opts->vf_settings)
2384 for (i = 0; opts->vf_settings[i].name; ++i)
2385 if (strcmp(opts->vf_settings[i].name, "ass") == 0) {
2386 insert = 0;
2387 break;
2389 if (insert) {
2390 extern vf_info_t vf_info_ass;
2391 const vf_info_t* libass_vfs[] = {&vf_info_ass, NULL};
2392 char* vf_arg[] = {"auto", "1", NULL};
2393 int retcode = 0;
2394 struct vf_instance *vf_ass = vf_open_plugin_noerr(opts, libass_vfs,
2395 sh_video->vfilter,
2396 "ass", vf_arg,
2397 &retcode);
2398 if (vf_ass)
2399 sh_video->vfilter = vf_ass;
2400 else if (retcode == -1) // vf_ass open() returns -1 if there's VO EOSD
2401 mp_msg(MSGT_CPLAYER, MSGL_V, "[ass] vf_ass not needed\n");
2402 else
2403 mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
2406 #endif
2408 sh_video->vfilter = append_filters(sh_video->vfilter, opts->vf_settings);
2410 #ifdef CONFIG_ASS
2411 if (opts->ass_enabled)
2412 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_INIT_EOSD, ass_library);
2413 #endif
2415 current_module="init_video_codec";
2417 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2418 init_best_video_codec(sh_video,video_codec_list,video_fm_list);
2419 mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");
2421 if(!sh_video->initialized){
2422 if(!opts->fixed_vo) uninit_player(mpctx, INITIALIZED_VO);
2423 goto err_out;
2426 mpctx->initialized_flags|=INITIALIZED_VCODEC;
2428 if (sh_video->codec)
2429 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name);
2431 sh_video->last_pts = MP_NOPTS_VALUE;
2432 sh_video->num_buffered_pts = 0;
2433 sh_video->next_frame_time = 0;
2435 if (opts->auto_quality > 0) {
2436 // Auto quality option enabled
2437 output_quality=get_video_quality_max(sh_video);
2438 if (opts->auto_quality > output_quality)
2439 opts->auto_quality = output_quality;
2440 else
2441 output_quality = opts->auto_quality;
2442 mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d.\n",output_quality);
2443 set_video_quality(sh_video,output_quality);
2446 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============
2448 current_module="init_vo";
2450 return 1;
2452 err_out:
2453 mpctx->sh_video = mpctx->d_video->sh = NULL;
2454 return 0;
2457 static double update_video_nocorrect_pts(struct MPContext *mpctx)
2459 struct sh_video *sh_video = mpctx->sh_video;
2460 double frame_time = 0;
2461 struct vo *video_out = mpctx->video_out;
2462 while (!video_out->frame_loaded) {
2463 current_module = "filter_video";
2464 // In nocorrect-pts mode there is no way to properly time these frames
2465 if (vo_get_buffered_frame(video_out, 0) >= 0)
2466 break;
2467 if (vf_output_queued_frame(sh_video->vfilter))
2468 continue;
2469 unsigned char *packet = NULL;
2470 frame_time = sh_video->next_frame_time;
2471 if (mpctx->restart_playback)
2472 frame_time = 0;
2473 int in_size = video_read_frame(sh_video, &sh_video->next_frame_time,
2474 &packet, force_fps);
2475 if (in_size < 0) {
2476 #ifdef CONFIG_DVDNAV
2477 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
2478 if (mp_dvdnav_is_eof(mpctx->stream))
2479 return -1;
2480 if (mpctx->d_video)
2481 mpctx->d_video->eof = 0;
2482 if (mpctx->d_audio)
2483 mpctx->d_audio->eof = 0;
2484 mpctx->stream->eof = 0;
2485 } else
2486 #endif
2487 return -1;
2489 if (in_size > max_framesize)
2490 max_framesize = in_size;
2491 sh_video->timer += frame_time;
2492 if (mpctx->sh_audio)
2493 mpctx->delay -= frame_time;
2494 // video_read_frame can change fps (e.g. for ASF video)
2495 vo_fps = sh_video->fps;
2496 int framedrop_type = check_framedrop(mpctx, frame_time);
2497 current_module = "decode video";
2499 void *decoded_frame;
2500 #ifdef CONFIG_DVDNAV
2501 decoded_frame = mp_dvdnav_restore_smpi(mpctx, &in_size, &packet, NULL);
2502 if (in_size >= 0 && !decoded_frame)
2503 #endif
2504 decoded_frame = decode_video(sh_video, packet, in_size, framedrop_type,
2505 sh_video->pts);
2506 #ifdef CONFIG_DVDNAV
2507 // Save last still frame for future display
2508 mp_dvdnav_save_smpi(mpctx, in_size, packet, decoded_frame);
2509 #endif
2510 if (decoded_frame) {
2511 current_module = "filter video";
2512 if (filter_video(sh_video, decoded_frame, sh_video->pts))
2513 if (!video_out->config_ok)
2514 break;
2517 return frame_time;
2520 static void determine_frame_pts(struct MPContext *mpctx)
2522 struct sh_video *sh_video = mpctx->sh_video;
2523 struct MPOpts *opts = &mpctx->opts;
2525 if (opts->user_pts_assoc_mode) {
2526 sh_video->pts_assoc_mode = opts->user_pts_assoc_mode;
2527 } else if (sh_video->pts_assoc_mode == 0) {
2528 if (mpctx->d_video->demuxer->timestamp_type == TIMESTAMP_TYPE_PTS
2529 && sh_video->codec_reordered_pts != MP_NOPTS_VALUE)
2530 sh_video->pts_assoc_mode = 1;
2531 else
2532 sh_video->pts_assoc_mode = 2;
2533 } else {
2534 int probcount1 = sh_video->num_reordered_pts_problems;
2535 int probcount2 = sh_video->num_sorted_pts_problems;
2536 if (sh_video->pts_assoc_mode == 2) {
2537 int tmp = probcount1;
2538 probcount1 = probcount2;
2539 probcount2 = tmp;
2541 if (probcount1 >= probcount2 * 1.5 + 2) {
2542 sh_video->pts_assoc_mode = 3 - sh_video->pts_assoc_mode;
2543 mp_msg(MSGT_CPLAYER, MSGL_V, "Switching to pts association mode "
2544 "%d.\n", sh_video->pts_assoc_mode);
2547 sh_video->pts = sh_video->pts_assoc_mode == 1 ?
2548 sh_video->codec_reordered_pts : sh_video->sorted_pts;
2551 static double update_video(struct MPContext *mpctx)
2553 struct sh_video *sh_video = mpctx->sh_video;
2554 struct vo *video_out = mpctx->video_out;
2555 sh_video->vfilter->control(sh_video->vfilter, VFCTRL_SET_OSD_OBJ,
2556 mpctx->osd); // hack for vf_expand
2557 if (!mpctx->opts.correct_pts)
2558 return update_video_nocorrect_pts(mpctx);
2560 double pts;
2562 bool hit_eof = false;
2563 while (!video_out->frame_loaded) {
2564 current_module = "filter_video";
2565 if (vo_get_buffered_frame(video_out, hit_eof) >= 0)
2566 break;
2567 // XXX Time used in this call is not counted in any performance
2568 // timer now, OSD time is not updated correctly for filter-added frames
2569 if (vf_output_queued_frame(sh_video->vfilter))
2570 continue;
2571 if (hit_eof)
2572 return -1;
2573 unsigned char *packet = NULL;
2574 int in_size = ds_get_packet_pts(mpctx->d_video, &packet, &pts);
2575 if (pts != MP_NOPTS_VALUE)
2576 pts += mpctx->video_offset;
2577 if (in_size < 0) {
2578 // try to extract last frames in case of decoder lag
2579 in_size = 0;
2580 pts = MP_NOPTS_VALUE;
2581 hit_eof = true;
2583 if (in_size > max_framesize)
2584 max_framesize = in_size;
2585 current_module = "decode video";
2586 int framedrop_type = check_framedrop(mpctx, sh_video->frametime);
2587 void *decoded_frame = decode_video(sh_video, packet, in_size,
2588 framedrop_type, pts);
2589 if (decoded_frame) {
2590 determine_frame_pts(mpctx);
2591 current_module = "filter video";
2592 if (filter_video(sh_video, decoded_frame, sh_video->pts))
2593 if (!video_out->config_ok)
2594 break; // We'd likely hang in this loop otherwise
2598 pts = video_out->next_pts;
2599 if (pts == MP_NOPTS_VALUE) {
2600 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Video pts after filters MISSING\n");
2601 // Try to use decoder pts from before filters
2602 pts = sh_video->pts;
2603 if (pts == MP_NOPTS_VALUE)
2604 pts = sh_video->last_pts;
2606 sh_video->pts = pts;
2607 if (sh_video->last_pts == MP_NOPTS_VALUE)
2608 sh_video->last_pts = sh_video->pts;
2609 else if (sh_video->last_pts > sh_video->pts) {
2610 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Decreasing video pts: %f < %f\n",
2611 sh_video->pts, sh_video->last_pts);
2612 /* If the difference in pts is small treat it as jitter around the
2613 * right value (possibly caused by incorrect timestamp ordering) and
2614 * just show this frame immediately after the last one.
2615 * Treat bigger differences as timestamp resets and start counting
2616 * timing of later frames from the position of this one. */
2617 if (sh_video->last_pts - sh_video->pts > 0.5)
2618 sh_video->last_pts = sh_video->pts;
2619 else
2620 sh_video->pts = sh_video->last_pts;
2622 double frame_time = sh_video->pts - sh_video->last_pts;
2623 sh_video->last_pts = sh_video->pts;
2624 sh_video->timer += frame_time;
2625 if (mpctx->sh_audio)
2626 mpctx->delay -= frame_time;
2627 return frame_time;
2630 void pause_player(struct MPContext *mpctx)
2632 if (mpctx->paused)
2633 return;
2634 mpctx->paused = 1;
2635 mpctx->step_frames = 0;
2636 mpctx->time_frame -= get_relative_time(mpctx);
2638 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
2639 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
2641 if (mpctx->audio_out && mpctx->sh_audio)
2642 mpctx->audio_out->pause(); // pause audio, keep data if possible
2645 void unpause_player(struct MPContext *mpctx)
2647 if (!mpctx->paused)
2648 return;
2649 mpctx->paused = 0;
2651 if (mpctx->audio_out && mpctx->sh_audio)
2652 mpctx->audio_out->resume(); // resume audio
2653 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok
2654 && !mpctx->step_frames)
2655 vo_control(mpctx->video_out, VOCTRL_RESUME, NULL); // resume video
2656 (void)get_relative_time(mpctx); // ignore time that passed during pause
2659 void add_step_frame(struct MPContext *mpctx)
2661 mpctx->step_frames++;
2662 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
2663 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
2664 unpause_player(mpctx);
2667 static void pause_loop(struct MPContext *mpctx)
2669 struct MPOpts *opts = &mpctx->opts;
2670 mp_cmd_t* cmd;
2671 if (!opts->quiet) {
2672 // Small hack to display the pause message on the OSD line.
2673 // The pause string is: "\n == PAUSE == \r" so we need to
2674 // take the first and the last char out
2675 if (opts->term_osd && !mpctx->sh_video) {
2676 char msg[128] = _("\n ===== PAUSE =====\r");
2677 int mlen = strlen(msg);
2678 msg[mlen-1] = '\0';
2679 set_osd_msg(OSD_MSG_PAUSE, 1, 0, "%s", msg+1);
2680 update_osd_msg(mpctx);
2681 } else
2682 mp_tmsg(MSGT_CPLAYER,MSGL_STATUS,"\n ===== PAUSE =====\r");
2683 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n");
2686 while ( (cmd = mp_input_get_cmd(mpctx->input, 20, 1)) == NULL
2687 || cmd->id == MP_CMD_SET_MOUSE_POS || cmd->pausing == 4) {
2688 if (cmd) {
2689 cmd = mp_input_get_cmd(mpctx->input, 0, 0);
2690 run_command(mpctx, cmd);
2691 mp_cmd_free(cmd);
2692 continue;
2694 if (mpctx->sh_video && mpctx->video_out)
2695 vo_check_events(mpctx->video_out);
2696 #ifdef CONFIG_MENU
2697 if (vf_menu)
2698 vf_menu_pause_update(vf_menu);
2699 #endif
2700 usec_sleep(20000);
2701 update_osd_msg(mpctx);
2702 int hack = vo_osd_changed(0);
2703 vo_osd_changed(hack);
2704 if (hack)
2705 break;
2710 // Find the right mute status and record position for new file position
2711 static void edl_seek_reset(MPContext *mpctx)
2713 mpctx->edl_muted = 0;
2714 next_edl_record = edl_records;
2716 while (next_edl_record) {
2717 if (next_edl_record->start_sec >= mpctx->sh_video->pts)
2718 break;
2720 if (next_edl_record->action == EDL_MUTE)
2721 mpctx->edl_muted = !mpctx->edl_muted;
2722 next_edl_record = next_edl_record->next;
2724 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2725 mixer_mute(&mpctx->mixer);
2729 // Execute EDL command for the current position if one exists
2730 static void edl_update(MPContext *mpctx)
2732 if (!next_edl_record)
2733 return;
2735 if (!mpctx->sh_video) {
2736 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Cannot use EDL without video, disabling.\n");
2737 free_edl(edl_records);
2738 next_edl_record = NULL;
2739 edl_records = NULL;
2740 return;
2743 if (mpctx->sh_video->pts >= next_edl_record->start_sec) {
2744 if (next_edl_record->action == EDL_SKIP) {
2745 mpctx->osd_function = OSD_FFW;
2746 mpctx->abs_seek_pos = 0;
2747 mpctx->rel_seek_secs = next_edl_record->length_sec;
2748 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: start [%f], stop "
2749 "[%f], length [%f]\n", next_edl_record->start_sec,
2750 next_edl_record->stop_sec, next_edl_record->length_sec);
2752 else if (next_edl_record->action == EDL_MUTE) {
2753 mpctx->edl_muted = !mpctx->edl_muted;
2754 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted)
2755 mixer_mute(&mpctx->mixer);
2756 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n",
2757 next_edl_record->start_sec );
2759 next_edl_record = next_edl_record->next;
2763 static void reinit_decoders(struct MPContext *mpctx)
2765 reinit_video_chain(mpctx);
2766 reinit_audio_chain(mpctx);
2767 mp_property_do("sub", M_PROPERTY_SET, &mpctx->global_sub_pos, mpctx);
2770 static void seek_reset(struct MPContext *mpctx)
2772 if (mpctx->sh_video) {
2773 current_module = "seek_video_reset";
2774 resync_video_stream(mpctx->sh_video);
2775 mpctx->sh_video->timer = 0;
2776 vo_seek_reset(mpctx->video_out);
2777 mpctx->sh_video->timer = 0;
2778 mpctx->sh_video->num_buffered_pts = 0;
2779 mpctx->sh_video->last_pts = MP_NOPTS_VALUE;
2780 mpctx->delay = 0;
2781 mpctx->time_frame = 0;
2782 mpctx->restart_playback = true;
2783 // Not all demuxers set d_video->pts during seek, so this value
2784 // (which is used by at least vobsub and edl code below) may
2785 // be completely wrong (probably 0).
2786 mpctx->sh_video->pts = mpctx->d_video->pts + mpctx->video_offset;
2787 update_subtitles(mpctx, &mpctx->opts, mpctx->sh_video,
2788 mpctx->sh_video->pts, mpctx->video_offset,
2789 mpctx->d_sub, 1);
2790 update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
2793 if (mpctx->sh_audio) {
2794 current_module = "seek_audio_reset";
2795 resync_audio_stream(mpctx->sh_audio);
2796 mpctx->audio_out->reset(); // stop audio, throwing away buffered data
2797 mpctx->sh_audio->a_buffer_len = 0;
2798 mpctx->sh_audio->a_out_buffer_len = 0;
2799 if (!mpctx->sh_video)
2800 update_subtitles(mpctx, &mpctx->opts, NULL, mpctx->sh_audio->pts,
2801 mpctx->video_offset, mpctx->d_sub, 1);
2804 if (vo_vobsub && mpctx->sh_video) {
2805 current_module = "seek_vobsub_reset";
2806 vobsub_seek(vo_vobsub, mpctx->sh_video->pts);
2809 edl_seek_reset(mpctx);
2811 mpctx->total_avsync_change = 0;
2812 audio_time_usage = 0; video_time_usage = 0; vout_time_usage = 0;
2813 drop_frame_cnt = 0;
2815 current_module = NULL;
2818 static bool timeline_set_part(struct MPContext *mpctx, int i)
2820 struct timeline_part *p = mpctx->timeline + mpctx->timeline_part;
2821 struct timeline_part *n = mpctx->timeline + i;
2822 mpctx->timeline_part = i;
2823 mpctx->video_offset = n->start - n->source_start;
2824 if (n->source == p->source)
2825 return false;
2826 uninit_player(mpctx, INITIALIZED_VCODEC | (mpctx->opts.fixed_vo && mpctx->opts.video_id != -2 ? 0 : INITIALIZED_VO) | INITIALIZED_AO | INITIALIZED_ACODEC);
2827 mpctx->demuxer = n->source->demuxer;
2828 mpctx->d_video = mpctx->demuxer->video;
2829 mpctx->d_audio = mpctx->demuxer->audio;
2830 mpctx->d_sub = mpctx->demuxer->sub;
2831 mpctx->sh_video = mpctx->d_video->sh;
2832 mpctx->sh_audio = mpctx->d_audio->sh;
2833 return true;
2836 // Given pts, switch playback to the corresponding part.
2837 // Return offset within that part.
2838 static double timeline_set_from_time(struct MPContext *mpctx, double pts,
2839 bool *need_reset)
2841 if (pts < 0)
2842 pts = 0;
2843 for (int i = 0; i < mpctx->num_timeline_parts; i++) {
2844 struct timeline_part *p = mpctx->timeline + i;
2845 if (pts < (p+1)->start) {
2846 *need_reset = timeline_set_part(mpctx, i);
2847 return pts - p->start + p->source_start;
2850 return -1;
2854 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute
2855 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length
2856 // return -1 if seek failed (non-seekable stream?), 0 otherwise
2857 static int seek(MPContext *mpctx, double amount, int style)
2859 current_module = "seek";
2860 if (mpctx->stop_play == AT_END_OF_FILE)
2861 mpctx->stop_play = KEEP_PLAYING;
2862 if (style & SEEK_FACTOR
2863 || style & SEEK_ABSOLUTE && amount < mpctx->last_chapter_pts
2864 || amount < 0)
2865 mpctx->last_chapter_seek = -1;
2866 if (mpctx->timeline && style & SEEK_FACTOR) {
2867 amount *= mpctx->timeline[mpctx->num_timeline_parts].start;
2868 style &= ~SEEK_FACTOR;
2870 if ((mpctx->demuxer->accurate_seek || mpctx->timeline) && mpctx->sh_video
2871 && !(style & (SEEK_ABSOLUTE | SEEK_FACTOR))) {
2872 style |= SEEK_ABSOLUTE;
2873 if (amount > 0)
2874 style |= SEEK_FORWARD;
2875 else
2876 style |= SEEK_BACKWARD;
2877 amount += mpctx->sh_video->pts;
2880 /* At least the liba52 decoder wants to read from the input stream
2881 * during initialization, so reinit must be done after the demux_seek()
2882 * call that clears possible stream EOF. */
2883 bool need_reset = false;
2884 if (mpctx->timeline) {
2885 amount = timeline_set_from_time(mpctx, amount, &need_reset);
2886 if (amount == -1) {
2887 mpctx->stop_play = AT_END_OF_FILE;
2888 // Clear audio from current position
2889 if (mpctx->sh_audio) {
2890 mpctx->audio_out->reset();
2891 mpctx->sh_audio->a_buffer_len = 0;
2892 mpctx->sh_audio->a_out_buffer_len = 0;
2894 return -1;
2897 int seekresult = demux_seek(mpctx->demuxer, amount, audio_delay, style);
2898 if (need_reset)
2899 reinit_decoders(mpctx);
2900 if (seekresult == 0)
2901 return -1;
2903 seek_reset(mpctx);
2904 return 0;
2908 double get_time_length(struct MPContext *mpctx)
2910 if (mpctx->timeline)
2911 return mpctx->timeline[mpctx->num_timeline_parts].start;
2913 struct demuxer *demuxer = mpctx->demuxer;
2914 double get_time_ans;
2915 // <= 0 means DEMUXER_CTRL_NOTIMPL or DEMUXER_CTRL_DONTKNOW
2916 if (demux_control(demuxer, DEMUXER_CTRL_GET_TIME_LENGTH,
2917 (void *) &get_time_ans) > 0)
2918 return get_time_ans;
2920 struct sh_video *sh_video = mpctx->d_video->sh;
2921 struct sh_audio *sh_audio = mpctx->d_audio->sh;
2922 if (sh_video && sh_video->i_bps && sh_audio && sh_audio->i_bps)
2923 return (double) (demuxer->movi_end - demuxer->movi_start) /
2924 (sh_video->i_bps + sh_audio->i_bps);
2925 if (sh_video && sh_video->i_bps)
2926 return (double) (demuxer->movi_end - demuxer->movi_start) /
2927 sh_video->i_bps;
2928 if (sh_audio && sh_audio->i_bps)
2929 return (double) (demuxer->movi_end - demuxer->movi_start) /
2930 sh_audio->i_bps;
2931 return 0;
2934 /* If there are timestamps from stream level then use those (for example
2935 * DVDs can have consistent times there while the MPEG-level timestamps
2936 * reset). */
2937 double get_current_time(struct MPContext *mpctx)
2939 struct demuxer *demuxer = mpctx->demuxer;
2940 if (demuxer->stream_pts != MP_NOPTS_VALUE)
2941 return demuxer->stream_pts;
2942 struct sh_video *sh_video = demuxer->video->sh;
2943 if (sh_video)
2944 return sh_video->pts;
2945 return playing_audio_pts(mpctx);
2948 int get_percent_pos(struct MPContext *mpctx)
2950 struct demuxer *demuxer = mpctx->demuxer;
2951 int ans = 0;
2952 if (mpctx->timeline)
2953 ans = get_current_time(mpctx) * 100 /
2954 mpctx->timeline[mpctx->num_timeline_parts].start;
2955 else if (demux_control(demuxer, DEMUXER_CTRL_GET_PERCENT_POS, &ans) > 0)
2957 else {
2958 int len = (demuxer->movi_end - demuxer->movi_start) / 100;
2959 off_t pos = demuxer->filepos > 0 ?
2960 demuxer->filepos : stream_tell(demuxer->stream);
2961 if (len > 0)
2962 ans = (pos - demuxer->movi_start) / len;
2963 else
2964 ans = 0;
2966 if (ans < 0)
2967 ans = 0;
2968 if (ans > 100)
2969 ans = 100;
2970 return ans;
2973 // -2 is no chapters, -1 is before first chapter
2974 int get_current_chapter(struct MPContext *mpctx)
2976 double current_pts = get_current_time(mpctx);
2977 if (!mpctx->chapters)
2978 return FFMAX(mpctx->last_chapter_seek,
2979 demuxer_get_current_chapter(mpctx->demuxer, current_pts));
2981 int i;
2982 for (i = 1; i < mpctx->num_chapters; i++)
2983 if (current_pts < mpctx->chapters[i].start)
2984 break;
2985 return FFMAX(mpctx->last_chapter_seek, i - 1);
2988 // currently returns a string allocated with malloc, not talloc
2989 char *chapter_display_name(struct MPContext *mpctx, int chapter)
2991 if (!mpctx->chapters || !mpctx->sh_video)
2992 return demuxer_chapter_display_name(mpctx->demuxer, chapter);
2993 return strdup(mpctx->chapters[chapter].name);
2996 int seek_chapter(struct MPContext *mpctx, int chapter, double *seek_pts,
2997 char **chapter_name)
2999 mpctx->last_chapter_seek = -1;
3000 if (!mpctx->chapters || !mpctx->sh_video) {
3001 int res = demuxer_seek_chapter(mpctx->demuxer, chapter, seek_pts,
3002 chapter_name);
3003 if (res >= 0) {
3004 if (*seek_pts == -1)
3005 seek_reset(mpctx);
3006 else {
3007 mpctx->last_chapter_seek = res;
3008 mpctx->last_chapter_pts = *seek_pts;
3011 return res;
3014 if (chapter >= mpctx->num_chapters)
3015 return -1;
3016 if (chapter < 0)
3017 chapter = 0;
3018 *seek_pts = mpctx->chapters[chapter].start;
3019 mpctx->last_chapter_seek = chapter;
3020 mpctx->last_chapter_pts = *seek_pts;
3021 if (chapter_name)
3022 *chapter_name = talloc_strdup(NULL, mpctx->chapters[chapter].name);
3023 return chapter;
3026 static int find_ordered_chapter_sources(struct MPContext *mpctx,
3027 struct content_source *sources,
3028 int num_sources,
3029 unsigned char uid_map[][16])
3031 int num_filenames = 0;
3032 char **filenames = NULL;
3033 if (num_sources > 1) {
3034 mp_msg(MSGT_CPLAYER, MSGL_INFO, "This file references data from "
3035 "other sources.\n");
3036 if (mpctx->stream->type != STREAMTYPE_FILE) {
3037 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Playback source is not a "
3038 "normal disk file. Will not search for related files.\n");
3039 } else {
3040 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Will scan other files in the "
3041 "same directory to find referenced sources.\n");
3042 filenames = find_files(mpctx->demuxer->filename, ".mkv",
3043 &num_filenames);
3047 int num_left = num_sources - 1;
3048 for (int i = 0; i < num_filenames && num_left > 0; i++) {
3049 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Checking file %s\n",
3050 filename_recode(filenames[i]));
3051 int format;
3052 struct stream *s = open_stream(filenames[i], &mpctx->opts, &format);
3053 if (!s)
3054 continue;
3055 struct demuxer *d = demux_open(&mpctx->opts, s, DEMUXER_TYPE_MATROSKA,
3056 mpctx->opts.audio_id,
3057 mpctx->opts.video_id,
3058 mpctx->opts.sub_id, filenames[i]);
3059 if (!d) {
3060 free_stream(s);
3061 continue;
3063 if (d->file_format == DEMUXER_TYPE_MATROSKA) {
3064 for (int i = 1; i < num_sources; i++) {
3065 if (sources[i].demuxer)
3066 continue;
3067 if (!memcmp(uid_map[i], d->matroska_data.segment_uid, 16)) {
3068 mp_msg(MSGT_CPLAYER, MSGL_INFO,"Match for source %d: %s\n",
3069 i, filename_recode(d->filename));
3070 sources[i].stream = s;
3071 sources[i].demuxer = d;
3072 num_left--;
3073 goto match;
3077 free_demuxer(d);
3078 free_stream(s);
3079 continue;
3080 match:
3083 talloc_free(filenames);
3084 if (num_left) {
3085 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Failed to find ordered chapter part!\n"
3086 "There will be parts MISSING from the video!\n");
3087 for (int i = 1, j = 1; i < num_sources; i++)
3088 if (sources[i].demuxer) {
3089 sources[j] = sources[i];
3090 memcpy(uid_map[j], uid_map[i], 16);
3091 j++;
3094 return num_sources - num_left;
3097 static void build_ordered_chapter_timeline(struct MPContext *mpctx)
3099 struct MPOpts *opts = &mpctx->opts;
3101 if (!opts->ordered_chapters) {
3102 mp_msg(MSGT_CPLAYER, MSGL_INFO, "File uses ordered chapters, but "
3103 "you have disabled support for them. Ignoring.\n");
3104 return;
3107 mp_msg(MSGT_CPLAYER, MSGL_INFO, "File uses ordered chapters, will build "
3108 "edit timeline.\n");
3110 struct demuxer *demuxer = mpctx->demuxer;
3111 struct matroska_data *m = &demuxer->matroska_data;
3113 // +1 because sources/uid_map[0] is original file even if all chapters
3114 // actually use other sources and need separate entries
3115 struct content_source *sources = talloc_array_ptrtype(NULL, sources,
3116 m->num_ordered_chapters+1);
3117 sources[0].stream = mpctx->stream;
3118 sources[0].demuxer = mpctx->demuxer;
3119 unsigned char uid_map[m->num_ordered_chapters+1][16];
3120 int num_sources = 1;
3121 memcpy(uid_map[0], m->segment_uid, 16);
3123 for (int i = 0; i < m->num_ordered_chapters; i++) {
3124 struct matroska_chapter *c = m->ordered_chapters + i;
3125 if (!c->has_segment_uid)
3126 memcpy(c->segment_uid, m->segment_uid, 16);
3128 for (int j = 0; j < num_sources; j++)
3129 if (!memcmp(c->segment_uid, uid_map[j], 16))
3130 goto found1;
3131 memcpy(uid_map[num_sources], c->segment_uid, 16);
3132 sources[num_sources] = (struct content_source){};
3133 num_sources++;
3134 found1:
3138 num_sources = find_ordered_chapter_sources(mpctx, sources, num_sources,
3139 uid_map);
3142 // +1 for terminating chapter with start time marking end of last real one
3143 struct timeline_part *timeline = talloc_array_ptrtype(NULL, timeline,
3144 m->num_ordered_chapters + 1);
3145 struct chapter *chapters = talloc_array_ptrtype(NULL, chapters,
3146 m->num_ordered_chapters);
3147 uint64_t starttime = 0;
3148 uint64_t missing_time = 0;
3149 int part_count = 0;
3150 int num_chapters = 0;
3151 uint64_t prev_part_offset = 0;
3152 for (int i = 0; i < m->num_ordered_chapters; i++) {
3153 struct matroska_chapter *c = m->ordered_chapters + i;
3155 int j;
3156 for (j = 0; j < num_sources; j++) {
3157 if (!memcmp(c->segment_uid, uid_map[j], 16))
3158 goto found2;
3160 missing_time += c->end - c->start;
3161 continue;
3162 found2:;
3163 /* Only add a separate part if the time or file actually changes.
3164 * Matroska files have chapter divisions that are redundant from
3165 * timeline point of view because the same chapter structure is used
3166 * both to specify the timeline and for normal chapter information.
3167 * Removing a missing inserted external chapter can also cause this.
3168 * We allow for a configurable fudge factor because of files which
3169 * specify chapter end times that are one frame too early;
3170 * we don't want to try seeking over a one frame gap. */
3171 int64_t join_diff = c->start - starttime - prev_part_offset;
3172 if (part_count == 0 || FFABS(join_diff) > opts->chapter_merge_threshold
3173 || sources + j != timeline[part_count - 1].source) {
3174 timeline[part_count].source = sources + j;
3175 timeline[part_count].start = starttime / 1000.;
3176 timeline[part_count].source_start = c->start / 1000.;
3177 prev_part_offset = c->start - starttime;
3178 part_count++;
3179 } else if (part_count > 0 && join_diff) {
3180 /* Chapter was merged at an inexact boundary;
3181 * adjust timestamps to match. */
3182 mp_msg(MSGT_CPLAYER, MSGL_V, "Merging timeline part %d with "
3183 "offset %d ms.\n", i, (int) join_diff);
3184 starttime += join_diff;
3186 chapters[num_chapters].start = starttime / 1000.;
3187 chapters[num_chapters].name = talloc_strdup(chapters, c->name);
3188 starttime += c->end - c->start;
3189 num_chapters++;
3191 timeline[part_count].start = starttime / 1000.;
3193 if (!part_count) {
3194 // None of the parts come from the file itself???
3195 talloc_free(sources);
3196 talloc_free(timeline);
3197 talloc_free(chapters);
3198 return;
3201 mp_msg(MSGT_CPLAYER, MSGL_V, "Timeline contains %d parts from %d "
3202 "sources. Total length %.3f seconds.\n", part_count, num_sources,
3203 timeline[part_count].start);
3204 if (missing_time)
3205 mp_msg(MSGT_CPLAYER, MSGL_ERR, "There are %.3f seconds missing "
3206 "from the timeline!\n", missing_time / 1000.);
3207 mp_msg(MSGT_CPLAYER, MSGL_V, "Source files:\n");
3208 for (int i = 0; i < num_sources; i++)
3209 mp_msg(MSGT_CPLAYER, MSGL_V, "%d: %s\n", i,
3210 filename_recode(sources[i].demuxer->filename));
3211 mp_msg(MSGT_CPLAYER, MSGL_V, "Timeline parts: (number, start, "
3212 "source_start, source):\n");
3213 for (int i = 0; i < part_count; i++) {
3214 struct timeline_part *p = timeline + i;
3215 mp_msg(MSGT_CPLAYER, MSGL_V, "%3d %9.3f %9.3f %3td\n", i, p->start,
3216 p->source_start, p->source - sources);
3218 mp_msg(MSGT_CPLAYER, MSGL_V, "END %9.3f\n", timeline[part_count].start);
3219 mpctx->sources = sources;
3220 mpctx->num_sources = num_sources;
3221 mpctx->timeline = timeline;
3222 mpctx->num_timeline_parts = part_count;
3223 mpctx->num_chapters = num_chapters;
3224 mpctx->chapters = chapters;
3226 mpctx->timeline_part = 0;
3227 mpctx->demuxer = timeline[0].source->demuxer;
3231 static int read_keys(void *ctx, int fd)
3233 getch2(ctx);
3234 return mplayer_get_key(ctx, 0);
3238 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object
3239 * file for some tools to link against. */
3240 #ifndef DISABLE_MAIN
3241 int main(int argc,char* argv[]){
3244 char * mem_ptr;
3246 // movie info:
3248 /* Flag indicating whether MPlayer should exit without playing anything. */
3249 int opt_exit = 0;
3250 int i;
3252 struct MPContext *mpctx = &(struct MPContext){
3253 .osd_function = OSD_PLAY,
3254 .begin_skip = MP_NOPTS_VALUE,
3255 .play_tree_step = 1,
3256 .global_sub_pos = -1,
3257 .set_of_sub_pos = -1,
3258 .file_format = DEMUXER_TYPE_UNKNOWN,
3259 .last_dvb_step = 1,
3262 InitTimer();
3263 srand(GetTimerMS());
3265 mp_msg_init();
3266 set_av_log_callback();
3268 #ifdef CONFIG_X11
3269 mpctx->x11_state = vo_x11_init_state();
3270 #endif
3271 struct MPOpts *opts = &mpctx->opts;
3272 set_default_mplayer_options(opts);
3273 // Create the config context and register the options
3274 mpctx->mconfig = m_config_new(opts, cfg_include);
3275 m_config_register_options(mpctx->mconfig,mplayer_opts);
3276 m_config_register_options(mpctx->mconfig, common_opts);
3277 mp_input_register_options(mpctx->mconfig);
3279 // Preparse the command line
3280 m_config_preparse_command_line(mpctx->mconfig,argc,argv);
3282 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
3283 set_path_env();
3284 #endif
3286 #ifdef CONFIG_TV
3287 stream_tv_defaults.immediate = 1;
3288 #endif
3290 parse_cfgfiles(mpctx, mpctx->mconfig);
3292 mpctx->playtree = m_config_parse_mp_command_line(mpctx->mconfig, argc, argv);
3293 if(mpctx->playtree == NULL)
3294 opt_exit = 1;
3295 else {
3296 mpctx->playtree = play_tree_cleanup(mpctx->playtree);
3297 if(mpctx->playtree) {
3298 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree,mpctx->mconfig);
3299 if(mpctx->playtree_iter) {
3300 if(play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3301 play_tree_iter_free(mpctx->playtree_iter);
3302 mpctx->playtree_iter = NULL;
3304 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter,1);
3308 mpctx->key_fifo = mp_fifo_create(opts);
3310 print_version("MPlayer");
3312 #if defined(__MINGW32__) || defined(__CYGWIN__)
3314 HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
3315 BOOL WINAPI (*setDEP)(DWORD) = NULL;
3316 BOOL WINAPI (*setDllDir)(LPCTSTR) = NULL;
3317 if (kernel32) {
3318 setDEP = GetProcAddress(kernel32, "SetProcessDEPPolicy");
3319 setDllDir = GetProcAddress(kernel32, "SetDllDirectoryA");
3321 if (setDEP) setDEP(3);
3322 if (setDllDir) setDllDir("");
3324 // stop Windows from showing all kinds of annoying error dialogs
3325 SetErrorMode(0x8003);
3326 // request 1ms timer resolution
3327 timeBeginPeriod(1);
3328 #endif
3330 #ifdef CONFIG_PRIORITY
3331 set_priority();
3332 #endif
3334 if (codec_path)
3335 set_codec_path(codec_path);
3337 if(opts->video_driver_list && strcmp(opts->video_driver_list[0],"help")==0){
3338 list_video_out();
3339 opt_exit = 1;
3342 if(opts->audio_driver_list && strcmp(opts->audio_driver_list[0],"help")==0){
3343 list_audio_out();
3344 opt_exit = 1;
3347 /* Check codecs.conf. */
3348 if(!codecs_file || !parse_codec_cfg(codecs_file)){
3349 if(!parse_codec_cfg(mem_ptr=get_path("codecs.conf"))){
3350 if(!parse_codec_cfg(MPLAYER_CONFDIR "/codecs.conf")){
3351 if(!parse_codec_cfg(NULL)){
3352 exit_player_with_rc(mpctx, EXIT_NONE, 0);
3354 mp_tmsg(MSGT_CPLAYER,MSGL_V,"Using built-in default codecs.conf.\n");
3357 free( mem_ptr ); // release the buffer created by get_path()
3360 if(audio_codec_list && strcmp(audio_codec_list[0],"help")==0){
3361 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Available audio codecs:\n");
3362 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n");
3363 list_codecs(1);
3364 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3365 opt_exit = 1;
3367 if(video_codec_list && strcmp(video_codec_list[0],"help")==0){
3368 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "Available video codecs:\n");
3369 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n");
3370 list_codecs(0);
3371 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3372 opt_exit = 1;
3374 if(video_fm_list && strcmp(video_fm_list[0],"help")==0){
3375 vfm_help();
3376 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3377 opt_exit = 1;
3379 if(audio_fm_list && strcmp(audio_fm_list[0],"help")==0){
3380 afm_help();
3381 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3382 opt_exit = 1;
3384 if(af_cfg.list && strcmp(af_cfg.list[0],"help")==0){
3385 af_help();
3386 printf("\n");
3387 opt_exit = 1;
3389 #ifdef CONFIG_X11
3390 if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){
3391 fstype_help();
3392 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
3393 opt_exit = 1;
3395 #endif
3396 if((opts->demuxer_name && strcmp(opts->demuxer_name,"help")==0) ||
3397 (opts->audio_demuxer_name && strcmp(opts->audio_demuxer_name,"help")==0) ||
3398 (opts->sub_demuxer_name && strcmp(opts->sub_demuxer_name,"help")==0)){
3399 demuxer_help();
3400 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
3401 opt_exit = 1;
3403 if (opts->list_properties) {
3404 property_print_help();
3405 opt_exit = 1;
3408 if(opt_exit)
3409 exit_player(mpctx, EXIT_NONE);
3411 if (!mpctx->filename && !opts->player_idle_mode) {
3412 // no file/vcd/dvd -> show HELP:
3413 mp_msg(MSGT_CPLAYER, MSGL_INFO, "%s", mp_gtext(help_text));
3414 exit_player_with_rc(mpctx, EXIT_NONE, 0);
3417 /* Display what configure line was used */
3418 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
3420 // Many users forget to include command line in bugreports...
3421 if( mp_msg_test(MSGT_CPLAYER,MSGL_V) ){
3422 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "CommandLine:");
3423 for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
3424 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
3427 //------ load global data first ------
3429 mpctx->osd = osd_create();
3431 // check font
3432 #ifdef CONFIG_FREETYPE
3433 init_freetype();
3434 #endif
3435 #ifdef CONFIG_FONTCONFIG
3436 if(font_fontconfig <= 0)
3438 #endif
3439 #ifdef CONFIG_BITMAP_FONT
3440 if(font_name){
3441 vo_font=read_font_desc(font_name,font_factor,verbose>1);
3442 if(!vo_font) mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Cannot load bitmap font: %s\n",
3443 filename_recode(font_name));
3444 } else {
3445 // try default:
3446 vo_font=read_font_desc( mem_ptr=get_path("font/font.desc"),font_factor,verbose>1);
3447 free(mem_ptr); // release the buffer created by get_path()
3448 if(!vo_font)
3449 vo_font=read_font_desc(MPLAYER_DATADIR "/font/font.desc",font_factor,verbose>1);
3451 if (sub_font_name)
3452 mpctx->osd->sub_font = read_font_desc(sub_font_name, font_factor, verbose>1);
3453 else
3454 mpctx->osd->sub_font = vo_font;
3455 #endif
3456 #ifdef CONFIG_FONTCONFIG
3458 #endif
3460 #ifdef CONFIG_ASS
3461 ass_library = ass_init();
3462 #endif
3464 #ifdef HAVE_RTC
3465 if(opts->rtc)
3467 char *rtc_device = opts->rtc_device;
3468 // seteuid(0); /* Can't hurt to try to get root here */
3469 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
3470 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Failed to open %s: %s (it should be readable by the user.)\n",
3471 rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
3472 else {
3473 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */
3475 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) {
3476 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Linux RTC init error in ioctl (rtc_irqp_set %lu): %s\n", irqp, strerror(errno));
3477 mp_tmsg(MSGT_CPLAYER, MSGL_HINT, "Try adding \"echo %lu > /proc/sys/dev/rtc/max-user-freq\" to your system startup scripts.\n", irqp);
3478 close (rtc_fd);
3479 rtc_fd = -1;
3480 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
3481 /* variable only by the root */
3482 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error in ioctl (rtc_pie_on): %s\n", strerror(errno));
3483 close (rtc_fd);
3484 rtc_fd = -1;
3485 } else
3486 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Using Linux hardware RTC timing (%ldHz).\n", irqp);
3489 if(rtc_fd<0)
3490 #endif /* HAVE_RTC */
3491 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n",
3492 opts->softsleep ? "software" : timer_name);
3494 #ifdef HAVE_TERMCAP
3495 load_termcap(NULL); // load key-codes
3496 #endif
3498 // ========== Init keyboard FIFO (connection to libvo) ============
3500 // Init input system
3501 current_module = "init_input";
3502 mpctx->input = mp_input_init(&opts->input);
3503 mp_input_add_key_fd(mpctx->input, -1,0,mplayer_get_key,NULL, mpctx->key_fifo);
3504 if(slave_mode)
3505 mp_input_add_cmd_fd(mpctx->input, 0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);
3506 else if (opts->consolecontrols)
3507 mp_input_add_key_fd(mpctx->input, 0, 1, read_keys, NULL, mpctx->key_fifo);
3508 // Set the libstream interrupt callback
3509 stream_set_interrupt_callback(mp_input_check_interrupt, mpctx->input);
3511 #ifdef CONFIG_MENU
3512 if(use_menu) {
3513 if(menu_cfg && menu_init(mpctx, mpctx->mconfig, mpctx->input, menu_cfg))
3514 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", menu_cfg);
3515 else {
3516 menu_cfg = get_path("menu.conf");
3517 if(menu_init(mpctx, mpctx->mconfig, mpctx->input, menu_cfg))
3518 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", menu_cfg);
3519 else {
3520 if(menu_init(mpctx, mpctx->mconfig, mpctx->input,
3521 MPLAYER_CONFDIR "/menu.conf"))
3522 mp_tmsg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", MPLAYER_CONFDIR"/menu.conf");
3523 else {
3524 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Menu init failed.\n");
3525 use_menu = 0;
3530 #endif
3532 current_module = NULL;
3534 /// Catch signals
3535 #ifndef __MINGW32__
3536 signal(SIGCHLD,child_sighandler);
3537 #endif
3539 #ifdef CONFIG_CRASH_DEBUG
3540 prog_path = argv[0];
3541 #endif
3542 //========= Catch terminate signals: ================
3543 // terminate requests:
3544 signal(SIGTERM,exit_sighandler); // kill
3545 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed
3547 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
3549 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
3550 signal(SIGPIPE,exit_sighandler); // Some window managers cause this
3551 #ifdef CONFIG_SIGHANDLER
3552 // fatal errors:
3553 signal(SIGBUS,exit_sighandler); // bus error
3554 signal(SIGSEGV,exit_sighandler); // segfault
3555 signal(SIGILL,exit_sighandler); // illegal instruction
3556 signal(SIGFPE,exit_sighandler); // floating point exc.
3557 signal(SIGABRT,exit_sighandler); // abort()
3558 #ifdef CONFIG_CRASH_DEBUG
3559 if (crash_debug)
3560 signal(SIGTRAP,exit_sighandler);
3561 #endif
3562 #endif
3564 // ******************* Now, let's see the per-file stuff ********************
3566 play_next_file:
3568 // init global sub numbers
3569 mpctx->global_sub_size = 0;
3570 memset(mpctx->sub_counts, 0, sizeof(mpctx->sub_counts));
3572 if (mpctx->filename) {
3573 load_per_protocol_config (mpctx->mconfig, mpctx->filename);
3574 load_per_extension_config (mpctx->mconfig, mpctx->filename);
3575 load_per_file_config (mpctx->mconfig, mpctx->filename);
3578 if (opts->video_driver_list)
3579 load_per_output_config (mpctx->mconfig, PROFILE_CFG_VO, opts->video_driver_list[0]);
3580 if (opts->audio_driver_list)
3581 load_per_output_config (mpctx->mconfig, PROFILE_CFG_AO, opts->audio_driver_list[0]);
3583 // We must enable getch2 here to be able to interrupt network connection
3584 // or cache filling
3585 if (opts->consolecontrols && !slave_mode) {
3586 if(mpctx->initialized_flags&INITIALIZED_GETCH2)
3587 mp_tmsg(MSGT_CPLAYER,MSGL_WARN,"WARNING: getch2_init called twice!\n");
3588 else
3589 getch2_enable(); // prepare stdin for hotkeys...
3590 mpctx->initialized_flags|=INITIALIZED_GETCH2;
3591 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n");
3594 // =================== GUI idle loop (STOP state) ===========================
3595 while (opts->player_idle_mode && !mpctx->filename) {
3596 play_tree_t * entry = NULL;
3597 mp_cmd_t * cmd;
3598 if (mpctx->video_out && mpctx->video_out->config_ok)
3599 vo_control(mpctx->video_out, VOCTRL_PAUSE, NULL);
3600 while (!(cmd = mp_input_get_cmd(mpctx->input, 0, 0))) { // wait for command
3601 if (mpctx->video_out)
3602 vo_check_events(mpctx->video_out);
3603 usec_sleep(20000);
3605 switch (cmd->id) {
3606 case MP_CMD_LOADFILE:
3607 // prepare a tree entry with the new filename
3608 entry = play_tree_new();
3609 play_tree_add_file(entry, cmd->args[0].v.s);
3610 // The entry is added to the main playtree after the switch().
3611 break;
3612 case MP_CMD_LOADLIST:
3613 entry = parse_playlist_file(mpctx->mconfig, cmd->args[0].v.s);
3614 break;
3615 case MP_CMD_QUIT:
3616 exit_player_with_rc(mpctx, EXIT_QUIT, (cmd->nargs > 0)? cmd->args[0].v.i : 0);
3617 break;
3618 case MP_CMD_VO_FULLSCREEN:
3619 case MP_CMD_GET_PROPERTY:
3620 case MP_CMD_SET_PROPERTY:
3621 case MP_CMD_STEP_PROPERTY:
3622 run_command(mpctx, cmd);
3623 break;
3626 mp_cmd_free(cmd);
3628 if (entry) { // user entered a command that gave a valid entry
3629 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it
3630 play_tree_free_list(mpctx->playtree->child, 1);
3631 else mpctx->playtree=play_tree_new(); // .. or make a brand new playtree
3633 if (!mpctx->playtree) continue; // couldn't make playtree! wait for next command
3635 play_tree_set_child(mpctx->playtree, entry);
3637 /* Make iterator start at the top the of tree. */
3638 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mpctx->mconfig);
3639 if (!mpctx->playtree_iter) continue;
3641 // find the first real item in the tree
3642 if (play_tree_iter_step(mpctx->playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) {
3643 // no items!
3644 play_tree_iter_free(mpctx->playtree_iter);
3645 mpctx->playtree_iter = NULL;
3646 continue; // wait for next command
3648 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter, 1);
3651 //---------------------------------------------------------------------------
3653 if (mpctx->video_out && mpctx->sh_video && mpctx->video_out->config_ok)
3654 vo_control(mpctx->video_out, VOCTRL_RESUME, NULL);
3656 if (mpctx->filename) {
3657 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"\nPlaying %s.\n",
3658 filename_recode(mpctx->filename));
3659 if(use_filename_title && opts->vo_wintitle == NULL)
3660 opts->vo_wintitle = strdup(mp_basename(mpctx->filename));
3663 if (edl_filename) {
3664 if (edl_records) free_edl(edl_records);
3665 next_edl_record = edl_records = edl_parse_file();
3667 if (edl_output_filename) {
3668 if (edl_fd) fclose(edl_fd);
3669 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL)
3671 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Can't open EDL file [%s] for writing.\n",
3672 filename_recode(edl_output_filename));
3676 //==================== Open VOB-Sub ============================
3678 current_module="vobsub";
3679 if (vobsub_name){
3680 vo_vobsub=vobsub_open(vobsub_name,spudec_ifo,1,&vo_spudec);
3681 if(vo_vobsub==NULL)
3682 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Cannot load subtitles: %s\n",
3683 filename_recode(vobsub_name));
3684 } else if (sub_auto && mpctx->filename){
3685 /* try to autodetect vobsub from movie filename ::atmos */
3686 char *buf = strdup(mpctx->filename), *psub;
3687 char *pdot = strrchr(buf, '.');
3688 char *pslash = strrchr(buf, '/');
3689 #if defined(__MINGW32__) || defined(__CYGWIN__)
3690 if (!pslash) pslash = strrchr(buf, '\\');
3691 #endif
3692 if (pdot && (!pslash || pdot > pslash))
3693 *pdot = '\0';
3694 vo_vobsub=vobsub_open(buf,spudec_ifo,0,&vo_spudec);
3695 /* try from ~/.mplayer/sub */
3696 if(!vo_vobsub && (psub = get_path( "sub/" ))) {
3697 char *bname;
3698 int l;
3699 bname = strrchr(buf,'/');
3700 #if defined(__MINGW32__) || defined(__CYGWIN__)
3701 if(!bname) bname = strrchr(buf,'\\');
3702 #endif
3703 if(bname) bname++;
3704 else bname = buf;
3705 l = strlen(psub) + strlen(bname) + 1;
3706 psub = realloc(psub,l);
3707 strcat(psub,bname);
3708 vo_vobsub=vobsub_open(psub,spudec_ifo,0,&vo_spudec);
3709 free(psub);
3711 free(buf);
3713 if(vo_vobsub){
3714 mpctx->initialized_flags|=INITIALIZED_VOBSUB;
3715 vobsub_set_from_lang(vo_vobsub, opts->sub_lang);
3716 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx);
3718 // setup global sub numbering
3719 mpctx->sub_counts[SUB_SOURCE_VOBSUB] = vobsub_get_indexes_count(vo_vobsub);
3722 //============ Open & Sync STREAM --- fork cache2 ====================
3724 mpctx->stream=NULL;
3725 mpctx->demuxer=NULL;
3726 if (mpctx->d_audio) {
3727 //free_demuxer_stream(mpctx->d_audio);
3728 mpctx->d_audio=NULL;
3730 if (mpctx->d_video) {
3731 //free_demuxer_stream(d_video);
3732 mpctx->d_video=NULL;
3734 mpctx->sh_audio=NULL;
3735 mpctx->sh_video=NULL;
3737 current_module="open_stream";
3738 mpctx->stream = open_stream(mpctx->filename, opts, &mpctx->file_format);
3739 if(!mpctx->stream) { // error...
3740 mpctx->stop_play = libmpdemux_was_interrupted(mpctx, PT_NEXT_ENTRY);
3741 goto goto_next_file;
3743 mpctx->initialized_flags|=INITIALIZED_STREAM;
3745 if(mpctx->file_format == DEMUXER_TYPE_PLAYLIST) {
3746 mp_msg(MSGT_CPLAYER, MSGL_ERR, "\nThis looks like a playlist, but "
3747 "playlist support will not be used automatically.\n"
3748 "MPlayer's playlist code is unsafe and should only be used with "
3749 "trusted sources.\nPlayback will probably fail.\n\n");
3750 #if 0
3751 play_tree_t* entry;
3752 // Handle playlist
3753 current_module="handle_playlist";
3754 mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",
3755 filename_recode(mpctx->filename));
3756 entry = parse_playtree(mpctx->stream, mpctx->mconfig, 0);
3757 mpctx->eof=playtree_add_playlist(mpctx, entry);
3758 goto goto_next_file;
3759 #endif
3761 mpctx->stream->start_pos+=seek_to_byte;
3763 if(stream_dump_type==5){
3764 unsigned char buf[4096];
3765 int len;
3766 FILE *f;
3767 current_module="dumpstream";
3768 stream_reset(mpctx->stream);
3769 stream_seek(mpctx->stream,mpctx->stream->start_pos);
3770 f=fopen(opts->stream_dump_name,"wb");
3771 if(!f){
3772 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"Cannot open dump file.\n");
3773 exit_player(mpctx, EXIT_ERROR);
3775 if (opts->chapterrange[0] > 1) {
3776 int chapter = opts->chapterrange[0] - 1;
3777 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter);
3779 while(!mpctx->stream->eof && !async_quit_request){
3780 len=stream_read(mpctx->stream,buf,4096);
3781 if(len>0) {
3782 if(fwrite(buf,len,1,f) != 1) {
3783 mp_tmsg(MSGT_MENCODER,MSGL_FATAL,"%s: Error writing file.\n",opts->stream_dump_name);
3784 exit_player(mpctx, EXIT_ERROR);
3787 if (opts->chapterrange[1] > 0) {
3788 int chapter = -1;
3789 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER,
3790 &chapter) == STREAM_OK
3791 && chapter + 1 > opts->chapterrange[1])
3792 break;
3795 if(fclose(f)) {
3796 mp_tmsg(MSGT_MENCODER,MSGL_FATAL,"%s: Error writing file.\n",opts->stream_dump_name);
3797 exit_player(mpctx, EXIT_ERROR);
3799 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Core dumped ;)\n");
3800 exit_player_with_rc(mpctx, EXIT_EOF, 0);
3803 #ifdef CONFIG_DVDREAD
3804 if(mpctx->stream->type==STREAMTYPE_DVD){
3805 current_module="dvd lang->id";
3806 if(opts->audio_lang && opts->audio_id==-1) opts->audio_id=dvd_aid_from_lang(mpctx->stream,opts->audio_lang);
3807 if(opts->sub_lang && opts->sub_id==-1) opts->sub_id=dvd_sid_from_lang(mpctx->stream,opts->sub_lang);
3808 // setup global sub numbering
3809 mpctx->sub_counts[SUB_SOURCE_DEMUX] = dvd_number_of_subs(mpctx->stream);
3810 current_module=NULL;
3812 #endif
3814 #ifdef CONFIG_DVDNAV
3815 if(mpctx->stream->type==STREAMTYPE_DVDNAV){
3816 current_module="dvdnav lang->id";
3817 if(opts->audio_lang && opts->audio_id==-1) opts->audio_id=mp_dvdnav_aid_from_lang(mpctx->stream,opts->audio_lang);
3818 dvdsub_lang_id = -3;
3819 if(opts->sub_lang && opts->sub_id==-1)
3820 dvdsub_lang_id = opts->sub_id = mp_dvdnav_sid_from_lang(mpctx->stream,opts->sub_lang);
3821 // setup global sub numbering
3822 mpctx->sub_counts[SUB_SOURCE_DEMUX] = mp_dvdnav_number_of_subs(mpctx->stream);
3823 current_module=NULL;
3825 #endif
3827 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts)
3828 goto_enable_cache:
3829 if(stream_cache_size>0){
3830 int res;
3831 float stream_cache_min_percent = opts->stream_cache_min_percent;
3832 float stream_cache_seek_min_percent = opts->stream_cache_seek_min_percent;
3833 current_module="enable_cache";
3834 res = stream_enable_cache(mpctx->stream,stream_cache_size*1024,
3835 stream_cache_size*1024*(stream_cache_min_percent / 100.0),
3836 stream_cache_size*1024*(stream_cache_seek_min_percent / 100.0));
3837 if(res == 0)
3838 if((mpctx->stop_play = libmpdemux_was_interrupted(mpctx, PT_NEXT_ENTRY))) goto goto_next_file;
3841 //============ Open DEMUXERS --- DETECT file type =======================
3842 current_module="demux_open";
3844 mpctx->demuxer=demux_open(opts, mpctx->stream,mpctx->file_format,opts->audio_id,opts->video_id,opts->sub_id,mpctx->filename);
3846 // HACK to get MOV Reference Files working
3848 if (mpctx->demuxer && mpctx->demuxer->type==DEMUXER_TYPE_PLAYLIST)
3850 unsigned char* playlist_entry;
3851 play_tree_t *list = NULL, *entry = NULL;
3853 current_module="handle_demux_playlist";
3854 while (ds_get_packet(mpctx->demuxer->video,&playlist_entry)>0)
3856 char *temp;
3857 const char *bname;
3859 mp_msg(MSGT_CPLAYER,MSGL_V,"Adding file %s to element entry.\n",
3860 filename_recode(playlist_entry));
3862 bname=mp_basename(playlist_entry);
3863 if ((strlen(bname)>10) && !strncmp(bname,"qt",2) && !strncmp(bname+3,"gateQT",6))
3864 continue;
3866 if (!strcmp(playlist_entry, mpctx->filename)) // ignoring self-reference
3867 continue;
3869 entry = play_tree_new();
3871 if (mpctx->filename && !strcmp(mp_basename(playlist_entry),playlist_entry)) // add reference path of current file
3873 temp=malloc((strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename))+strlen(playlist_entry)+1));
3874 if (temp)
3876 strncpy(temp, mpctx->filename, strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename)));
3877 temp[strlen(mpctx->filename)-strlen(mp_basename(mpctx->filename))]='\0';
3878 strcat(temp, playlist_entry);
3879 if (!strcmp(temp, mpctx->filename)) {
3880 free(temp);
3881 continue;
3883 play_tree_add_file(entry,temp);
3884 mp_msg(MSGT_CPLAYER,MSGL_V,"Resolving reference to %s.\n",temp);
3885 free(temp);
3888 else
3889 play_tree_add_file(entry,playlist_entry);
3891 if(!list)
3892 list = entry;
3893 else
3894 play_tree_append_entry(list,entry);
3896 free_demuxer(mpctx->demuxer);
3897 mpctx->demuxer = NULL;
3899 if (list)
3901 entry = play_tree_new();
3902 play_tree_set_child(entry,list);
3903 mpctx->stop_play = playtree_add_playlist(mpctx, entry);
3904 goto goto_next_file;
3908 if(!mpctx->demuxer) {
3909 mp_tmsg(MSGT_CPLAYER, MSGL_ERR, "Failed to recognize file format.\n");
3910 goto goto_next_file;
3913 if (mpctx->demuxer->matroska_data.ordered_chapters)
3914 build_ordered_chapter_timeline(mpctx);
3916 if (!mpctx->sources) {
3917 mpctx->sources = talloc_ptrtype(NULL, mpctx->sources);
3918 *mpctx->sources = (struct content_source){.stream = mpctx->stream,
3919 .demuxer = mpctx->demuxer};
3920 mpctx->num_sources = 1;
3923 mpctx->initialized_flags|=INITIALIZED_DEMUXER;
3925 #ifdef CONFIG_ASS
3926 if (opts->ass_enabled && ass_library) {
3927 for (int j = 0; j < mpctx->num_sources; j++) {
3928 struct demuxer *d = mpctx->sources[j].demuxer;
3929 for (int i = 0; i < d->num_attachments; i++) {
3930 struct demux_attachment *att = d->attachments + i;
3931 if (use_embedded_fonts && attachment_is_font(att))
3932 ass_add_font(ass_library, att->name, att->data, att->data_size);
3936 #endif
3938 current_module="demux_open2";
3940 mpctx->d_audio=mpctx->demuxer->audio;
3941 mpctx->d_video=mpctx->demuxer->video;
3942 mpctx->d_sub=mpctx->demuxer->sub;
3944 if (ts_prog) {
3945 int tmp = ts_prog;
3946 mp_property_do("switch_program", M_PROPERTY_SET, &tmp, mpctx);
3948 // select audio stream
3949 if (mpctx->num_sources)
3950 for (int i = 0; i < mpctx->num_sources; i++)
3951 select_audio(mpctx->sources[i].demuxer, opts->audio_id,
3952 opts->audio_lang);
3953 else
3954 select_audio(mpctx->d_audio->demuxer, opts->audio_id, opts->audio_lang);
3956 // DUMP STREAMS:
3957 if((stream_dump_type)&&(stream_dump_type<4)){
3958 FILE *f;
3959 demux_stream_t *ds=NULL;
3960 current_module="dump";
3961 // select stream to dump
3962 switch(stream_dump_type){
3963 case 1: ds=mpctx->d_audio;break;
3964 case 2: ds=mpctx->d_video;break;
3965 case 3: ds=mpctx->d_sub;break;
3967 if(!ds){
3968 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"dump: FATAL: Selected stream missing!\n");
3969 exit_player(mpctx, EXIT_ERROR);
3971 // disable other streams:
3972 if(mpctx->d_audio && mpctx->d_audio!=ds) {ds_free_packs(mpctx->d_audio); mpctx->d_audio->id=-2; }
3973 if(mpctx->d_video && mpctx->d_video!=ds) {ds_free_packs(mpctx->d_video); mpctx->d_video->id=-2; }
3974 if(mpctx->d_sub && mpctx->d_sub!=ds) {ds_free_packs(mpctx->d_sub); mpctx->d_sub->id=-2; }
3975 // let's dump it!
3976 f=fopen(opts->stream_dump_name,"wb");
3977 if(!f){
3978 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"Cannot open dump file.\n");
3979 exit_player(mpctx, EXIT_ERROR);
3981 while(!ds->eof){
3982 unsigned char* start;
3983 int in_size=ds_get_packet(ds,&start);
3984 if( (mpctx->demuxer->file_format==DEMUXER_TYPE_AVI || mpctx->demuxer->file_format==DEMUXER_TYPE_ASF || mpctx->demuxer->file_format==DEMUXER_TYPE_MOV)
3985 && stream_dump_type==2) fwrite(&in_size,1,4,f);
3986 if(in_size>0) fwrite(start,in_size,1,f);
3987 if (opts->chapterrange[1] > 0) {
3988 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer, 0);
3989 if(cur_chapter!=-1 && cur_chapter+1 > opts->chapterrange[1])
3990 break;
3993 fclose(f);
3994 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Core dumped ;)\n");
3995 exit_player_with_rc(mpctx, EXIT_EOF, 0);
3998 mpctx->sh_audio=mpctx->d_audio->sh;
3999 mpctx->sh_video=mpctx->d_video->sh;
4001 if(mpctx->sh_video){
4003 current_module="video_read_properties";
4004 if(!video_read_properties(mpctx->sh_video)) {
4005 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"Video: Cannot read properties.\n");
4006 mpctx->sh_video=mpctx->d_video->sh=NULL;
4007 } else {
4008 mp_tmsg(MSGT_CPLAYER,MSGL_V,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.3f ftime:=%6.4f\n",
4009 mpctx->demuxer->file_format,mpctx->sh_video->format, mpctx->sh_video->disp_w,mpctx->sh_video->disp_h,
4010 mpctx->sh_video->fps,mpctx->sh_video->frametime
4013 /* need to set fps here for output encoders to pick it up in their init */
4014 if(force_fps){
4015 mpctx->sh_video->fps=force_fps;
4016 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
4018 vo_fps = mpctx->sh_video->fps;
4020 if(!mpctx->sh_video->fps && !force_fps){
4021 mp_tmsg(MSGT_CPLAYER,MSGL_ERR,"FPS not specified in the header or invalid, use the -fps option.\n");
4022 mpctx->opts.correct_pts = 1;
4028 if(!mpctx->sh_video && !mpctx->sh_audio){
4029 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL, "No stream found.\n");
4030 #ifdef CONFIG_DVBIN
4031 if(mpctx->stream->type == STREAMTYPE_DVB)
4033 int dir;
4034 int v = mpctx->last_dvb_step;
4035 if(v > 0)
4036 dir = DVB_CHANNEL_HIGHER;
4037 else
4038 dir = DVB_CHANNEL_LOWER;
4040 if(dvb_step_channel(mpctx->stream, dir)) {
4041 mpctx->stop_play = PT_NEXT_ENTRY;
4042 mpctx->dvbin_reopen = 1;
4045 #endif
4046 goto goto_next_file; // exit_player(_("Fatal error"));
4049 /* display clip info */
4050 demux_info_print(mpctx->demuxer);
4052 //================== Read SUBTITLES (DVD & TEXT) ==========================
4053 if(vo_spudec==NULL &&
4054 (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)){
4055 init_vo_spudec(mpctx);
4058 // after reading video params we should load subtitles because
4059 // we know fps so now we can adjust subtitle time to ~6 seconds AST
4060 // check .sub
4061 current_module="read_subtitles_file";
4062 double sub_fps = mpctx->sh_video ? mpctx->sh_video->fps : 25;
4063 if(sub_name){
4064 for (i = 0; sub_name[i] != NULL; ++i)
4065 add_subtitles(mpctx, sub_name[i], sub_fps, 0);
4067 if(sub_auto) { // auto load sub file ...
4068 char *psub = get_path( "sub/" );
4069 char **tmp = sub_filenames((psub ? psub : ""), mpctx->filename);
4070 int i = 0;
4071 free(psub); // release the buffer created by get_path() above
4072 while (tmp[i]) {
4073 add_subtitles(mpctx, tmp[i], sub_fps, 1);
4074 free(tmp[i++]);
4076 free(tmp);
4078 if (mpctx->set_of_sub_size > 0)
4079 mpctx->sub_counts[SUB_SOURCE_SUBS] = mpctx->set_of_sub_size;
4081 if (select_subtitle(mpctx)) {
4082 if(subdata)
4083 switch (stream_dump_type) {
4084 case 3: list_sub_file(subdata); break;
4085 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break;
4086 case 6: dump_srt(subdata, mpctx->sh_video->fps); break;
4087 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break;
4088 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break;
4089 case 9: dump_sami(subdata, mpctx->sh_video->fps); break;
4093 print_file_properties(mpctx, mpctx->filename);
4095 if(!mpctx->sh_video) goto main; // audio-only
4097 if(!reinit_video_chain(mpctx)) {
4098 if(!mpctx->sh_video){
4099 if(!mpctx->sh_audio) goto goto_next_file;
4100 goto main; // exit_player(_("Fatal error"));
4104 if(mpctx->sh_video->output_flags & 0x08 && vo_spudec)
4105 spudec_set_hw_spu(vo_spudec,mpctx->video_out);
4107 #ifdef CONFIG_FREETYPE
4108 force_load_font = 1;
4109 #endif
4111 //================== MAIN: ==========================
4112 main:
4113 current_module="main";
4115 if (opts->playing_msg) {
4116 char* msg = property_expand_string(mpctx, opts->playing_msg);
4117 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",msg);
4118 free(msg);
4122 // Disable the term OSD in verbose mode
4123 if (verbose)
4124 opts->term_osd = 0;
4127 int frame_time_remaining=0; // flag
4128 int blit_frame=0;
4130 // Make sure old OSD does not stay around,
4131 // e.g. with -fixed-vo and same-resolution files
4132 clear_osd_msgs();
4133 update_osd_msg(mpctx);
4135 //================ SETUP AUDIO ==========================
4137 if(mpctx->sh_audio){
4138 reinit_audio_chain(mpctx);
4139 if (mpctx->sh_audio && mpctx->sh_audio->codec)
4140 mp_msg(MSGT_IDENTIFY,MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name);
4143 current_module="av_init";
4145 if(mpctx->sh_video){
4146 mpctx->sh_video->timer=0;
4147 if (! ignore_start)
4148 audio_delay += mpctx->sh_video->stream_delay;
4150 if(mpctx->sh_audio){
4151 if (start_volume >= 0)
4152 mixer_setvolume(&mpctx->mixer, start_volume, start_volume);
4153 if (! ignore_start)
4154 audio_delay -= mpctx->sh_audio->stream_delay;
4155 mpctx->delay=-audio_delay;
4158 if(!mpctx->sh_audio){
4159 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Audio: no sound\n");
4160 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks.\n",mpctx->d_audio->packs);
4161 ds_free_packs(mpctx->d_audio); // free buffered chunks
4162 //mpctx->d_audio->id=-2; // do not read audio chunks
4163 //uninit_player(mpctx, INITIALIZED_AO); // close device
4165 if(!mpctx->sh_video){
4166 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Video: no video\n");
4167 mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks.\n",mpctx->d_video->packs);
4168 ds_free_packs(mpctx->d_video);
4169 mpctx->d_video->id=-2;
4170 //if(!fixed_vo) uninit_player(mpctx, INITIALIZED_VO);
4173 if (!mpctx->sh_video && !mpctx->sh_audio)
4174 goto goto_next_file;
4176 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
4177 if(force_fps && mpctx->sh_video){
4178 vo_fps = mpctx->sh_video->fps=force_fps;
4179 mpctx->sh_video->frametime=1.0f/mpctx->sh_video->fps;
4180 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"FPS forced to be %5.3f (ftime: %5.3f).\n",mpctx->sh_video->fps,mpctx->sh_video->frametime);
4183 mp_input_set_section(mpctx->input, NULL);
4184 //TODO: add desired (stream-based) sections here
4185 if (mpctx->stream->type==STREAMTYPE_TV) mp_input_set_section(mpctx->input, "tv");
4186 if (mpctx->stream->type==STREAMTYPE_DVDNAV) mp_input_set_section(mpctx->input, "dvdnav");
4188 //==================== START PLAYING =======================
4190 if(opts->loop_times>1) opts->loop_times--; else
4191 if(opts->loop_times==1) opts->loop_times = -1;
4193 mp_tmsg(MSGT_CPLAYER,MSGL_INFO,"Starting playback...\n");
4195 total_time_usage_start=GetTimer();
4196 audio_time_usage=0; video_time_usage=0; vout_time_usage=0;
4197 total_frame_cnt=0; drop_frame_cnt=0; // fix for multifile fps benchmark
4198 play_n_frames=play_n_frames_mf;
4200 if(play_n_frames==0){
4201 mpctx->stop_play=PT_NEXT_ENTRY; goto goto_next_file;
4204 // If there's a timeline force an absolute seek to initialize state
4205 if (seek_to_sec || mpctx->timeline) {
4206 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE);
4207 end_at.pos += seek_to_sec;
4209 if (opts->chapterrange[0] > 0) {
4210 double pts;
4211 if (seek_chapter(mpctx, opts->chapterrange[0]-1, &pts, NULL) >= 0
4212 && pts > -1.0)
4213 seek(mpctx, pts, SEEK_ABSOLUTE);
4216 if (end_at.type == END_AT_SIZE) {
4217 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Option -endpos in MPlayer does not yet support size units.\n");
4218 end_at.type = END_AT_NONE;
4221 #ifdef CONFIG_DVDNAV
4222 mp_dvdnav_context_free(mpctx);
4223 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
4224 mp_dvdnav_read_wait(mpctx->stream, 0, 1);
4225 mp_dvdnav_cell_has_changed(mpctx->stream,1);
4227 #endif
4229 get_relative_time(mpctx); // reset current delta
4230 mpctx->time_frame = 0;
4231 mpctx->drop_message_shown = 0;
4232 mpctx->restart_playback = true;
4233 mpctx->total_avsync_change = 0;
4234 mpctx->last_chapter_seek = -1;
4235 // Make sure VO knows current pause state
4236 if (mpctx->sh_video)
4237 vo_control(mpctx->video_out, mpctx->paused ? VOCTRL_PAUSE : VOCTRL_RESUME,
4238 NULL);
4240 while(!mpctx->stop_play){
4241 float aq_sleep_time=0;
4243 if (opts->chapterrange[1] > 0) {
4244 int cur_chapter = get_current_chapter(mpctx);
4245 if(cur_chapter!=-1 && cur_chapter+1 > opts->chapterrange[1])
4246 goto goto_next_file;
4249 if(!mpctx->sh_audio && mpctx->d_audio->sh) {
4250 mpctx->sh_audio = mpctx->d_audio->sh;
4251 mpctx->sh_audio->ds = mpctx->d_audio;
4252 reinit_audio_chain(mpctx);
4255 /*========================== PLAY AUDIO ============================*/
4257 if (mpctx->sh_audio && !mpctx->paused
4258 && (!mpctx->restart_playback || !mpctx->sh_video))
4259 if (!fill_audio_out_buffers(mpctx))
4260 // at eof, all audio at least written to ao
4261 if (!mpctx->sh_video)
4262 mpctx->stop_play = AT_END_OF_FILE;
4265 if(!mpctx->sh_video) {
4266 // handle audio-only case:
4267 double a_pos=0;
4268 // sh_audio can be NULL due to video stream switching
4269 // TODO: handle this better
4270 if (mpctx->sh_audio)
4271 a_pos = playing_audio_pts(mpctx);
4273 print_status(mpctx, a_pos, false);
4275 if(end_at.type == END_AT_TIME && end_at.pos < a_pos)
4276 mpctx->stop_play = PT_NEXT_ENTRY;
4277 update_subtitles(mpctx, &mpctx->opts, NULL, a_pos, mpctx->video_offset,
4278 mpctx->d_sub, 0);
4279 update_osd_msg(mpctx);
4281 } else {
4283 /*========================== PLAY VIDEO ============================*/
4285 vo_pts=mpctx->sh_video->timer*90000.0;
4286 vo_fps=mpctx->sh_video->fps;
4288 blit_frame = mpctx->video_out->frame_loaded;
4289 if (!blit_frame) {
4290 double frame_time = update_video(mpctx);
4291 blit_frame = mpctx->video_out->frame_loaded;
4292 mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time);
4293 if (mpctx->sh_video->vf_initialized < 0) {
4294 mp_tmsg(MSGT_CPLAYER,MSGL_FATAL, "\nFATAL: Could not initialize video filters (-vf) or video output (-vo).\n");
4295 mpctx->stop_play = PT_NEXT_ENTRY;
4296 goto goto_next_file;
4298 if (blit_frame) {
4299 struct sh_video *sh_video = mpctx->sh_video;
4300 update_subtitles(mpctx, &mpctx->opts, sh_video, sh_video->pts,
4301 mpctx->video_offset, mpctx->d_sub, 0);
4302 update_teletext(sh_video, mpctx->demuxer, 0);
4303 update_osd_msg(mpctx);
4304 struct vf_instance *vf = mpctx->sh_video->vfilter;
4305 vf->control(vf, VFCTRL_DRAW_EOSD, NULL);
4306 vf->control(vf, VFCTRL_DRAW_OSD, mpctx->osd);
4307 vo_osd_changed(0);
4309 if (frame_time < 0)
4310 mpctx->stop_play = AT_END_OF_FILE;
4311 else if (!mpctx->restart_playback) {
4312 mpctx->time_frame += frame_time / opts->playback_speed;
4313 adjust_sync(mpctx, frame_time);
4316 if (mpctx->timeline) {
4317 struct timeline_part *next = mpctx->timeline + mpctx->timeline_part + 1;
4318 if (mpctx->sh_video->pts >= next->start
4319 || mpctx->stop_play == AT_END_OF_FILE
4320 && mpctx->timeline_part + 1 < mpctx->num_timeline_parts) {
4321 seek(mpctx, next->start, SEEK_ABSOLUTE);
4322 continue;
4326 // ==========================================================================
4328 // current_module="draw_osd";
4329 // if(vo_config_count) mpctx->video_out->draw_osd();
4331 current_module="vo_check_events";
4332 vo_check_events(mpctx->video_out);
4334 #ifdef CONFIG_X11
4335 if (stop_xscreensaver) {
4336 current_module = "stop_xscreensaver";
4337 xscreensaver_heartbeat(mpctx->x11_state);
4339 #endif
4340 if (heartbeat_cmd) {
4341 static unsigned last_heartbeat;
4342 unsigned now = GetTimerMS();
4343 if (now - last_heartbeat > 30000) {
4344 last_heartbeat = now;
4345 system(heartbeat_cmd);
4349 frame_time_remaining = sleep_until_update(mpctx, &mpctx->time_frame, &aq_sleep_time);
4351 //====================== FLIP PAGE (VIDEO BLT): =========================
4353 current_module="flip_page";
4354 if (!frame_time_remaining && blit_frame) {
4355 unsigned int t2=GetTimer();
4356 unsigned int pts_us = mpctx->last_time + mpctx->time_frame * 1e6;
4357 int duration = -1;
4358 double pts2 = mpctx->video_out->next_pts2;
4359 if (pts2 != MP_NOPTS_VALUE && opts->correct_pts
4360 && !mpctx->restart_playback) {
4361 // expected A/V sync correction is ignored
4362 double diff = (pts2 - mpctx->sh_video->pts);
4363 diff /= opts->playback_speed;
4364 if (mpctx->time_frame < 0)
4365 diff += mpctx->time_frame;
4366 if (diff < 0)
4367 diff = 0;
4368 if (diff > 10)
4369 diff = 10;
4370 duration = diff * 1e6;
4372 vo_flip_page(mpctx->video_out, pts_us|1, duration);
4374 mpctx->last_vo_flip_duration = (GetTimer() - t2) * 0.000001;
4375 vout_time_usage += mpctx->last_vo_flip_duration;
4376 if (mpctx->video_out->driver->flip_page_timed) {
4377 // No need to adjust sync based on flip speed
4378 mpctx->last_vo_flip_duration = 0;
4379 // For print_status - VO call finishing early is OK for sync
4380 mpctx->time_frame -= get_relative_time(mpctx);
4382 if (mpctx->restart_playback) {
4383 mpctx->syncing_audio = true;
4384 if (mpctx->sh_audio && !mpctx->paused)
4385 fill_audio_out_buffers(mpctx);
4386 mpctx->restart_playback = false;
4387 mpctx->time_frame = 0;
4388 get_relative_time(mpctx);
4390 print_status(mpctx, MP_NOPTS_VALUE, true);
4392 else
4393 print_status(mpctx, MP_NOPTS_VALUE, false);
4395 //============================ Auto QUALITY ============================
4397 /*Output quality adjustments:*/
4398 if (opts->auto_quality > 0) {
4399 current_module="autoq";
4400 // float total=0.000001f * (GetTimer()-aq_total_time);
4401 // if (output_quality < opts->auto_quality && aq_sleep_time > 0.05f * total)
4402 if (output_quality < opts->auto_quality && aq_sleep_time > 0)
4403 ++output_quality;
4404 else
4405 // if(output_quality>0 && aq_sleep_time<-0.05f*total)
4406 if(output_quality>1 && aq_sleep_time<0)
4407 --output_quality;
4408 else
4409 if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms
4410 output_quality=0;
4411 // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality);
4412 set_video_quality(mpctx->sh_video,output_quality);
4415 if (!frame_time_remaining && blit_frame) {
4416 if (play_n_frames >= 0) {
4417 --play_n_frames;
4418 if (play_n_frames <= 0)
4419 mpctx->stop_play = PT_NEXT_ENTRY;
4421 if (mpctx->step_frames > 0) {
4422 mpctx->step_frames--;
4423 if (mpctx->step_frames == 0)
4424 pause_player(mpctx);
4429 // FIXME: add size based support for -endpos
4430 if (end_at.type == END_AT_TIME &&
4431 !frame_time_remaining && end_at.pos <= mpctx->sh_video->pts)
4432 mpctx->stop_play = PT_NEXT_ENTRY;
4434 } // end if(mpctx->sh_video)
4436 #ifdef CONFIG_DVDNAV
4437 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
4438 nav_highlight_t hl;
4439 mp_dvdnav_get_highlight (mpctx->stream, &hl);
4440 if (!vo_spudec || !spudec_apply_palette_crop(vo_spudec, hl.palette, hl.sx, hl.sy, hl.ex, hl.ey)) {
4441 osd_set_nav_box (hl.sx, hl.sy, hl.ex, hl.ey);
4442 vo_osd_changed (OSDTYPE_DVDNAV);
4443 } else {
4444 osd_set_nav_box(0, 0, 0, 0);
4445 vo_osd_changed(OSDTYPE_DVDNAV);
4446 vo_osd_changed(OSDTYPE_SPU);
4449 if (mp_dvdnav_stream_has_changed(mpctx->stream)) {
4450 double ar = -1.0;
4451 if (mpctx->sh_video &&
4452 stream_control (mpctx->demuxer->stream,
4453 STREAM_CTRL_GET_ASPECT_RATIO, &ar)
4454 != STREAM_UNSUPPORTED)
4455 mpctx->sh_video->stream_aspect = ar;
4458 #endif
4460 //================= Keyboard events, SEEKing ====================
4462 current_module="key_events";
4465 while (1) {
4466 mp_cmd_t* cmd;
4467 while ((cmd = mp_input_get_cmd(mpctx->input, 0, 0)) != NULL) {
4468 run_command(mpctx, cmd);
4469 mp_cmd_free(cmd);
4470 if (mpctx->stop_play)
4471 break;
4472 if (mpctx->rel_seek_secs || mpctx->abs_seek_pos) {
4473 cmd = mp_input_get_cmd(mpctx->input, 0, 1);
4474 /* Allow seek commands to be combined, but execute the real seek
4475 * before processing other commands */
4476 if (!cmd || cmd->id != MP_CMD_SEEK)
4477 break;
4480 if (!mpctx->paused || mpctx->stop_play || mpctx->rel_seek_secs
4481 || mpctx->abs_seek_pos)
4482 break;
4483 if (mpctx->sh_video) {
4484 update_osd_msg(mpctx);
4485 int hack = vo_osd_changed(0);
4486 vo_osd_changed(hack);
4487 if (hack) {
4488 if (redraw_osd(mpctx->sh_video, mpctx->osd) < 0) {
4489 add_step_frame(mpctx);
4490 break;
4492 else
4493 vo_osd_changed(0);
4496 pause_loop(mpctx);
4500 // handle -sstep
4501 if (step_sec > 0 && !mpctx->paused) {
4502 mpctx->osd_function=OSD_FFW;
4503 mpctx->rel_seek_secs+=step_sec;
4506 edl_update(mpctx);
4508 /* Looping. */
4509 if(mpctx->stop_play==AT_END_OF_FILE && opts->loop_times>=0) {
4510 mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d\n", opts->loop_times);
4512 if(opts->loop_times>1) opts->loop_times--; else
4513 if(opts->loop_times==1) opts->loop_times=-1;
4514 play_n_frames=play_n_frames_mf;
4515 mpctx->stop_play=0;
4516 mpctx->abs_seek_pos=SEEK_ABSOLUTE; mpctx->rel_seek_secs=seek_to_sec;
4519 if(mpctx->rel_seek_secs || mpctx->abs_seek_pos){
4520 seek(mpctx, mpctx->rel_seek_secs, mpctx->abs_seek_pos);
4522 mpctx->rel_seek_secs=0;
4523 mpctx->abs_seek_pos=0;
4526 } // while(!mpctx->stop_play)
4528 mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",mpctx->stop_play);
4530 #ifdef CONFIG_DVBIN
4531 if(mpctx->dvbin_reopen)
4533 mpctx->stop_play = 0;
4534 uninit_player(mpctx, INITIALIZED_ALL-(INITIALIZED_STREAM|INITIALIZED_GETCH2|(opts->fixed_vo?INITIALIZED_VO:0)));
4535 cache_uninit(mpctx->stream);
4536 mpctx->dvbin_reopen = 0;
4537 goto goto_enable_cache;
4539 #endif
4542 goto_next_file: // don't jump here after ao/vo/getch initialization!
4544 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n");
4546 if (opts->benchmark) {
4547 double tot=video_time_usage+vout_time_usage+audio_time_usage;
4548 double total_time_usage;
4549 total_time_usage_start=GetTimer()-total_time_usage_start;
4550 total_time_usage = (float)total_time_usage_start*0.000001;
4551 mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n",
4552 video_time_usage,vout_time_usage,audio_time_usage,
4553 total_time_usage-tot,total_time_usage);
4554 if(total_time_usage>0.0)
4555 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n",
4556 100.0*video_time_usage/total_time_usage,
4557 100.0*vout_time_usage/total_time_usage,
4558 100.0*audio_time_usage/total_time_usage,
4559 100.0*(total_time_usage-tot)/total_time_usage,
4560 100.0);
4561 if(total_frame_cnt && frame_dropping)
4562 mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n",
4563 total_frame_cnt-drop_frame_cnt,
4564 (total_time_usage>0.5)?((total_frame_cnt-drop_frame_cnt)/total_time_usage):0,
4565 drop_frame_cnt,
4566 100*drop_frame_cnt/total_frame_cnt,
4567 total_frame_cnt,
4568 (total_time_usage>0.5)?(total_frame_cnt/total_time_usage):0);
4571 // time to uninit all, except global stuff:
4572 int uninitialize_parts = INITIALIZED_ALL;
4573 if (opts->fixed_vo)
4574 uninitialize_parts -= INITIALIZED_VO;
4575 if (opts->gapless_audio && mpctx->stop_play == AT_END_OF_FILE)
4576 uninitialize_parts -= INITIALIZED_AO;
4577 uninit_player(mpctx, uninitialize_parts);
4579 if(mpctx->set_of_sub_size > 0) {
4580 current_module="sub_free";
4581 for(i = 0; i < mpctx->set_of_sub_size; ++i) {
4582 sub_free(mpctx->set_of_subtitles[i]);
4583 #ifdef CONFIG_ASS
4584 if(mpctx->set_of_ass_tracks[i])
4585 ass_free_track( mpctx->set_of_ass_tracks[i] );
4586 #endif
4588 mpctx->set_of_sub_size = 0;
4590 vo_sub_last = vo_sub=NULL;
4591 subdata=NULL;
4592 #ifdef CONFIG_ASS
4593 ass_track = NULL;
4594 if(ass_library)
4595 ass_clear_fonts(ass_library);
4596 #endif
4598 if (!mpctx->stop_play) // In case some goto jumped here...
4599 mpctx->stop_play = PT_NEXT_ENTRY;
4601 int playtree_direction = 1;
4603 if(mpctx->stop_play == PT_NEXT_ENTRY || mpctx->stop_play == PT_PREV_ENTRY) {
4604 if(play_tree_iter_step(mpctx->playtree_iter,mpctx->play_tree_step,0) != PLAY_TREE_ITER_ENTRY) {
4605 play_tree_iter_free(mpctx->playtree_iter);
4606 mpctx->playtree_iter = NULL;
4608 mpctx->play_tree_step = 1;
4609 } else if(mpctx->stop_play == PT_UP_NEXT || mpctx->stop_play == PT_UP_PREV) {
4610 int direction = mpctx->stop_play == PT_UP_NEXT ? 1 : -1;
4611 if(mpctx->playtree_iter) {
4612 if(play_tree_iter_up_step(mpctx->playtree_iter,direction,0) != PLAY_TREE_ITER_ENTRY) {
4613 play_tree_iter_free(mpctx->playtree_iter);
4614 mpctx->playtree_iter = NULL;
4617 } else if (mpctx->stop_play == PT_STOP) {
4618 play_tree_iter_free(mpctx->playtree_iter);
4619 mpctx->playtree_iter = NULL;
4620 } else { // NEXT PREV SRC
4621 playtree_direction = mpctx->stop_play == PT_PREV_SRC ? -1 : 1;
4624 while(mpctx->playtree_iter != NULL) {
4625 mpctx->filename = play_tree_iter_get_file(mpctx->playtree_iter, playtree_direction);
4626 if(mpctx->filename == NULL) {
4627 if(play_tree_iter_step(mpctx->playtree_iter, playtree_direction, 0) != PLAY_TREE_ITER_ENTRY) {
4628 play_tree_iter_free(mpctx->playtree_iter);
4629 mpctx->playtree_iter = NULL;
4631 } else
4632 break;
4635 if (mpctx->playtree_iter != NULL || opts->player_idle_mode) {
4636 if(!mpctx->playtree_iter) mpctx->filename = NULL;
4637 mpctx->stop_play = 0;
4638 goto play_next_file;
4642 exit_player_with_rc(mpctx, EXIT_EOF, 0);
4644 return 1;
4646 #endif /* DISABLE_MAIN */