// AVI & MPEG Player v0.18 (C) 2000-2001. by A'rpi/ESP-team #include #include #include #include #include // #include #include #include #include #include #include #include #include #include #include "version.h" #include "config.h" #include "mp_msg.h" #define HELP_MP_DEFINE_STATIC #include "help_mp.h" #include "cfgparser.h" #include "cfg-mplayer-def.h" #ifdef USE_SUB #include "subreader.h" #endif #include "libvo/video_out.h" extern void* mDisplay; // Display* mDisplay; #include "libvo/font_load.h" #include "libvo/sub.h" #include "libao2/audio_out.h" #include "libao2/audio_plugin.h" #include "libmpeg2/mpeg2.h" #include "libmpeg2/mpeg2_internal.h" #include "codec-cfg.h" #include "dvdauth.h" #ifdef USE_DVDNAV #include #endif #include "spudec.h" #include "vobsub.h" #include "linux/getch2.h" #include "linux/keycodes.h" #include "linux/timer.h" #include "linux/shmem.h" #include "cpudetect.h" #ifdef HAVE_LIRC #include "lirc_mp.h" #endif #ifdef HAVE_NEW_GUI #include "Gui/interface.h" #endif #ifdef HAVE_NEW_INPUT #include "input/input.h" #endif int slave_mode=0; int verbose=0; int quiet=0; #define ABS(x) (((x)>=0)?(x):(-(x))) #ifdef HAVE_RTC #include #endif #ifdef USE_TV #include "libmpdemux/tv.h" extern int tv_param_on; extern tvi_handle_t *tv_handler; #endif //**************************************************************************// // Playtree //**************************************************************************// #include "playtree.h" play_tree_t* playtree; #define PT_NEXT_ENTRY 1 #define PT_PREV_ENTRY -1 #define PT_NEXT_SRC 2 #define PT_PREV_SRC -2 #define PT_UP_NEXT 3 #define PT_UP_PREV -3 //**************************************************************************// // Config //**************************************************************************// m_config_t* mconfig; /************************************************************************** Video accelerated architecture **************************************************************************/ vo_vaa_t vo_vaa; //**************************************************************************// // Config file //**************************************************************************// static int cfg_inc_verbose(struct config *conf){ ++verbose; return 0;} static int cfg_include(struct config *conf, char *filename){ return m_config_parse_config_file(mconfig, filename); } #include "get_path.c" //**************************************************************************// //**************************************************************************// // Input media streaming & demultiplexer: //**************************************************************************// static int max_framesize=0; #include "stream.h" #include "demuxer.h" #include "stheader.h" #include "parse_es.h" #include "dec_audio.h" #include "dec_video.h" //**************************************************************************// //**************************************************************************// // Common FIFO functions, and keyboard/event FIFO code #include "fifo.c" int use_stdin=0; //**************************************************************************// static vo_functions_t *video_out=NULL; ao_functions_t *audio_out=NULL; // benchmark: double video_time_usage=0; double vout_time_usage=0; static double audio_time_usage=0; static int total_time_usage_start=0; int benchmark=0; static unsigned bench_dropped_frames=0; // static int play_in_bg=0; // options: static int auto_quality=0; static int output_quality=0; int use_gui=0; int osd_level=2; // seek: char *seek_to_sec=NULL; off_t seek_to_byte=0; off_t step_sec=0; int loop_times=-1; float rel_seek_secs=0; int abs_seek_pos=0; // codecs: int has_audio=1; int has_video=1; char *audio_codec=NULL; // override audio codec char *video_codec=NULL; // override video codec int audio_family=-1; // override audio codec family int video_family=-1; // override video codec family // IMHO this stuff is no longer of use, or is there a special // reason why dshow should be completely disabled? - atmos :: // yes, people without working c++ compiler can disable it - A'rpi #ifdef USE_DIRECTSHOW int allow_dshow=1; #else int allow_dshow=0; #endif // streaming: int audio_id=-1; int video_id=-1; int dvdsub_id=-1; int vobsub_id=-1; char* audio_lang=NULL; char* dvdsub_lang=NULL; static char* spudec_ifo=NULL; static int vcd_track=0; // cache2: static int stream_cache_size=0; #ifdef USE_STREAM_CACHE extern int cache_fill_status; #else #define cache_fill_status 0 #endif // dump: static char *stream_dump_name="stream.dump"; static int stream_dump_type=0; // A-V sync: static float default_max_pts_correction=-1;//0.01f; static float max_pts_correction=0;//default_max_pts_correction; static float c_total=0; static float audio_delay=0; static int dapsync=0; static int softsleep=0; static float force_fps=0; static int force_srate=0; static int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode static int play_n_frames=-1; // screen info: char* video_driver=NULL; //"mga"; // default char* audio_driver=NULL; // libvo opts: (defiend at libmpcodecs/vd.c) extern int opt_screen_size_x; extern int opt_screen_size_y; extern int screen_size_xy; extern float movie_aspect; extern int fullscreen; extern int vidmode; extern int softzoom; extern int flip; extern int vo_flags; // sub: char *font_name=NULL; float font_factor=0.75; char *sub_name=NULL; float sub_delay=0; float sub_fps=0; int sub_auto = 1; char *vobsub_name=NULL; /*DSP!!char *dsp=NULL;*/ extern char *vo_subdevice; extern char *ao_subdevice; static stream_t* stream=NULL; char* current_module=NULL; // for debugging #ifdef HAVE_RTC int nortc; #endif static unsigned int inited_flags=0; #define INITED_VO 1 #define INITED_AO 2 #define INITED_GUI 4 #define INITED_GETCH2 8 #define INITED_LIRC 16 #define INITED_SPUDEC 32 #define INITED_STREAM 64 #define INITED_INPUT 128 #define INITED_ALL 0xFFFF void uninit_player(unsigned int mask){ mask=inited_flags&mask; mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n*** uninit(0x%X)\n",mask); if(mask&INITED_STREAM){ inited_flags&=~INITED_STREAM; current_module="uninit_stream"; if(stream) free_stream(stream); stream=NULL; } if(mask&INITED_GETCH2){ inited_flags&=~INITED_GETCH2; current_module="uninit_getch2"; mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[uninit getch2]]]\n"); // restore terminal: getch2_disable(); } if (mask&INITED_SPUDEC){ inited_flags&=~INITED_SPUDEC; current_module="uninit_spudec"; spudec_free(vo_spudec); vo_spudec=NULL; } if(mask&INITED_VO){ inited_flags&=~INITED_VO; current_module="uninit_vo"; video_out->uninit(); video_out=NULL; } if(mask&INITED_AO){ inited_flags&=~INITED_AO; current_module="uninit_ao"; audio_out->uninit(); audio_out=NULL; } #ifdef HAVE_NEW_GUI if(mask&INITED_GUI){ inited_flags&=~INITED_GUI; current_module="uninit_gui"; guiDone(); } #endif #if defined(HAVE_LIRC) && ! defined(HAVE_NEW_INPUT) if(mask&INITED_LIRC){ inited_flags&=~INITED_LIRC; current_module="uninit_lirc"; lirc_mp_cleanup(); } #endif #ifdef HAVE_NEW_INPUT if(mask&INITED_INPUT){ inited_flags&=INITED_INPUT; current_module="uninit_input"; mp_input_uninit(); } #endif current_module=NULL; } void exit_player(char* how){ uninit_player(INITED_ALL); current_module="exit_player"; if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Exiting,mp_gettext(how)); mp_msg(MSGT_CPLAYER,MSGL_DBG2,"max framesize was %d bytes\n",max_framesize); exit(1); } void exit_sighandler(int x){ static int sig_count=0; ++sig_count; if(sig_count==2) exit(1); if(sig_count>2){ // can't stop :( kill(getpid(),SIGKILL); } mp_msg(MSGT_CPLAYER,MSGL_FATAL,"\n" MSGTR_IntBySignal,x, current_module?current_module:mp_gettext("unknown") ); switch(x){ case SIGINT: case SIGQUIT: case SIGTERM: case SIGKILL: break; // killed from keyboard (^C) or killed [-9] case SIGILL: #ifdef RUNTIME_CPUDETECT mp_msg(MSGT_CPLAYER,MSGL_FATAL,"- MPlayer crashed by 'Illegal Instruction'. It may be a bug in our new runtime cpu-detection code... please read DOCS/bugreports.html\n"); #else mp_msg(MSGT_CPLAYER,MSGL_FATAL,"- MPlayer crashed by 'Illegal Instruction'. It usually happens when you run it on different CPU than it was compiled for. Verify this!\n"); #endif case SIGFPE: case SIGSEGV: mp_msg(MSGT_CPLAYER,MSGL_FATAL,"- MPlayer crashed by bad usage of CPU/FPU/RAM. Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and disassembly. For details, see DOCS/bugreports.html section 5.b.\n"); default: mp_msg(MSGT_CPLAYER,MSGL_FATAL,"- MPlayer crashed. This shouldn't happen. It can be a bug in the MPlayer code _or_ in your drivers _or_ in your gcc version. If you think it's MPlayer's fault, please read DOCS/bugreports.html and follow instructions there. We can't and won't help unless you provide these informations when reporting a possible bug.\n"); } exit_player(NULL); } //extern void write_avi_header_1(FILE *f,int fcc,float fps,int width,int height); extern void mp_register_options(m_config_t* cfg); #include "mixer.h" #include "cfg-mplayer.h" void parse_cfgfiles( m_config_t* conf ) { char *conffile; int conffile_fd; if (m_config_parse_config_file(conf, "/etc/mplayer.conf") < 0) exit(1); if ((conffile = get_path("")) == NULL) { mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir); } else { mkdir(conffile, 0777); free(conffile); if ((conffile = get_path("config")) == NULL) { mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem); } else { if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) { mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile); write(conffile_fd, default_config, strlen(default_config)); close(conffile_fd); } if (m_config_parse_config_file(conf, conffile) < 0) exit(1); free(conffile); } } } // When libmpdemux perform a blocking operation (network connection or cache filling) // if the operation fail we use this function to check if it was interrupted by the user. // The function return a new value for eof. static int libmpdemux_was_interrupted(int eof) { #ifdef HAVE_NEW_INPUT mp_cmd_t* cmd; if((cmd = mp_input_get_cmd(0,0)) != NULL) { switch(cmd->id) { case MP_CMD_QUIT: exit_player(MSGTR_Exit_quit); case MP_CMD_PLAY_TREE_STEP: { eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY; } break; case MP_CMD_PLAY_TREE_UP_STEP: { eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV; } break; case MP_CMD_PLAY_ALT_SRC_STEP: { eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC; } break; } mp_cmd_free(cmd); } return eof; #else return 0; #endif } int main(int argc,char* argv[], char *envp[]){ #ifdef USE_SUB static subtitle* subtitles=NULL; float sub_last_pts = -303; #endif static demuxer_t *demuxer=NULL; static demux_stream_t *d_audio=NULL; static demux_stream_t *d_video=NULL; static demux_stream_t *d_dvdsub=NULL; static sh_audio_t *sh_audio=NULL; static sh_video_t *sh_video=NULL; // for multifile support: play_tree_iter_t* playtree_iter = NULL; char* filename=NULL; //"MI2-Trailer.avi"; int file_format=DEMUXER_TYPE_UNKNOWN; int delay_corrected=1; //char* title="MPlayer"; // movie info: int out_fmt=0; int eof=0; int osd_visible=100; int osd_function=OSD_PLAY; int osd_last_pts=-303; int osd_show_av_delay = 0; int osd_show_sub_delay = 0; int v_hw_equ_cap=0; int v_bright=50; int v_cont=50; int v_hue=50; int v_saturation=50; /* For future: int v_red_intensity=0; int v_green_intensity=0; int v_blue_intensity=0; */ int rtc_fd=-1; //float a_frame=0; // Audio int i; int gui_no_filename=0; //vo_tune_info_t vtune; mp_msg_init(); mp_msg_set_level(MSGL_STATUS); mp_msg(MSGT_CPLAYER,MSGL_INFO,banner_text); // memset(&vtune,0,sizeof(vo_tune_info_t)); /* Test for cpu capabilities (and corresponding OS support) for optimizing */ #ifdef ARCH_X86 GetCpuCaps(&gCpuCaps); mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: Type: %d MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n", gCpuCaps.cpuType,gCpuCaps.hasMMX,gCpuCaps.hasMMX2, gCpuCaps.has3DNow, gCpuCaps.has3DNowExt, gCpuCaps.hasSSE, gCpuCaps.hasSSE2); #ifdef RUNTIME_CPUDETECT mp_msg(MSGT_CPLAYER,MSGL_INFO,"Compiled with RUNTIME CPU Detection - warning, it's not optimal! To get best performance, recompile mplayer from sources with --disable-runtime-cpudetection\n"); #else mp_msg(MSGT_CPLAYER,MSGL_INFO,"Compiled for x86 CPU with features:"); #ifdef HAVE_MMX mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX"); #endif #ifdef HAVE_MMX2 mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX2"); #endif #ifdef HAVE_3DNOW mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNow"); #endif #ifdef HAVE_3DNOWEX mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNowEx"); #endif #ifdef HAVE_SSE mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE"); #endif mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n"); #endif #endif if ( argv[0] ) if(!strcmp(argv[0],"gmplayer") || (strrchr(argv[0],'/') && !strcmp(strrchr(argv[0],'/'),"/gmplayer") ) ) use_gui=1; playtree = play_tree_new(); mconfig = m_config_new(playtree); m_config_register_options(mconfig,mplayer_opts); // TODO : add something to let modules register their options mp_register_options(mconfig); parse_cfgfiles(mconfig); if(m_config_parse_command_line(mconfig, argc, argv, envp) < 0) exit(1); // error parsing cmdline playtree = play_tree_cleanup(playtree); if(playtree) { playtree_iter = play_tree_iter_new(playtree,mconfig); if(playtree_iter) { if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) { play_tree_iter_free(playtree_iter); playtree_iter = NULL; } filename = play_tree_iter_get_file(playtree_iter,1); } } #ifndef HAVE_NEW_GUI if(use_gui){ mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoGui); use_gui=0; } #else if(use_gui && !vo_init()){ mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_GuiNeedsX); use_gui=0; } #endif if(video_driver && strcmp(video_driver,"help")==0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, "Available video output drivers:\n"); i=0; while (video_out_drivers[i]) { const vo_info_t *info = video_out_drivers[i++]->get_info (); printf("\t%s\t%s\n", info->short_name, info->name); } printf("\n"); exit(0); } if(audio_driver && strcmp(audio_driver,"help")==0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, "Available audio output drivers:\n"); i=0; while (audio_out_drivers[i]) { const ao_info_t *info = audio_out_drivers[i++]->info; printf("\t%s\t%s\n", info->short_name, info->name); } printf("\n"); exit(0); } // check codec.conf if(!parse_codec_cfg(get_path("codecs.conf"))){ if(!parse_codec_cfg(CONFDIR"/codecs.conf")){ mp_msg(MSGT_CPLAYER,MSGL_HINT,MSGTR_CopyCodecsConf); exit(0); // From unknown reason a hangup occurs here :(((((( } } if(audio_codec && strcmp(audio_codec,"help")==0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, "Available audio codecs:\n"); list_codecs(1); printf("\n"); exit(0); } if(video_codec && strcmp(video_codec,"help")==0){ mp_msg(MSGT_CPLAYER, MSGL_INFO, "Available video codecs:\n"); list_codecs(0); printf("\n"); exit(0); } if(!filename && !vcd_track && !dvd_title && !dvd_nav && !tv_param_on){ if(!use_gui){ // no file/vcd/dvd -> show HELP: mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text); exit(0); } else gui_no_filename=1; } // Many users forget to include command line in bugreports... if(verbose){ mp_msg(MSGT_CPLAYER, MSGL_INFO, "CommandLine:"); for(i=1;i1); if(!vo_font) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,font_name); } else { // try default: vo_font=read_font_desc(get_path("font/font.desc"),font_factor,verbose>1); if(!vo_font) vo_font=read_font_desc(DATADIR"/font/font.desc",font_factor,verbose>1); } #endif #if defined(HAVE_LIRC) && ! defined(HAVE_NEW_INPUT) lirc_mp_setup(); inited_flags|=INITED_LIRC; #endif #ifdef HAVE_RTC if(!nortc) { if ((rtc_fd = open("/dev/rtc", O_RDONLY)) < 0) mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error: %s\n", strerror(errno)); else { unsigned long irqp; /* if (ioctl(rtc_fd, RTC_IRQP_SET, _) < 0) { */ if (ioctl(rtc_fd, RTC_IRQP_READ, &irqp) < 0) { mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error in ioctl (rtc_irqp_read): %s\n", strerror(errno)); close (rtc_fd); rtc_fd = -1; } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) { /* variable only by the root */ mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC init error in ioctl (rtc_pie_on): %s\n", strerror(errno)); close (rtc_fd); rtc_fd = -1; } else mp_msg(MSGT_CPLAYER, MSGL_INFO, "Using Linux's hardware RTC timing (%ldHz)\n", irqp); } } #ifdef HAVE_NEW_GUI // breaks DGA and SVGAlib and VESA drivers: --A'rpi // and now ? -- Pontscho if(use_gui) setuid( getuid() ); // strongly test, please check this. #endif if(rtc_fd<0) #endif mp_msg(MSGT_CPLAYER, MSGL_INFO, "Using %s timing\n",softsleep?"software":"usleep()"); #ifdef USE_TERMCAP if ( !use_gui ) load_termcap(NULL); // load key-codes #endif // ========== Init keyboard FIFO (connection to libvo) ============ make_pipe(&keyb_fifo_get,&keyb_fifo_put); // Init input system #ifdef HAVE_NEW_INPUT current_module = "init_input"; mp_input_init(); if(keyb_fifo_get > 0) mp_input_add_key_fd(keyb_fifo_get,1,NULL,NULL); if(slave_mode) mp_input_add_cmd_fd(0,1,NULL,NULL); else if(!use_stdin) mp_input_add_key_fd(0,1,NULL,NULL); inited_flags|=INITED_INPUT; current_module = NULL; #endif //========= Catch terminate signals: ================ // terminate requests: signal(SIGTERM,exit_sighandler); // kill signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed signal(SIGINT,exit_sighandler); // Interrupt from keyboard signal(SIGQUIT,exit_sighandler); // Quit from keyboard #ifdef ENABLE_SIGHANDLER // fatal errors: signal(SIGBUS,exit_sighandler); // bus error signal(SIGSEGV,exit_sighandler); // segfault signal(SIGILL,exit_sighandler); // illegal instruction signal(SIGFPE,exit_sighandler); // floating point exc. signal(SIGABRT,exit_sighandler); // abort() #endif // ******************* Now, let's see the per-file stuff ******************** #ifdef HAVE_NEW_GUI if(use_gui){ guiInit( argc,argv,envp ); inited_flags|=INITED_GUI; guiGetEvent( guiCEvent,(char *)((gui_no_filename) ? 0 : 1) ); } #endif play_next_file: // We must enable getch2 here to be able to interrupt network connection // or cache filling if(!use_stdin && !slave_mode){ getch2_enable(); // prepare stdin for hotkeys... inited_flags|=INITED_GETCH2; mp_msg(MSGT_CPLAYER,MSGL_DBG2,"\n[[[init getch2]]]\n"); } #ifdef HAVE_NEW_GUI if ( use_gui ) { #ifdef USE_DVDREAD if ( guiIntfStruct.DVDChanged ) { guiIntfStruct.DVDChanged=0; guiGetEvent( guiCEvent,(char *)guiSetPlay ); filename="/dev/dvd"; goto play_dvd; } #endif while(guiIntfStruct.Playing!=1){ #ifdef HAVE_NEW_INPUT mp_cmd_t* cmd; #endif usleep(20000); guiEventHandling(); #ifdef HAVE_NEW_INPUT if ( (cmd = mp_input_get_cmd(0,0)) != NULL) guiGetEvent( guiIEvent,(char *)cmd->id ); #endif } play_dvd: #ifdef USE_SUB if ( guiIntfStruct.SubtitleChanged || !guiIntfStruct.FilenameChanged ) { if ( ( guiIntfStruct.Subtitlename )&&( guiIntfStruct.Subtitlename[0] != 0 ) ) sub_name=guiIntfStruct.Subtitlename; guiIntfStruct.SubtitleChanged=0; } #endif if ( guiIntfStruct.FilenameChanged || !filename ) { play_tree_t * entry = play_tree_new(); play_tree_add_file( entry,guiIntfStruct.Filename ); if ( playtree ) play_tree_free_list( playtree->child,1 ); else playtree=play_tree_new(); play_tree_set_child( playtree,entry ); if(playtree) { playtree_iter = play_tree_iter_new(playtree,mconfig); if(playtree_iter) { if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) { play_tree_iter_free(playtree_iter); playtree_iter = NULL; } filename = play_tree_iter_get_file(playtree_iter,1); } } // filename=playtree->child->files[0]; guiIntfStruct.FilenameChanged=0; } } #endif if(filename) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Playing, filename); current_module="vobsub"; if (vobsub_name){ vo_vobsub=vobsub_open(vobsub_name,1); if(vo_vobsub==NULL) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,vobsub_name); }else if(sub_auto && filename && (strlen(filename)>=5)){ /* try to autodetect vobsub from movie filename ::atmos */ char *buf = malloc((strlen(filename)-3) * sizeof(char)); memset(buf,0,strlen(filename)-3); // make sure string is terminated strncpy(buf, filename, strlen(filename)-4); vo_vobsub=vobsub_open(buf,0); free(buf); } if(vo_vobsub) sub_auto=0; // don't do autosub for textsubs if vobsub found stream=NULL; demuxer=NULL; d_audio=NULL; d_video=NULL; sh_audio=NULL; sh_video=NULL; // check video_out driver name: if (video_driver) if ((i = strcspn(video_driver, ":")) > 0) { size_t i2 = strlen(video_driver); if (video_driver[i] == ':') { vo_subdevice = malloc(i2-i); if (vo_subdevice != NULL) strncpy(vo_subdevice, (char *)(video_driver+i+1), i2-i); video_driver[i] = '\0'; } // printf("video_driver: %s, subdevice: %s\n", video_driver, vo_subdevice); } if(!video_driver) video_out=video_out_drivers[0]; else for (i=0; video_out_drivers[i] != NULL; i++){ const vo_info_t *info = video_out_drivers[i]->get_info (); if(strcmp(info->short_name,video_driver) == 0){ video_out = video_out_drivers[i];break; } } if(!video_out){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_InvalidVOdriver,video_driver?video_driver:"?"); exit_player(MSGTR_Exit_error); } // check audio_out driver name: if (audio_driver) if ((i = strcspn(audio_driver, ":")) > 0) { size_t i2 = strlen(audio_driver); if (audio_driver[i] == ':') { ao_subdevice = malloc(i2-i); if (ao_subdevice != NULL) strncpy(ao_subdevice, (char *)(audio_driver+i+1), i2-i); audio_driver[i] = '\0'; } // printf("audio_driver: %s, subdevice: %s\n", audio_driver, ao_subdevice); } if(!audio_driver) audio_out=audio_out_drivers[0]; else for (i=0; audio_out_drivers[i] != NULL; i++){ const ao_info_t *info = audio_out_drivers[i]->info; if(strcmp(info->short_name,audio_driver) == 0){ audio_out = audio_out_drivers[i];break; } } if (!audio_out){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_InvalidAOdriver,audio_driver); exit_player(MSGTR_Exit_error); } /* Initailize audio plugin interface if used */ if(ao_plugin_cfg.plugin_list){ for (i=0; audio_out_drivers[i] != NULL; i++){ const ao_info_t *info = audio_out_drivers[i]->info; if(strcmp(info->short_name,"plugin") == 0){ audio_out_drivers[i]->control(AOCONTROL_SET_PLUGIN_DRIVER,(int)audio_out); audio_out = audio_out_drivers[i]; break; } } } //============ Open & Sync STREAM --- fork cache2 ==================== current_module="open_stream"; stream=open_stream(filename,vcd_track,&file_format); if(!stream) { // error... eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY); goto goto_next_file; } inited_flags|=INITED_STREAM; if(stream->type == STREAMTYPE_PLAYLIST) { play_tree_t* entry; // Handle playlist current_module="handle_playlist"; mp_msg(MSGT_CPLAYER,MSGL_V,"Parsing playlist %s...\n",filename); entry = parse_playtree(stream); if(!entry) { entry = playtree_iter->tree; if(play_tree_iter_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) { eof = PT_NEXT_ENTRY; goto goto_next_file; } if(playtree_iter->tree == entry ) { // Loop with a single file if(play_tree_iter_up_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) { eof = PT_NEXT_ENTRY; goto goto_next_file; } } play_tree_remove(entry,1,1); eof = PT_NEXT_SRC; goto goto_next_file; } play_tree_insert_entry(playtree_iter->tree,entry); play_tree_set_params_from(entry,playtree_iter->tree); entry = playtree_iter->tree; if(play_tree_iter_step(playtree_iter,1,0) != PLAY_TREE_ITER_ENTRY) { eof = PT_NEXT_ENTRY; goto goto_next_file; } play_tree_remove(entry,1,1); eof = PT_NEXT_SRC; goto goto_next_file; } stream->start_pos+=seek_to_byte; #ifdef HAVE_LIBCSS current_module="libcss"; if (dvdimportkey) { if (dvd_import_key(dvdimportkey)) { mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorDVDkey); exit_player(MSGTR_Exit_error); } mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CmdlineDVDkey); } if (dvd_auth_device) { if (dvd_auth(dvd_auth_device,filename)) { mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Error in DVD auth...\n"); exit_player(MSGTR_Exit_error); } mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_DVDauthOk); } #endif if(stream_dump_type==5){ unsigned char buf[4096]; int len; FILE *f; current_module="dumpstream"; stream_reset(stream); stream_seek(stream,stream->start_pos); f=fopen(stream_dump_name,"wb"); if(!f){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile); exit_player(MSGTR_Exit_error); } while(!stream->eof){ len=stream_read(stream,buf,4096); if(len>0) fwrite(buf,len,1,f); } fclose(f); mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped); exit_player(MSGTR_Exit_eof); } #ifdef USE_DVDREAD if(stream->type==STREAMTYPE_DVD){ current_module="dvd lang->id"; if(audio_lang && audio_id==-1) audio_id=dvd_aid_from_lang(stream,audio_lang); if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvd_sid_from_lang(stream,dvdsub_lang); current_module=NULL; } #endif #ifdef USE_DVDNAV if (dvd_nav) stream_cache_size=0; // must disable caching... #endif // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts) if(stream_cache_size){ current_module="enable_cache"; if(!stream_enable_cache(stream,stream_cache_size*1024,stream_cache_size*1024/5,stream_cache_size*1024/20)) if((eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) goto goto_next_file; } //============ Open DEMUXERS --- DETECT file type ======================= if(!has_audio) audio_id=-2; // do NOT read audio packets... current_module="demux_open"; demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id); if(!demuxer) goto goto_next_file; // exit_player(MSGTR_Exit_error); // ERROR current_module="demux_open2"; //file_format=demuxer->file_format; d_audio=demuxer->audio; d_video=demuxer->video; d_dvdsub=demuxer->sub; // DUMP STREAMS: if((stream_dump_type)&&(stream_dump_type!=4)){ FILE *f; demux_stream_t *ds=NULL; current_module="dump"; // select stream to dump switch(stream_dump_type){ case 1: ds=d_audio;break; case 2: ds=d_video;break; case 3: ds=d_dvdsub;break; } if(!ds){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_DumpSelectedSteramMissing); exit_player(MSGTR_Exit_error); } // disable other streams: if(d_audio && d_audio!=ds) {ds_free_packs(d_audio); d_audio->id=-2; } if(d_video && d_video!=ds) {ds_free_packs(d_video); d_video->id=-2; } if(d_dvdsub && d_dvdsub!=ds) {ds_free_packs(d_dvdsub); d_dvdsub->id=-2; } // let's dump it! f=fopen(stream_dump_name,"wb"); if(!f){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CantOpenDumpfile); exit_player(MSGTR_Exit_error); } while(!ds->eof){ unsigned char* start; int in_size=ds_get_packet(ds,&start); if( (demuxer->file_format==DEMUXER_TYPE_AVI || demuxer->file_format==DEMUXER_TYPE_ASF || demuxer->file_format==DEMUXER_TYPE_MOV) && stream_dump_type==2) fwrite(&in_size,1,4,f); if(in_size>0) fwrite(start,in_size,1,f); } fclose(f); mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CoreDumped); exit_player(MSGTR_Exit_eof); } sh_audio=d_audio->sh; sh_video=d_video->sh; if(sh_video){ current_module="video_read_properties"; if(!video_read_properties(sh_video)) { mp_msg(MSGT_CPLAYER,MSGL_ERR,"Video: can't read properties\n"); sh_video=d_video->sh=NULL; } else { mp_msg(MSGT_CPLAYER,MSGL_INFO,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n", demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h, sh_video->fps,sh_video->frametime ); vo_fps = sh_video->fps; /* need to set fps here for output encoders to pick it up in their init */ if(force_fps){ sh_video->fps=force_fps; sh_video->frametime=1.0f/sh_video->fps; vo_fps = force_fps; } if(!sh_video->fps && !force_fps){ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified); sh_video=d_video->sh=NULL; } } } fflush(stdout); if(!sh_video && !sh_audio){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,"No stream found\n"); goto goto_next_file; // exit_player(MSGTR_Exit_error); } /* display clip info */ demux_info_print(demuxer); //================== Read SUBTITLES (DVD & TEXT) ========================== if(sh_video){ if (spudec_ifo) { unsigned int palette[16], width, height; current_module="spudec_init_vobsub"; if (vobsub_parse_ifo(spudec_ifo, palette, &width, &height, 1) >= 0) vo_spudec=spudec_new_scaled(palette, sh_video->disp_w, sh_video->disp_h); } #ifdef USE_DVDNAV if (vo_spudec==NULL && stream->type==STREAMTYPE_DVDNAV) { current_module="spudec_init_dvdnav"; vo_spudec=spudec_new_scaled(dvdnav_stream_get_palette((dvdnav_priv_t*)(stream->priv)), sh_video->disp_w, sh_video->disp_h); } #endif #ifdef USE_DVDREAD if (vo_spudec==NULL && stream->type==STREAMTYPE_DVD) { current_module="spudec_init_dvdread"; vo_spudec=spudec_new_scaled(((dvd_priv_t *)(stream->priv))->cur_pgc->palette, sh_video->disp_w, sh_video->disp_h); } #endif if (vo_spudec==NULL) { current_module="spudec_init_normal"; vo_spudec=spudec_new_scaled(NULL, sh_video->disp_w, sh_video->disp_h); } if (vo_spudec!=NULL) inited_flags|=INITED_SPUDEC; #ifdef USE_SUB // after reading video params we should load subtitles because // we know fps so now we can adjust subtitles time to ~6 seconds AST // check .sub current_module="read_subtitles_file"; if(sub_name){ subtitles=sub_read_file(sub_name, sh_video->fps); if(!subtitles) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,sub_name); } else if(sub_auto) { // auto load sub file ... subtitles=sub_read_file( filename ? sub_filename( get_path("sub/"), filename ) : "default.sub", sh_video->fps ); } if(subtitles && stream_dump_type==3) list_sub_file(subtitles); if(subtitles && stream_dump_type==4) dump_mpsub(subtitles, sh_video->fps); #endif } //================== Init AUDIO (codec) ========================== current_module="find_audio_codec"; if(sh_audio){ // Go through the codec.conf and find the best codec... sh_audio->codec=NULL; if(audio_family!=-1) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_TryForceAudioFmt,audio_family); while(1){ sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1); if(!sh_audio->codec){ if(audio_family!=-1) { sh_audio->codec=NULL; /* re-search */ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantFindAfmtFallback); audio_family=-1; continue; } mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantFindAudioCodec,sh_audio->format); mp_msg(MSGT_CPLAYER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); sh_audio=d_audio->sh=NULL; break; } if(audio_codec && strcmp(sh_audio->codec->name,audio_codec)) continue; else if(audio_family!=-1 && sh_audio->codec->driver!=audio_family) continue; mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s audio codec: [%s] drv:%d (%s)\n", audio_codec?mp_gettext("Forcing"):mp_gettext("Detected"),sh_audio->codec->name,sh_audio->codec->driver,sh_audio->codec->info); break; } } current_module="init_audio_codec"; if(sh_audio){ mp_msg(MSGT_CPLAYER,MSGL_V,"Initializing audio codec...\n"); if(!init_audio(sh_audio)){ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CouldntInitAudioCodec); sh_audio=d_audio->sh=NULL; } else { mp_msg(MSGT_CPLAYER,MSGL_INFO,"AUDIO: srate=%d chans=%d bps=%d sfmt=0x%X ratio: %d->%d\n",sh_audio->samplerate,sh_audio->channels,sh_audio->samplesize, sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps); } } //================== Init VIDEO (codec & libvo) ========================== if(!sh_video) goto main; current_module="preinit_libvo"; vo_config_count=0; if((video_out->preinit(vo_subdevice))!=0){ mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Error opening/initializing the selected video_out (-vo) device!\n"); goto goto_next_file; // exit_player(MSGTR_Exit_error); } sh_video->video_out=video_out; inited_flags|=INITED_VO; current_module="init_video_filters"; sh_video->vfilter=vf_open_filter(NULL,"vo",video_out); sh_video->vfilter=append_filters(sh_video->vfilter); current_module="init_video_codec"; mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n"); // Go through the codec.conf and find the best codec... sh_video->inited=0; codecs_reset_selection(0); if(video_codec){ // forced codec by name: mp_msg(MSGT_CPLAYER,MSGL_INFO,"Forced video codec: %s\n",video_codec); init_video(sh_video,video_codec,-1,-1); } else { int status; // try in stability order: UNTESTED, WORKING, BUGGY, BROKEN if(video_family>=0) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_TryForceVideoFmt,video_family); for(status=CODECS_STATUS__MAX;status>=CODECS_STATUS__MIN;--status){ if(video_family>=0) // try first the preferred codec family: if(init_video(sh_video,NULL,video_family,status)) break; if(init_video(sh_video,NULL,-1,status)) break; } } if(!sh_video->inited){ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantFindVideoCodec,sh_video->format); mp_msg(MSGT_CPLAYER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n"); if(!sh_audio) goto goto_next_file; sh_video = d_video->sh = NULL; goto main; // exit_player(MSGTR_Exit_error); } mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s video codec: [%s] drv:%d prio:%d (%s)\n", video_codec?mp_gettext("Forcing"):mp_gettext("Detected"),sh_video->codec->name,sh_video->codec->driver,sh_video->codec->priority!=-1?sh_video->codec->priority:0,sh_video->codec->info); mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n"); if(auto_quality>0){ // Auto quality option enabled output_quality=get_video_quality_max(sh_video); if(auto_quality>output_quality) auto_quality=output_quality; else output_quality=auto_quality; mp_msg(MSGT_CPLAYER,MSGL_V,"AutoQ: setting quality to %d\n",output_quality); set_video_quality(sh_video,output_quality); } // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============ #ifdef HAVE_NEW_GUI if ( use_gui ) { mplResizeToMovieSize( sh_video->disp_w,sh_video->disp_h ); guiIntfStruct.MovieWidth=sh_video->disp_w; guiIntfStruct.MovieHeight=sh_video->disp_h; guiIntfStruct.StreamType=stream->type; guiSetFilename( guiIntfStruct.Filename,filename ); if ( sh_audio ) guiIntfStruct.AudioType=sh_audio->channels; else guiIntfStruct.AudioType=0; #ifdef USE_DVDREAD if ( stream->type == STREAMTYPE_DVD ) { dvd_priv_t * dvdp = stream->priv; guiIntfStruct.DVD.titles=dvdp->vmg_file->tt_srpt->nr_of_srpts; guiIntfStruct.DVD.chapters=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_ptts; guiIntfStruct.DVD.angles=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_angles; guiIntfStruct.DVD.nr_of_audio_channels=dvdp->nr_of_channels; memcpy( guiIntfStruct.DVD.audio_streams,dvdp->audio_streams,sizeof( dvdp->audio_streams ) ); guiIntfStruct.DVD.nr_of_subtitles=dvdp->nr_of_subtitles; memcpy( guiIntfStruct.DVD.subtitles,dvdp->subtitles,sizeof( dvdp->subtitles ) ); guiIntfStruct.DVD.current_title=dvd_title + 1; guiIntfStruct.DVD.current_chapter=dvd_chapter + 1; guiIntfStruct.DVD.current_angle=dvd_angle + 1; guiIntfStruct.Track=dvd_title + 1; } #endif } #endif current_module="init_vo_vaa"; if(video_out->control(VOCTRL_QUERY_VAA, &vo_vaa)==VO_NOTIMPL) memset(&vo_vaa,0,sizeof(vo_vaa_t)); /* get_hw_eq */ if(vo_vaa.get_video_eq) { vidix_video_eq_t veq; if(vo_vaa.get_video_eq(&veq) == 0) { v_hw_equ_cap = veq.cap; if(veq.cap & VEQ_CAP_BRIGHTNESS) v_bright = veq.brightness/10; if(veq.cap & VEQ_CAP_CONTRAST) v_cont = veq.contrast/10; if(veq.cap & VEQ_CAP_HUE) v_hue = veq.hue/10; if(veq.cap & VEQ_CAP_SATURATION) v_saturation=veq.saturation/10; /* v_red_intensity=veq.red_intensity/10; v_green_intensity=veq.green_intensity/10; v_blue_intensity=veq.blue_intensity/10; */ } } //================== MAIN: ========================== main: if(!sh_video) osd_level = 0; fflush(stdout); { //int frame_corr_num=0; // //float v_frame=0; // Video float time_frame=0; // Timer int force_redraw=0; //float num_frames=0; // number of frames played int grab_frames=0; char osd_text_buffer[64]; int drop_frame=0; int drop_frame_cnt=0; int too_slow_frame_cnt=0; int too_fast_frame_cnt=0; // for auto-quality: float AV_delay=0; // average of A-V timestamp differences double cvideo_base_vtime; double cvideo_base_vframe; double vdecode_time; unsigned int lastframeout_ts; float time_frame_corr_avg=0; //================ SETUP AUDIO ========================== if(sh_audio){ const ao_info_t *info=audio_out->info; current_module="setup_audio"; mp_msg(MSGT_CPLAYER,MSGL_INFO,"AO: [%s] %iHz %s %s\n", info->short_name, force_srate?force_srate:sh_audio->samplerate, sh_audio->channels>1?"Stereo":"Mono", audio_out_format_name(sh_audio->sample_format) ); mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Description: %s\nAO: Author: %s\n", info->name, info->author); if(strlen(info->comment) > 0) mp_msg(MSGT_CPLAYER,MSGL_V,"AO: Comment: %s\n", info->comment); if(!audio_out->init(force_srate?force_srate:sh_audio->samplerate, sh_audio->channels,sh_audio->sample_format,0)){ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotInitAO); sh_audio=d_audio->sh=NULL; if(sh_video == NULL) goto goto_next_file; } else { inited_flags|=INITED_AO; } } current_module="av_init"; if(sh_video) sh_video->timer=0; if(sh_audio) sh_audio->timer=-audio_delay; if(!sh_audio){ mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_NoSound); if(verbose) mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused audio chunks\n",d_audio->packs); ds_free_packs(d_audio); // free buffered chunks d_audio->id=-2; // do not read audio chunks uninit_player(INITED_AO); // close device } if(!sh_video){ mp_msg(MSGT_CPLAYER,MSGL_INFO,"Video: no video!!!\n"); if(verbose) mp_msg(MSGT_CPLAYER,MSGL_V,"Freeing %d unused video chunks\n",d_video->packs); ds_free_packs(d_video); d_video->id=-2; uninit_player(INITED_VO); } if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf! if(force_fps){ vo_fps = sh_video->fps=force_fps; sh_video->frametime=1.0f/sh_video->fps; mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_FPSforced,sh_video->fps,sh_video->frametime); } //==================== START PLAYING ======================= mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);fflush(stdout); InitTimer(); #ifdef USE_DVDNAV if (dvd_nav && stream->type==STREAMTYPE_DVDNAV) { dvdnav_stream_fullstart((dvdnav_priv_t *)stream->priv); } #endif total_time_usage_start=GetTimer(); audio_time_usage=0; video_time_usage=0; vout_time_usage=0; while(!eof){ // unsigned int aq_total_time=GetTimer(); float aq_sleep_time=0; if(play_n_frames>=0){ --play_n_frames; if(play_n_frames<0) eof = PT_NEXT_ENTRY; } /*========================== PLAY AUDIO ============================*/ while(sh_audio){ unsigned int t; double tt; int playsize; ao_data.pts=sh_audio->timer*90000.0; playsize=audio_out->get_space(); if(!playsize) { if(sh_video) break; // buffer is full, do not block here!!! usec_sleep(10000); // Wait a tick before retry continue; } if(playsize>MAX_OUTBURST) playsize=MAX_OUTBURST; // we shouldn't exceed it! //if(playsize>outburst) playsize=outburst; // Update buffer if needed current_module="decode_audio"; // Enter AUDIO decoder module t=GetTimer(); while(sh_audio->a_buffer_leneof){ int ret=decode_audio(sh_audio,&sh_audio->a_buffer[sh_audio->a_buffer_len], playsize-sh_audio->a_buffer_len,sh_audio->a_buffer_size-sh_audio->a_buffer_len); if(ret>0) sh_audio->a_buffer_len+=ret; else { if(!sh_video) eof = PT_NEXT_ENTRY; break; } } current_module=NULL; // Leave AUDIO decoder module t=GetTimer()-t; tt = t*0.000001f; audio_time_usage+=tt; if(playsize>sh_audio->a_buffer_len) playsize=sh_audio->a_buffer_len; playsize=audio_out->play(sh_audio->a_buffer,playsize,0); if(playsize>0){ sh_audio->a_buffer_len-=playsize; memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[playsize],sh_audio->a_buffer_len); sh_audio->timer+=playsize/(float)(sh_audio->o_bps); } break; } // if(sh_audio) /*========================== UPDATE TIMERS ============================*/ #if 0 if(alsa){ // Use system timer for sync, not audio card/driver time_frame-=GetRelativeTime(); if(time_frame<-0.1 || time_frame>0.1){ time_frame=0; } else { while(time_frame>0.022){ usec_sleep(time_frame-0.022); time_frame-=GetRelativeTime(); } while(time_frame>0.007){ usec_sleep(1000); // sleeps 1 clock tick (10ms)! time_frame-=GetRelativeTime(); } } } #endif if(!sh_video) { if(!quiet) mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A:%6.1f %4.1f%% %d%% \r" ,sh_audio->timer-audio_out->get_delay() ,(sh_audio->timer>0.5)?100.0*audio_time_usage/(double)sh_audio->timer:0 ,cache_fill_status ); if(d_audio->eof && sh_audio->a_buffer_len < ao_data.outburst) eof = PT_NEXT_ENTRY; goto read_input; } /*========================== PLAY VIDEO ============================*/ vo_pts=sh_video->timer*90000.0; vo_fps=sh_video->fps; cvideo_base_vframe=sh_video->timer; cvideo_base_vtime=video_time_usage; if(1) while(1){ float frame_time=0; int blit_frame=0; //-------------------- Decode a frame: ----------------------- vdecode_time=video_time_usage; { unsigned char* start=NULL; int in_size; // get it! current_module="video_read_frame"; in_size=video_read_frame(sh_video,&frame_time,&start,force_fps); if(in_size<0){ eof=1; break; } if(in_size>max_framesize) max_framesize=in_size; // stats // decode: current_module="decode_video"; // printf("Decode! %p %d \n",start,in_size); blit_frame=decode_video(sh_video,start,in_size,drop_frame); } vdecode_time=video_time_usage-vdecode_time; //------------------------ frame decoded. -------------------- //------------------------ add OSD to frame contents --------- current_module="draw_osd"; if(vo_config_count) video_out->draw_osd(); current_module="av_sync"; sh_video->timer+=frame_time; time_frame+=frame_time; // for nosound mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"*** ftime=%5.3f ***\n",frame_time); if(drop_frame){ if(sh_audio && !d_audio->eof){ float delay=audio_out->get_delay(); mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"delay=%f\n",delay); time_frame=sh_video->timer; time_frame-=sh_audio->timer-delay; if(time_frame>-2*frame_time) { drop_frame=0; // stop dropping frames mp_msg(MSGT_AVSYNC,MSGL_DBG2,"\nstop frame drop %.2f\n", time_frame); }else{ ++drop_frame_cnt; if (verbose > 0 && drop_frame_cnt%10 == 0) mp_msg(MSGT_AVSYNC,MSGL_DBG2,"\nstill dropping, %.2f\n", time_frame); } } #ifdef HAVE_NEW_GUI if(use_gui) guiEventHandling(); #endif if(vo_config_count) video_out->check_events(); // check events AST } else { // It's time to sleep... current_module="sleep"; time_frame-=GetRelativeTime(); // reset timer if(sh_audio && !d_audio->eof){ float delay=audio_out->get_delay(); mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"delay=%f\n",delay); if(!dapsync){ /* Arpi's AV-sync */ time_frame=sh_video->timer; time_frame-=sh_audio->timer-delay; // we are out of time... drop next frame! if(time_frame<-2*frame_time){ static int drop_message=0; drop_frame=frame_dropping; // tricky! ++drop_frame_cnt; if(drop_frame_cnt>50 && AV_delay>0.5 && !drop_message){ drop_message=1; mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow); } mp_msg(MSGT_AVSYNC,MSGL_DBG2,"\nframe drop %d, %.2f\n", drop_frame, time_frame); } } else { /* DaP's AV-sync */ float SH_AV_delay; /* SH_AV_delay = sh_video->timer - (sh_audio->timer - (float)((float)delay + sh_audio->a_buffer_len) / (float)sh_audio->o_bps); */ SH_AV_delay = sh_video->timer - (sh_audio->timer - (float)((float)delay) / (float)sh_audio->o_bps); // printf ("audio slp req: %.3f TF: %.3f delta: %.3f (v: %.3f a: %.3f) | ", i, time_frame, // i - time_frame, sh_video->timer, sh_audio->timer - (float)((float)delay / (float)sh_audio->o_bps)); if(SH_AV_delay<-2*frame_time){ static int drop_message=0; drop_frame=frame_dropping; // tricky! ++drop_frame_cnt; if(drop_frame_cnt>50 && AV_delay>0.5 && !drop_message){ drop_message=1; mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow); } mp_msg(MSGT_AVSYNC,MSGL_INFO,"A-V SYNC: FRAMEDROP (SH_AV_delay=%.3f)!\n", SH_AV_delay); mp_msg(MSGT_AVSYNC,MSGL_DBG2,"\nframe drop %d, %.2f\n", drop_frame, time_frame); /* go into unlimited-TF cycle */ time_frame = SH_AV_delay; } else { #define SL_CORR_AVG_LEN 125 /* don't adjust under framedropping */ time_frame_corr_avg = (time_frame_corr_avg * (SL_CORR_AVG_LEN - 1) + (SH_AV_delay - time_frame)) / SL_CORR_AVG_LEN; #define UNEXP_CORR_MAX 0.1 /* limit of unexpected correction between two frames (percentage) */ #define UNEXP_CORR_WARN 1.0 /* warn limit of A-V lag (percentage) */ time_frame += time_frame_corr_avg; // printf ("{%.3f - %.3f}\n", i - time_frame, frame_time + frame_time_corr_avg); if (SH_AV_delay - time_frame < (frame_time + time_frame_corr_avg) * UNEXP_CORR_MAX && SH_AV_delay - time_frame > (frame_time + time_frame_corr_avg) * -UNEXP_CORR_MAX) time_frame = SH_AV_delay; else { if (SH_AV_delay - time_frame > (frame_time + time_frame_corr_avg) * UNEXP_CORR_WARN || SH_AV_delay - time_frame < (frame_time + time_frame_corr_avg) * -UNEXP_CORR_WARN) mp_msg(MSGT_AVSYNC, MSGL_WARN, "WARNING: A-V SYNC LAG TOO LARGE: %.3f {%.3f - %.3f} (too little UNEXP_CORR_MAX?)\n", SH_AV_delay - time_frame, SH_AV_delay, time_frame); time_frame += (frame_time + time_frame_corr_avg) * ((SH_AV_delay > time_frame) ? UNEXP_CORR_MAX : -UNEXP_CORR_MAX); } } /* /start dropframe */ } } else { // NOSOUND: if( (time_frame<-3*frame_time || time_frame>3*frame_time) || benchmark) time_frame=0; } // if(verbose>1)printf("sleep: %5.3f a:%6.3f v:%6.3f \n",time_frame,sh_audio->timer,sh_video->timer); aq_sleep_time+=time_frame; #ifdef HAVE_NEW_GUI if(use_gui) guiEventHandling(); #endif if(!(vo_flags&256)){ // flag 256 means: libvo driver does its timing (dvb card) #ifdef HAVE_RTC if(rtc_fd>=0){ // -------- RTC ----------- while (time_frame > 0.000) { unsigned long long rtc_ts; if (read (rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0) mp_msg(MSGT_CPLAYER, MSGL_ERR, "Linux RTC read error: %s\n", strerror(errno)); time_frame-=GetRelativeTime(); } } else #endif { // -------- USLEEP + SOFTSLEEP ----------- float min=softsleep?0.021:0.005; while(time_frame>min){ if(time_frame<=0.020) usec_sleep(0); // sleeps 1 clock tick (10ms)! else usec_sleep(1000000*(time_frame-0.020)); time_frame-=GetRelativeTime(); } if(softsleep){ if(time_frame<0) mp_msg(MSGT_AVSYNC, MSGL_WARN, "Warning! Softsleep underflow!\n"); while(time_frame>0) time_frame-=GetRelativeTime(); // burn the CPU } } } current_module="flip_page"; if(vo_config_count) video_out->check_events(); if(blit_frame){ unsigned int t2=GetTimer(); double tt; float j; #define FRAME_LAG_WARN 0.2 j = ((float)t2 - lastframeout_ts) / 1000000; lastframeout_ts = GetTimer(); if (j < frame_time + frame_time * -FRAME_LAG_WARN) too_fast_frame_cnt++; /* printf ("PANIC: too fast frame (%.3f)!\n", j); */ else if (j > frame_time + frame_time * FRAME_LAG_WARN) too_slow_frame_cnt++; /* printf ("PANIC: too slow frame (%.3f)!\n", j); */ if(vo_config_count) video_out->flip_page(); t2=GetTimer()-t2; tt = t2*0.000001f; vout_time_usage+=tt; } // usec_sleep(50000); // test only! } current_module=NULL; if(eof) break; if(force_redraw){ --force_redraw; if(!force_redraw) osd_function=OSD_PLAY; continue; } // printf("A:%6.1f V:%6.1f A-V:%7.3f frame=%5.2f \r",d_audio->pts,d_video->pts,d_audio->pts-d_video->pts,sh_audio->timer); // fflush(stdout); #if 1 /*================ A-V TIMESTAMP CORRECTION: =========================*/ if(sh_audio){ float a_pts=0; float v_pts=0; // unplayed bytes in our and soundcard/dma buffer: float delay=audio_out->get_delay()+(float)sh_audio->a_buffer_len/(float)sh_audio->o_bps; if(pts_from_bps){ #if 1 unsigned int samples=(sh_audio->audio.dwSampleSize)? ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) : (d_audio->pack_no); // <- used for VBR audio samples+=sh_audio->audio.dwStart; // offset a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate; #else if(sh_audio->audio.dwSampleSize) a_pts=(ds_tell(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->wf->nAvgBytesPerSec; else // VBR: a_pts=d_audio->pack_no*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate; #endif // v_pts=d_video->pack_no*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; // printf("V_PTS: PTS: %8.3f BPS: %8.3f \n",d_video->pts,v_pts); delay_corrected=1; } else { // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec) a_pts=d_audio->pts; if(!delay_corrected) if(a_pts) delay_corrected=1; //printf("*** %5.3f ***\n",a_pts); a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; // v_pts=d_video->pts-frame_time; // v_pts=d_video->pts; } v_pts=d_video->pts; mp_dbg(MSGT_AVSYNC,MSGL_DBG2,"### A:%8.3f (%8.3f) V:%8.3f A-V:%7.4f \n",a_pts,a_pts-audio_delay-delay,v_pts,(a_pts-delay-audio_delay)-v_pts); if(delay_corrected){ float x; AV_delay=(a_pts-delay-audio_delay)-v_pts; x=AV_delay*0.1f; if(x<-max_pts_correction) x=-max_pts_correction; else if(x> max_pts_correction) x= max_pts_correction; if(default_max_pts_correction>=0) max_pts_correction=default_max_pts_correction; else max_pts_correction=sh_video->frametime*0.10; // +-10% of time sh_audio->timer+=x; c_total+=x; if(!quiet) mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A:%6.1f V:%6.1f A-V:%7.3f ct:%7.3f %3d/%3d %2d%% %2d%% %4.1f%% %d %d %d%%\r", a_pts-audio_delay-delay,v_pts,AV_delay,c_total, (int)sh_video->num_frames,(int)sh_video->num_frames_decoded, (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0, (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0, (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0 ,drop_frame_cnt ,output_quality ,cache_fill_status ); fflush(stdout); } } else { // No audio: if(!quiet) mp_msg(MSGT_AVSYNC,MSGL_STATUS,"V:%6.1f %3d %2d%% %2d%% %4.1f%% %d %d %d%%\r",d_video->pts, (int)sh_video->num_frames, (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0, (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0, (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0 ,drop_frame_cnt ,output_quality ,cache_fill_status ); fflush(stdout); } #endif /*Output quality adjustments:*/ if(auto_quality>0){ #if 0 /*If we took a long time decoding this frame, downgrade the quality.*/ if(output_quality>0&& (video_time_usage-cvideo_base_vtime)*sh_video->timer>= (0.95*sh_video->timer-(vout_time_usage+audio_time_usage))* (sh_video->timer-cvideo_base_vframe-frame_correction)){ output_quality>>=1; mp_msg(MSGT_AUTOQ,MSGL_DBG2,"Downgrading quality to %i.\n",output_quality); set_video_quality(sh_video,output_quality); } else /*If we had plenty of extra time, upgrade the quality.*/ if(output_qualitytimer< (0.67*sh_video->timer-(vout_time_usage+audio_time_usage))* (sh_video->timer-cvideo_base_vframe-frame_correction)){ output_quality++; mp_msg(MSGT_AUTOQ,MSGL_DBG2,"Upgrading quality to %i.\n",output_quality); set_video_quality(sh_video,output_quality); } #else // float total=0.000001f * (GetTimer()-aq_total_time); // if(output_quality0.05f*total) if(output_quality0) ++output_quality; else // if(output_quality>0 && aq_sleep_time<-0.05f*total) if(output_quality>1 && aq_sleep_time<0) --output_quality; else if(output_quality>0 && aq_sleep_time<-0.050f) // 50ms output_quality=0; // printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality); set_video_quality(sh_video,output_quality); #endif } read_input: #ifdef USE_OSD if(osd_visible){ if (!--osd_visible){ vo_osd_progbar_type=-1; // disable if (osd_function != OSD_PAUSE) osd_function = OSD_PLAY; } } #endif if(osd_function==OSD_PAUSE){ #ifdef HAVE_NEW_INPUT mp_cmd_t* cmd; #endif if(!quiet) { mp_msg(MSGT_CPLAYER,MSGL_STATUS,"\n------ PAUSED -------\r"); fflush(stdout); } #ifdef HAVE_NEW_GUI if(use_gui) guiGetEvent( guiCEvent,(char *)guiSetPause ); #endif if (video_out && sh_video && vo_config_count) video_out->control(VOCTRL_PAUSE, NULL); if (audio_out && sh_audio) audio_out->pause(); // pause audio, keep data if possible #ifdef HAVE_NEW_INPUT while( (cmd = mp_input_get_cmd(20,1)) == NULL) { #else /* HAVE_NEW_INPUT */ if(slave_mode) { fd_set set; struct timeval timeout; while (1) { usec_sleep(1000); FD_ZERO (&set); FD_SET (STDIN_FILENO, &set); timeout.tv_sec = 0; timeout.tv_usec = 1000; if(1==select(FD_SETSIZE, &set, NULL, NULL, &timeout)) { break; } } } else { while( #ifdef HAVE_LIRC lirc_mp_getinput()<=0 && #endif (use_stdin || getch2(20)<=0) && mplayer_get_key()<=0){ #endif /* HAVE_NEW_INPUT */ if(sh_video && video_out && vo_config_count) video_out->check_events(); #ifdef HAVE_NEW_GUI if(use_gui){ guiEventHandling(); if(guiIntfStruct.Playing!=2 || (rel_seek_secs || abs_seek_pos)) break; } #endif usleep(20000); #ifdef HAVE_NEW_INPUT } mp_cmd_free(cmd); #else if(use_stdin) usec_sleep(1000); // do not eat the CPU } } #endif /* HAVE_NEW_INPUT */ osd_function=OSD_PLAY; if (audio_out && sh_audio) audio_out->resume(); // resume audio if (video_out && sh_video && vo_config_count) video_out->control(VOCTRL_RESUME, NULL); // resume video (void)GetRelativeTime(); // keep TF around FT in next cycle #ifdef HAVE_NEW_GUI if (use_gui) guiGetEvent( guiCEvent,(char *)guiSetPlay ); #endif } if(!force_redraw) break; } // while(sh_video->timertimer || force_redraw) // skip some seconds... added by fly if(step_sec>0) { osd_function=OSD_FFW; rel_seek_secs+=step_sec; } #ifdef USE_DVDNAV if (stream->type==STREAMTYPE_DVDNAV && dvd_nav_still) dvdnav_stream_sleeping((dvdnav_priv_t*)stream->priv); #endif //================= Keyboard events, SEEKing ==================== #ifndef HAVE_NEW_INPUT /* slave mode */ if(slave_mode) { char buffer[1024]; fd_set set; struct timeval timeout; int arg; FD_ZERO (&set); FD_SET (STDIN_FILENO, &set); timeout.tv_sec = 0; timeout.tv_usec = 1000; if(1 == select (FD_SETSIZE, &set, NULL, NULL, &timeout)) { fgets(buffer, 1024, stdin); if(!strcmp("play\n", buffer)) { osd_function=OSD_PLAY; } else if(!strcmp("stop\n", buffer)) { osd_function=OSD_PAUSE; } else if(!strncmp("seek ", buffer, 5)) { sscanf(buffer+5, "%d", &arg); rel_seek_secs = arg-d_video->pts; } else if(!strncmp("skip ", buffer, 5)) { sscanf(buffer+5, "%d", &arg); rel_seek_secs = arg; } else if(!strcmp("quit\n", buffer)) { exit_player(MSGTR_Exit_quit); } } else { osd_function=OSD_PLAY; } } else /* interactive mode */ { int c; while( #ifdef HAVE_LIRC (c=lirc_mp_getinput())>0 || #endif (!use_stdin && (c=getch2(0))>0) || (c=mplayer_get_key())>0) switch(c){ // seek 10 sec case KEY_RIGHT: osd_function=OSD_FFW; rel_seek_secs+=10;break; case KEY_LEFT: osd_function=OSD_REW; rel_seek_secs-=10;break; // seek 1 min case KEY_UP: osd_function=OSD_FFW; rel_seek_secs+=60;break; case KEY_DOWN: osd_function=OSD_REW; rel_seek_secs-=60;break; // seek 10 min case KEY_PAGE_UP: rel_seek_secs+=600;break; case KEY_PAGE_DOWN: rel_seek_secs-=600;break; // delay correction: case '+': audio_delay+=0.1; // increase audio buffer delay osd_show_av_delay = 9; // show the A-V delay in OSD if(sh_audio) sh_audio->timer-=0.1; break; case '-': audio_delay-=0.1; // decrease audio buffer delay osd_show_av_delay = 9; // show the A-V delay in OSD if(sh_audio) sh_audio->timer+=0.1; break; // quit case KEY_ESC: // ESC case 'q': exit_player(MSGTR_Exit_quit); case KEY_ENTER: // ESC eof=1; // force jump to next file : quit if no next file break; case 'g': grab_frames=2;break; // pause case 'p': case ' ': osd_function=OSD_PAUSE; break; case KEY_HOME: { play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter); if(play_tree_iter_up_step(i,1,0) == PLAY_TREE_ITER_ENTRY) eof = PT_UP_NEXT; play_tree_iter_free(i); } break; case KEY_END: { play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter); if(play_tree_iter_up_step(i,-1,0) == PLAY_TREE_ITER_ENTRY) eof = PT_UP_PREV; play_tree_iter_free(i); } break; case '>': { play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter); if(play_tree_iter_step(i,1,0) == PLAY_TREE_ITER_ENTRY) eof = PT_NEXT_ENTRY; play_tree_iter_free(i); } break; case '<': { play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter); if(play_tree_iter_step(i,-1,0) == PLAY_TREE_ITER_ENTRY) eof = PT_PREV_ENTRY; play_tree_iter_free(i); } break; case KEY_INS: if(playtree_iter->num_files > 1 && playtree_iter->file < playtree_iter->num_files) eof = PT_NEXT_SRC; break; case KEY_DEL: if(playtree_iter->num_files > 1 && playtree_iter->file > 1) eof = PT_PREV_SRC; break; case 'o': // toggle OSD if(sh_video) osd_level=(osd_level+1)%3; break; case 'z': sub_delay -= 0.1; osd_show_sub_delay = 9; // show the subdelay in OSD break; case 'x': sub_delay += 0.1; osd_show_sub_delay = 9; // show the subdelay in OSD break; case '9': case '0': case '*': case '/': { if(c=='*' || c=='0'){ mixer_incvolume(); } else { mixer_decvolume(); } #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_VOLUME; vo_osd_progbar_value=(mixer_getbothvolume()*256.0)/100.0; //printf("volume: %d\n",vo_osd_progbar_value); } #endif } break; #if 0 // change to 1 for absolute seeking tests case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': rel_seek_secs=0.99*(float)(c-'1')/7.0; abs_seek_pos=3; printf ("ABS seek to %5.3f \n",rel_seek_secs); break; #else /* User wants to have screen shot */ case 'S': case 's': if(vo_config_count) video_out->control(VOCTRL_SCREENSHOT, NULL); break; // Contrast: case '1': case '2': if(c=='2'){ if ( ++v_cont > 100 ) v_cont = 100; } else { --v_cont; if(v_hw_equ_cap & VEQ_CAP_CONTRAST) { if(v_cont < -100) v_cont = -100; } else { if ( v_cont < 0 ) v_cont = 0; } } if(set_video_colors(sh_video,"Contrast",v_cont)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_CONTRAST; vo_osd_progbar_value=((v_cont)<<8)/100; if(v_hw_equ_cap) vo_osd_progbar_value = ((v_cont+100)<<8)/200; } #endif } break; // Brightness: case '3': case '4': if(c=='4'){ if ( ++v_bright > 100 ) v_bright = 100; } else { --v_bright; if(v_hw_equ_cap & VEQ_CAP_BRIGHTNESS) { if(v_bright < -100) v_bright = -100; } else { if ( v_bright < 0 ) v_bright = 0; } } if(set_video_colors(sh_video,"Brightness",v_bright)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_BRIGHTNESS; vo_osd_progbar_value=((v_bright)<<8)/100; if(v_hw_equ_cap) vo_osd_progbar_value = ((v_bright+100)<<8)/200; } #endif } break; // Hue: case '5': case '6': if(c=='6'){ if ( ++v_hue > 100 ) v_hue = 100; } else { --v_hue; if(v_hw_equ_cap & VEQ_CAP_HUE) { if(v_hue < -100) v_hue = -100; } else { if ( v_hue < 0 ) v_hue = 0; } } if(set_video_colors(sh_video,"Hue",v_hue)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_HUE; vo_osd_progbar_value=((v_hue)<<8)/100; if(v_hw_equ_cap) vo_osd_progbar_value = ((v_hue+100)<<8)/200; } #endif } break; // Saturation: case '7': case '8': if(c=='8'){ if ( ++v_saturation > 100 ) v_saturation = 100; } else { --v_saturation; if(v_hw_equ_cap & VEQ_CAP_SATURATION) { if(v_saturation < -100) v_saturation = -100; } else { if ( v_saturation < 0 ) v_saturation = 0; } } if(set_video_colors(sh_video,"Saturation",v_saturation)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_SATURATION; vo_osd_progbar_value=((v_saturation)<<8)/100; if(v_hw_equ_cap) vo_osd_progbar_value = ((v_saturation+100)<<8)/200; } #endif } break; #endif case 'd': frame_dropping=(frame_dropping+1)%3; mp_msg(MSGT_CPLAYER,MSGL_V,"== drop: %d == \n",frame_dropping); break; #ifdef USE_TV case 'h': if (tv_param_on == 1) tv_step_channel(tv_handler, TV_CHANNEL_HIGHER); break; case 'l': if (tv_param_on == 1) tv_step_channel(tv_handler, TV_CHANNEL_LOWER); break; case 'n': if (tv_param_on == 1) tv_step_norm(tv_handler); break; case 'b': if (tv_param_on == 1) tv_step_chanlist(tv_handler); break; #endif case 'f': if(vo_config_count) video_out->control(VOCTRL_FULLSCREEN, 0); break; } } // keyboard event handler #else /* HAVE_NEW_INPUT */ { mp_cmd_t* cmd; while( (cmd = mp_input_get_cmd(0,0)) != NULL) { switch(cmd->id) { case MP_CMD_SEEK : { int v,abs; v = cmd->args[0].v.i; abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0; if(abs) { abs_seek_pos = 3; osd_function= (v > sh_video->timer) ? OSD_FFW : OSD_REW; rel_seek_secs = v; } else { rel_seek_secs+= v; osd_function= (v > 0) ? OSD_FFW : OSD_REW; } } break; case MP_CMD_AUDIO_DELAY : { float v = cmd->args[0].v.f; audio_delay += v; osd_show_av_delay = 9; if(sh_audio) sh_audio->timer+= v; } break; case MP_CMD_PAUSE : { osd_function=OSD_PAUSE; } break; case MP_CMD_QUIT : { exit_player(MSGTR_Exit_quit); } case MP_CMD_GRAB_FRAMES : { grab_frames=2; } break; case MP_CMD_PLAY_TREE_STEP : { int n = cmd->args[0].v.i > 0 ? 1 : -1; int force = cmd->args[1].v.i; if(!force) { play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter); if(play_tree_iter_step(i,n,0) == PLAY_TREE_ITER_ENTRY) eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY; play_tree_iter_free(i); } else eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY; } break; case MP_CMD_PLAY_TREE_UP_STEP : { int n = cmd->args[0].v.i > 0 ? 1 : -1; int force = cmd->args[1].v.i; if(!force) { play_tree_iter_t* i = play_tree_iter_new_copy(playtree_iter); if(play_tree_iter_up_step(i,n,0) == PLAY_TREE_ITER_ENTRY) eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV; play_tree_iter_free(i); } else eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV; } break; case MP_CMD_PLAY_ALT_SRC_STEP : { if(playtree_iter->num_files > 1) { int v = cmd->args[0].v.i; if(v > 0 && playtree_iter->file < playtree_iter->num_files) eof = PT_NEXT_SRC; else if(v < 0 && playtree_iter->file > 1) eof = PT_PREV_SRC; } } break; case MP_CMD_SUB_DELAY : { int abs= cmd->args[1].v.i; float v = cmd->args[0].v.f; if(abs) sub_delay = v; else sub_delay += v; osd_show_sub_delay = 9; // show the subdelay in OSD } break; case MP_CMD_OSD : if(sh_video) { int v = cmd->args[0].v.i; if(v < 0) osd_level=(osd_level+1)%3; else osd_level= v > 2 ? 2 : v; } break; case MP_CMD_VOLUME : { int v = cmd->args[0].v.i; if(v > 0) mixer_incvolume(); else mixer_decvolume(); #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_VOLUME; vo_osd_progbar_value=(mixer_getbothvolume()*256.0)/100.0; } #endif } break; case MP_CMD_MIXER_USEMASTER : { } break; case MP_CMD_CONTRAST : { int v = cmd->args[0].v.i, abs = cmd->args[1].v.i; if(abs) v_cont = v > 100 ? 100 : v; else { if ( (v_cont += v) > 100 ) v_cont = 100; } if(v_cont < 0) v_cont = 0; if(set_video_colors(sh_video,"Contrast",v_cont)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_CONTRAST; vo_osd_progbar_value=((v_cont)<<8)/100; } #endif } } break; case MP_CMD_BRIGHTNESS : { int v = cmd->args[0].v.i, abs = cmd->args[1].v.i; if(abs) v_bright = v > 100 ? 100 : v; else { if ( (v_bright += v) > 100 ) v_bright = 100; } if(v_hw_equ_cap & VEQ_CAP_BRIGHTNESS) { if(v_bright < -100) v_bright = -100; } else { if ( v_bright < 0 ) v_bright = 0; } if(set_video_colors(sh_video,"Brightness",v_bright)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_BRIGHTNESS; vo_osd_progbar_value=((v_bright)<<8)/100; } #endif } } break; case MP_CMD_HUE : { int v = cmd->args[0].v.i, abs = cmd->args[1].v.i; if(abs) v_hue = v > 100 ? 100 : v; else { if ( (v_hue += v) > 100 ) v_hue = 100; } if(v_hw_equ_cap & VEQ_CAP_HUE) { if(v_hue < -100) v_hue = -100; } else { if ( v_hue < 0 ) v_hue = 0; } if(set_video_colors(sh_video,"Hue",v_hue)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_HUE; vo_osd_progbar_value=((v_hue)<<8)/100; } #endif } } break; case MP_CMD_SATURATION : { int v = cmd->args[0].v.i, abs = cmd->args[1].v.i; if(abs) v_saturation = v > 100 ? 100 : v; else { if ( (v_saturation += v) > 100 ) v_saturation = 100; } if(v_hw_equ_cap & VEQ_CAP_SATURATION) { if(v_saturation < -100) v_saturation = -100; } else { if ( v_saturation < 0 ) v_saturation = 0; } if(set_video_colors(sh_video,"Saturation",v_saturation)){ #ifdef USE_OSD if(osd_level){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_SATURATION; vo_osd_progbar_value=((v_saturation)<<8)/100; } #endif } } break; case MP_CMD_FRAMEDROPPING : { int v = cmd->args[0].v.i; if(v < 0) frame_dropping = (frame_dropping+1)%3; else frame_dropping = v > 2 ? 2 : v; } break; #ifdef USE_TV case MP_CMD_TV_STEP_CHANNEL : { if (tv_param_on == 1) { int v = cmd->args[0].v.i; if(v > 0) tv_step_channel(tv_handler, TV_CHANNEL_HIGHER); else tv_step_channel(tv_handler, TV_CHANNEL_LOWER); } } break; case MP_CMD_TV_STEP_NORM : { if (tv_param_on == 1) tv_step_norm(tv_handler); } break; case MP_CMD_TV_STEP_CHANNEL_LIST : { if (tv_param_on == 1) tv_step_chanlist(tv_handler); } break; #endif case MP_CMD_VO_FULLSCREEN: { #ifdef HAVE_NEW_GUI if ( use_gui ) guiGetEvent( guiIEvent,(char *)MP_CMD_GUI_FULLSCREEN ); else #endif if(video_out && vo_config_count) video_out->control(VOCTRL_FULLSCREEN, 0); } break; case MP_CMD_SUB_POS: { int v; v = cmd->args[0].v.i; sub_pos+=v; if(sub_pos >100) sub_pos=100; if(sub_pos <0) sub_pos=0; } break; #ifdef USE_DVDNAV case MP_CMD_DVDNAV_EVENT: { dvdnav_priv_t * dvdnav_priv = (dvdnav_priv_t*)(stream->priv); dvdnav_event_t * dvdnav_event = (dvdnav_event_t *)(cmd->args[0].v.v); if (!dvdnav_event) { printf("DVDNAV Event NULL?!\n"); break; } if (stream->type!=STREAMTYPE_DVDNAV) { printf("Got DVDNAV event when not running a DVDNAV stream!?\n"); break; } //printf("mplayer: got event: %d\n",dvdnav_event->event); switch (dvdnav_event->event) { case DVDNAV_BLOCK_OK: { /* be silent about this one */ break; } case DVDNAV_HIGHLIGHT: { dvdnav_highlight_event_t *hevent = (dvdnav_highlight_event_t*)(dvdnav_event->details); if (!hevent) { printf("DVDNAV Event: Highlight event broken\n"); break; } if (hevent->display && hevent->buttonN>0) { //dvdnav_priv->seen_root_menu=1; /* if we got a highlight, we're on a menu */ sprintf( dvd_nav_text, "Highlight button %d (%u,%u)-(%u,%u) PTS %d (now is %5.2f)", hevent->buttonN, hevent->sx,hevent->sy, hevent->ex,hevent->ey, hevent->pts, d_video->pts); printf("DVDNAV Event: %s\n",dvd_nav_text); //osd_show_dvd_nav_delay = 60; osd_show_dvd_nav_highlight=1; osd_show_dvd_nav_sx=hevent->sx; osd_show_dvd_nav_ex=hevent->ex; osd_show_dvd_nav_sy=hevent->sy; osd_show_dvd_nav_ey=hevent->ey; } else { osd_show_dvd_nav_highlight=0; printf("DVDNAV Event: Highlight Hide\n"); } break; } case DVDNAV_STILL_FRAME: { dvdnav_still_event_t *still_event = (dvdnav_still_event_t*)(dvdnav_event->details); printf( "######################################## DVDNAV Event: Still Frame: %d sec(s)\n", still_event->length ); while (dvdnav_stream_sleeping(dvdnav_priv)) { usleep(1000); /* 1ms */ } dvdnav_stream_sleep(dvdnav_priv,still_event->length); break; } case DVDNAV_STOP: { printf( "DVDNAV Event: Nav Stop\n" ); break; } case DVDNAV_NOP: { printf("DVDNAV Event: Nav NOP\n"); break; } case DVDNAV_SPU_STREAM_CHANGE: { dvdnav_stream_change_event_t * stream_change=(dvdnav_stream_change_event_t*)(dvdnav_event->details); printf("DVDNAV Event: Nav SPU Stream Change: phys: %d logical: %d\n", stream_change->physical, stream_change->logical); if (vo_spudec && dvdsub_id!=stream_change->physical) { mp_msg(MSGT_INPUT,MSGL_DBG2,"d_dvdsub->id change: was %d is now %d\n", d_dvdsub->id,stream_change->physical); // FIXME: need a better way to change SPU id d_dvdsub->id=dvdsub_id=stream_change->physical; if (vo_spudec) spudec_reset(vo_spudec); } break; } case DVDNAV_AUDIO_STREAM_CHANGE: { int aid_temp; dvdnav_stream_change_event_t *stream_change = (dvdnav_stream_change_event_t*)(dvdnav_event->details); printf("DVDNAV Event: Nav Audio Stream Change: phys: %d logical: %d\n", stream_change->physical, stream_change->logical); aid_temp=stream_change->physical; if (aid_temp>=0) aid_temp+=128; // FIXME: is this sane? if (d_audio && audio_id!=aid_temp) { mp_msg(MSGT_INPUT,MSGL_DBG2,"d_audio->id change: was %d is now %d\n", d_audio->id,aid_temp); // FIXME: need a bettery way to change audio stream id d_audio->id=dvdsub_id=aid_temp; resync_audio_stream(sh_audio); } break; } case DVDNAV_VTS_CHANGE: { printf("DVDNAV Event: Nav VTS Change\n"); break; } case DVDNAV_CELL_CHANGE: { dvdnav_cell_change_event_t *cell_change = (dvdnav_cell_change_event_t*)(dvdnav_event->details); cell_playback_t * cell_playback = cell_change->new_cell; printf("DVDNAV Event: Nav Cell Change\n"); osd_show_dvd_nav_highlight=0; /* screen changed, disable menu */ /* printf("new still time: %d\n",cell_playback->still_time); printf("new cell_cmd_nr: %d\n",cell_playback->cell_cmd_nr); printf("new playback_time: %02d:%02d:%02d.%02d\n", cell_playback->playback_time.hour, cell_playback->playback_time.minute, cell_playback->playback_time.second, cell_playback->playback_time.frame_u); */ //rel_seek_secs=1; // not really: we can't seek, but it'll reset the muxer //abs_seek_pos=0; break; } case DVDNAV_NAV_PACKET: { // printf("DVDNAV Event: Nav Packet\n"); break; } case DVDNAV_SPU_CLUT_CHANGE: { uint32_t * new_clut = (uint32_t *)(dvdnav_event->details); printf("DVDNAV Event: Nav SPU CLUT Change\n"); // send new palette to SPU decoder if (vo_spudec) spudec_update_palette(vo_spudec,new_clut); break; } case DVDNAV_SEEK_DONE: { printf("DVDNAV Event: Nav Seek Done\n"); break; } } // free the dvdnav event free(dvdnav_event->details); free(dvdnav_event); cmd->args[0].v.v=NULL; } case MP_CMD_DVDNAV: { dvdnav_priv_t * dvdnav_priv=(dvdnav_priv_t*)stream->priv; switch (cmd->args[0].v.i) { case MP_CMD_DVDNAV_UP: dvdnav_upper_button_select(dvdnav_priv->dvdnav); break; case MP_CMD_DVDNAV_DOWN: dvdnav_lower_button_select(dvdnav_priv->dvdnav); break; case MP_CMD_DVDNAV_LEFT: dvdnav_left_button_select(dvdnav_priv->dvdnav); break; case MP_CMD_DVDNAV_RIGHT: dvdnav_right_button_select(dvdnav_priv->dvdnav); break; case MP_CMD_DVDNAV_MENU: printf("Menu call\n"); dvdnav_menu_call(dvdnav_priv->dvdnav,DVD_MENU_Root); break; case MP_CMD_DVDNAV_SELECT: dvdnav_button_activate(dvdnav_priv->dvdnav); break; default: mp_msg(MSGT_CPLAYER, MSGL_V, "Weird DVD Nav cmd %d\n",cmd->args[0].v.i); break; } break; } #endif default : { #ifdef HAVE_NEW_GUI if ( ( use_gui )&&( cmd->id > MP_CMD_GUI_EVENTS ) ) guiGetEvent( guiIEvent,(char *)cmd->id ); else #endif mp_msg(MSGT_CPLAYER, MSGL_V, "Received unknow cmd %s\n",cmd->name); } } mp_cmd_free(cmd); } } #endif if (seek_to_sec) { int a,b; float d; if (sscanf(seek_to_sec, "%d:%d:%f", &a,&b,&d)==3) rel_seek_secs += 3600*a +60*b +d ; else if (sscanf(seek_to_sec, "%d:%f", &a, &d)==2) rel_seek_secs += 60*a +d; else if (sscanf(seek_to_sec, "%f", &d)==1) rel_seek_secs += d; seek_to_sec = NULL; } /* Looping. */ if(eof==1 && loop_times>=0) { mp_msg(MSGT_CPLAYER,MSGL_V,"loop_times = %d, eof = %d\n", loop_times,eof); if(loop_times>1) loop_times--; else if(loop_times==1) loop_times=-1; eof=0; abs_seek_pos=3; rel_seek_secs=0; // seek to start of movie (0%) } if(rel_seek_secs || abs_seek_pos){ current_module="seek"; if(demux_seek(demuxer,rel_seek_secs,abs_seek_pos)){ // success: /* FIXME there should be real seeking for vobsub */ if (vo_vobsub) vobsub_reset(vo_vobsub); if(sh_audio){ if(verbose){ float a_pts=d_audio->pts; a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; mp_msg(MSGT_AVSYNC,MSGL_V,"SEEK: A: %5.3f V: %5.3f A-V: %5.3f \n",a_pts,d_video->pts,a_pts-d_video->pts); } mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A:%6.1f V:%6.1f A-V:%7.3f ct: ? \r",d_audio->pts,d_video->pts,0.0f); } else { mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A: --- V:%6.1f \r",d_video->pts); } fflush(stdout); if(sh_video){ current_module="seek_video_reset"; if(vo_config_count) video_out->control(VOCTRL_RESET,NULL); } if(sh_audio){ current_module="seek_audio_reset"; audio_out->reset(); // stop audio, throwing away buffered data } #ifdef USE_OSD // Set OSD: if(osd_level){ int len=((demuxer->movi_end-demuxer->movi_start)>>8); if (len>0){ osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=0; vo_osd_progbar_value=(demuxer->filepos-demuxer->movi_start)/len; } } #endif if(sh_video) { c_total=0; max_pts_correction=0.1; osd_visible=sh_video->fps; // to rewert to PLAY pointer after 1 sec audio_time_usage=0; video_time_usage=0; vout_time_usage=0; drop_frame_cnt=0; too_slow_frame_cnt=0; too_fast_frame_cnt=0; if(vo_spudec) spudec_reset(vo_spudec); } } rel_seek_secs=0; abs_seek_pos=0; current_module=NULL; } #ifdef HAVE_NEW_GUI if(use_gui){ if(demuxer->file_format==DEMUXER_TYPE_AVI && sh_video->video.dwLength>2){ // get pos from frame number / total frames guiIntfStruct.Position=(float)d_video->pack_no*100.0f/sh_video->video.dwLength; } else { // get pos from file position / filesize int len=((demuxer->movi_end-demuxer->movi_start)); int pos=(demuxer->file_format==DEMUXER_TYPE_AVI)?demuxer->filepos:d_video->pos; guiIntfStruct.Position=(len<=0)?0:((float)(pos-demuxer->movi_start) / len * 100.0f); } guiIntfStruct.TimeSec=d_video->pts; if(guiIntfStruct.Playing==0) break; // STOP if(guiIntfStruct.Playing==2) osd_function=OSD_PAUSE; if ( guiIntfStruct.VolumeChanged ) { mixer_setvolume( guiIntfStruct.Volume,guiIntfStruct.Volume ); guiIntfStruct.VolumeChanged=0; #ifdef USE_OSD if ( osd_level ) { osd_visible=sh_video->fps; // 1 sec vo_osd_progbar_type=OSD_VOLUME; vo_osd_progbar_value=( ( guiIntfStruct.Volume ) * 256.0 ) / 100.0; } #endif } guiIntfStruct.Volume=(float)mixer_getbothvolume(); #ifdef USE_DVDREAD if ( guiIntfStruct.DVDChanged ) goto goto_next_file; if ( stream->type == STREAMTYPE_DVD ) { dvd_priv_t * dvdp = stream->priv; guiIntfStruct.DVD.current_chapter=dvdp->cur_cell + 1; } #endif } #endif //================= Update OSD ==================== #ifdef USE_OSD if(osd_level>=1){ int pts=d_video->pts; char osd_text_tmp[50]; if(pts==osd_last_pts-1) ++pts; else osd_last_pts=pts; vo_osd_text=osd_text_buffer; #ifdef USE_DVDNAV if (osd_show_dvd_nav_delay) { sprintf(osd_text_tmp, "DVDNAV: %s", dvd_nav_text); osd_show_dvd_nav_delay--; } else #endif if (osd_show_sub_delay) { sprintf(osd_text_tmp, "Sub delay: %d ms",(int)(sub_delay*1000)); osd_show_sub_delay--; } else if (osd_show_av_delay) { sprintf(osd_text_tmp, "A-V delay: %d ms",(int)(audio_delay*1000)); osd_show_av_delay--; } else if(osd_level>=2) sprintf(osd_text_tmp,"%c %02d:%02d:%02d",osd_function,pts/3600,(pts/60)%60,pts%60); else osd_text_tmp[0]=0; if(strcmp(vo_osd_text, osd_text_tmp)) { strcpy(vo_osd_text, osd_text_tmp); vo_osd_changed(1); } } else { if(vo_osd_text) { vo_osd_text=NULL; vo_osd_changed(1); } } // for(i=1;i<=11;i++) osd_text_buffer[10+i]=i;osd_text_buffer[10+i]=0; // vo_osd_text=osd_text_buffer; #endif #ifdef USE_SUB // find sub if(subtitles && d_video->pts>0){ float pts=d_video->pts; if(sub_fps==0) sub_fps=sh_video->fps; current_module="find_sub"; if (pts > sub_last_pts || pts < sub_last_pts-1.0 ) { find_sub(subtitles,sub_uses_time?(100*(pts+sub_delay)):((pts+sub_delay)*sub_fps)); // FIXME! frame counter... sub_last_pts = pts; } current_module=NULL; } #endif // VobSub subtitles if(vo_vobsub){ current_module="vobsub"; if(d_video->pts+sub_delay>=0) vobsub_process(vo_vobsub,d_video->pts+sub_delay); /* Don't know how to detect wether the sub has changed or not */ vo_osd_changed(1); current_module=NULL; } // DVD sub: if(vo_flags & 0x08){ static vo_mpegpes_t packet; static vo_mpegpes_t *pkg=&packet; packet.timestamp=sh_video->timer*90000.0; packet.id=0x20; /* Subpic */ while((packet.size=ds_get_packet_sub(d_dvdsub,&packet.data))>0){ mp_msg(MSGT_CPLAYER,MSGL_V,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f \n",packet.size,d_video->pts,d_dvdsub->pts); if(vo_config_count) video_out->draw_frame(&pkg); } }else if(vo_spudec){ unsigned char* packet=NULL; int len; current_module="spudec"; while((len=ds_get_packet_sub(d_dvdsub,&packet))>0){ mp_msg(MSGT_CPLAYER,MSGL_V,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f \n",len,d_video->pts,d_dvdsub->pts); spudec_assemble(vo_spudec,packet,len,90000*d_dvdsub->pts); } spudec_heartbeat(vo_spudec,90000*d_video->pts); /* Don't know how to detect wether the sub has changed or not */ vo_osd_changed(1); current_module=NULL; } } // while(!eof) mp_msg(MSGT_GLOBAL,MSGL_V,"EOF code: %d \n",eof); } goto_next_file: // don't jump here after ao/vo/getch initialization! if(benchmark){ double tot=video_time_usage+vout_time_usage+audio_time_usage; double total_time_usage; total_time_usage_start=GetTimer()-total_time_usage_start; total_time_usage = (float)total_time_usage_start*0.000001; mp_msg(MSGT_CPLAYER,MSGL_INFO,"\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n", video_time_usage,vout_time_usage,audio_time_usage, total_time_usage-tot,total_time_usage); if(total_time_usage>0.0) mp_msg(MSGT_CPLAYER,MSGL_INFO,"BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n", 100.0*video_time_usage/total_time_usage, 100.0*vout_time_usage/total_time_usage, 100.0*audio_time_usage/total_time_usage, 100.0*(total_time_usage-tot)/total_time_usage, 100.0); } #ifdef HAVE_NEW_GUI if( use_gui ) { #ifdef USE_DVDREAD if ( !guiIntfStruct.DVDChanged ) #endif mplStop(); #warning workaround for kiba playtree with gui ... if i dont play the prev/next file, then playtree sig6 (assert) // eof=0; } #endif uninit_player(INITED_VO|INITED_AO); if(eof == PT_NEXT_ENTRY || eof == PT_PREV_ENTRY) { eof = eof == PT_NEXT_ENTRY ? 1 : -1; if(play_tree_iter_step(playtree_iter,eof,0) == PLAY_TREE_ITER_ENTRY) { uninit_player(INITED_ALL-(INITED_GUI+INITED_LIRC+INITED_INPUT)); eof = 1; } else { play_tree_iter_free(playtree_iter); playtree_iter = NULL; } } else if (eof == PT_UP_NEXT || eof == PT_UP_PREV) { eof = eof == PT_UP_NEXT ? 1 : -1; if(play_tree_iter_up_step(playtree_iter,eof,0) == PLAY_TREE_ITER_ENTRY) { uninit_player(INITED_ALL-(INITED_GUI+INITED_LIRC+INITED_INPUT)); eof = 1; } else { play_tree_iter_free(playtree_iter); playtree_iter = NULL; } } else { // NEXT PREV SRC uninit_player(INITED_ALL-(INITED_GUI+INITED_LIRC+INITED_INPUT)); eof = eof == PT_PREV_SRC ? -1 : 1; } if(eof == 0) eof = 1; while(playtree_iter != NULL) { filename = play_tree_iter_get_file(playtree_iter,eof); if(filename == NULL) { if( play_tree_iter_step(playtree_iter,eof,0) != PLAY_TREE_ITER_ENTRY) { play_tree_iter_free(playtree_iter); playtree_iter = NULL; }; } else break; } if(use_gui || playtree_iter != NULL #if defined( HAVE_NEW_GUI ) && defined( USE_DVDREAD ) || ( guiIntfStruct.DVDChanged && use_gui ) #endif ){ current_module="uninit_acodec"; if(sh_audio) uninit_audio(sh_audio); sh_audio=NULL; current_module="uninit_vcodec"; if(sh_video) uninit_video(sh_video); sh_video=NULL; current_module="free_demuxer"; if(demuxer) free_demuxer(demuxer); demuxer=NULL; current_module="free_stream"; if(stream) free_stream(stream); stream=NULL; current_module="sub_free"; if ( subtitles ) { sub_free( subtitles ); sub_name=NULL; vo_sub=NULL; subtitles=NULL; } eof = 0; goto play_next_file; } exit_player(MSGTR_Exit_eof); return 1; }