Home
last modified time | relevance | path

Searched refs:fixed_fpsd (Results 1 – 12 of 12) sorted by relevance

/dports/multimedia/lives/lives-3.2.0/src/
H A Dstream.c551 if (mainw->fixed_fpsd <= 0.) fps_can_change = TRUE; in lives2lives_read_stream()
554 if (mainw->fixed_fpsd > 0. && (cfile->fps != mainw->fixed_fpsd)) { in lives2lives_read_stream()
612 mainw->fixed_fpsd = cfile->pb_fps = cfile->fps; in lives2lives_read_stream()
640 …xternal framerate of %s frames per second.\n"), (tmp = remove_trailing_zeroes(mainw->fixed_fpsd))); in lives2lives_read_stream()
655 mainw->fixed_fpsd = -1.; in lives2lives_read_stream()
735 if (lstream->fps != mainw->fixed_fpsd && fps_can_change) {
738 mainw->files[clip]->fps = mainw->fixed_fpsd = lstream->fps;
740 (tmp = remove_trailing_zeroes(mainw->fixed_fpsd)));
H A Dplugins.c249 …if (lives_write_le(fd, vpp->fixed_fpsd <= 0. ? &dblzero : & (vpp->fixed_fpsd), 8, FALSE) < 8) retu… in save_vpp_defaults()
498 mainw->vpp->fixed_fpsd = -1.; in on_vppa_ok_clicked()
513 mainw->vpp->fixed_fpsd = -1.; in on_vppa_ok_clicked()
517 if (mainw->vpp->fixed_fpsd > 0. && (mainw->fixed_fpsd > 0. || in on_vppa_ok_clicked()
522 mainw->vpp->fixed_fpsd = -1.; in on_vppa_ok_clicked()
1269 vpp->fixed_fpsd = -1.; in open_vid_playback_plugin()
1277 vpp->fixed_fpsd = mainw->vpp->fixed_fpsd; in open_vid_playback_plugin()
1366 double fixed_fpsd = vpp->fixed_fpsd; in open_vid_playback_plugin() local
1372 if (fixed_fpsd < 0.) vpp->fixed_fpsd = fixed_fpsd; in open_vid_playback_plugin()
1387 if (mainw->fixed_fpsd > 0. || (vpp->fixed_fpsd > 0. && vpp->set_fps && in open_vid_playback_plugin()
[all …]
H A Dlives-yuv4mpeg.c460 if (mainw->fixed_fpsd > -1. && mainw->fixed_fpsd != fps) { in lives_yuv_stream_start_write()
464 mainw->fixed_fpsd = fps; in lives_yuv_stream_start_write()
474 if (mainw->fixed_fpsd > 23.9999 && mainw->fixed_fpsd < 24.0001) { in lives_yuv_stream_start_write()
H A Ddialogs.c1674 …if (mainw->fixed_fpsd <= 0. && (!mainw->vpp || mainw->vpp->fixed_fpsd <= 0. || !mainw->ext_playbac… in process_one()
1744 …if (mainw->fixed_fpsd > 0. || (mainw->vpp && mainw->vpp->fixed_fpsd > 0. && mainw->ext_playback))… in process_one()
1747 if ((mainw->fixed_fpsd > 0. && (dticks >= 1. / mainw->fixed_fpsd)) || in process_one()
1748 (mainw->vpp && mainw->vpp->fixed_fpsd > 0. && mainw->ext_playback && in process_one()
1749 dticks >= 1. / mainw->vpp->fixed_fpsd)) { in process_one()
2031 if (mainw->vpp && mainw->ext_playback && mainw->vpp->fixed_fpsd > 0.) in process_one()
2032 mainw->last_display_ticks += TICKS_PER_SECOND_DBL / mainw->vpp->fixed_fpsd; in process_one()
2033 else if (mainw->fixed_fpsd > 0.) in process_one()
2034 mainw->last_display_ticks += TICKS_PER_SECOND_DBL / mainw->fixed_fpsd; in process_one()
H A Devents.c3131 …if ((mainw->fixed_fpsd > 0. && (curr_tc - mainw->last_display_ticks) / TICKS_PER_SECOND_DBL >= 1. … in process_events()
3132 (mainw->vpp && mainw->vpp->fixed_fpsd > 0. && mainw->ext_playback && in process_events()
3148 if (mainw->vpp && mainw->ext_playback && mainw->vpp->fixed_fpsd > 0.) in process_events()
3149 mainw->last_display_ticks += TICKS_PER_SECOND_DBL / mainw->vpp->fixed_fpsd; in process_events()
3150 else if (mainw->fixed_fpsd > 0.) in process_events()
3151 mainw->last_display_ticks += TICKS_PER_SECOND_DBL / mainw->fixed_fpsd; in process_events()
3221 …if (!LIVES_IS_PLAYING || ((mainw->fixed_fpsd <= 0. && (!mainw->vpp || mainw->vpp->fixed_fpsd <= 0.… in process_events()
3222 …|| (mainw->fixed_fpsd > 0. && (curr_tc - mainw->last_display_ticks) / TICKS_PER_SECOND_DBL >= 1. /… in process_events()
3243 if (mainw->vpp && mainw->ext_playback && mainw->vpp->fixed_fpsd > 0.) in process_events()
3245 else if (mainw->fixed_fpsd > 0.) in process_events()
[all …]
H A Dplugins.h188 double fixed_fpsd; member
H A Dtranscode.c136 if (ovpp->set_fps)(*ovpp->set_fps)(ovpp->fixed_fpsd); in transcode_cleanup()
H A Dmainwindow.h990 double fixed_fpsd; ///< <=0. means free playback member
H A Dpreferences.c505 mainw->vpp->fixed_fpsd = future_prefs->vpp_fixed_fpsd; in set_vpp()
508 if (mainw->vpp->fixed_fpsd > 0.) { in set_vpp()
509 if (mainw->fixed_fpsd != -1. || !((*mainw->vpp->set_fps)(mainw->vpp->fixed_fpsd))) { in set_vpp()
511 mainw->vpp->fixed_fpsd = -1.; in set_vpp()
H A Dosc.c2728 if (mainw->fixed_fpsd > 0.) return lives_osc_notify_failure(); in lives_osc_cb_op_fps_set()
2739 mainw->fixed_fpsd = fpsd; in lives_osc_cb_op_fps_set()
2742 if (fpsd == 0.) mainw->fixed_fpsd = -1.; ///< 0. to release in lives_osc_cb_op_fps_set()
H A Dutils.c1516 …(!(mainw->fixed_fpsd > 0. || (mainw->vpp && mainw->vpp->fixed_fpsd > 0. && mainw->ext_playback))))… in lives_get_current_playback_ticks()
H A Dmain.c1258 mainw->fixed_fpsd = -1.; in lives_init()