summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_timeline.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-06-13 23:00:24 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-06-13 23:00:24 -0400
commitf00b3b7f111e36537d773daef0ae77b03d11f82f (patch)
tree4bfdd432199a7d4a4cbfc7769493e6bedaa5e51f /gtk2_ardour/video_timeline.cc
parent31d234b48c36bddb4d5228a3abee9c4419403879 (diff)
parent80a13145f398e1c4ea22b3f8a25a5b38d3c5e328 (diff)
merge with master
Diffstat (limited to 'gtk2_ardour/video_timeline.cc')
-rw-r--r--gtk2_ardour/video_timeline.cc121
1 files changed, 79 insertions, 42 deletions
diff --git a/gtk2_ardour/video_timeline.cc b/gtk2_ardour/video_timeline.cc
index 3e7ef8f0a9..6f2c34dd91 100644
--- a/gtk2_ardour/video_timeline.cc
+++ b/gtk2_ardour/video_timeline.cc
@@ -22,6 +22,7 @@
#include "ardour/tempo.h"
#include "pbd/file_utils.h"
+#include "pbd/convert.h"
#include "ardour/session_directory.h"
#include "ardour_ui.h"
@@ -121,6 +122,7 @@ VideoTimeLine::close_session ()
video_filename = "";
video_duration = 0;
GuiUpdate("set-xjadeo-sensitive-off");
+ GuiUpdate("video-unavailable");
}
void
@@ -154,29 +156,29 @@ VideoTimeLine::set_session (ARDOUR::Session *s)
const XMLProperty* proph = node->property (X_("Height"));
if (proph) {
- editor->set_video_timeline_height(atoi(proph->value().c_str()));
+ editor->set_video_timeline_height(atoi(proph->value()));
}
#if 0 /* TODO THINK: set FPS first time only ?! */
const XMLProperty* propasfps = node->property (X_("AutoFPS"));
if (propasfps) {
- auto_set_session_fps = atoi(propasfps->value().c_str())?true:false;
+ auto_set_session_fps = atoi(propasfps->value())?true:false;
}
#endif
const XMLProperty* propoffset = node->property (X_("VideoOffset"));
if (propoffset) {
- video_offset = atoll(propoffset->value().c_str());
+ video_offset = atoll(propoffset->value());
video_offset_p = video_offset;
}
const XMLProperty* proplock = node->property (X_("VideoOffsetLock"));
if (proplock) {
- video_offset_lock = atoi(proplock->value().c_str())?true:false;
+ video_offset_lock = atoi(proplock->value())?true:false;
}
const XMLProperty* localfile = node->property (X_("LocalFile"));
if (localfile) {
- local_file = atoi(localfile->value().c_str())?true:false;
+ local_file = atoi(localfile->value())?true:false;
}
const XMLProperty* propf = node->property (X_("Filename"));
@@ -224,7 +226,7 @@ VideoTimeLine::set_state (const XMLNode& node, int /*version*/)
LocaleGuard lg (X_("POSIX"));
const XMLProperty* propoffset = node.property (X_("VideoOffset"));
if (propoffset) {
- video_offset = atoll(propoffset->value().c_str());
+ video_offset = atoll(propoffset->value());
}
ARDOUR_UI::instance()->flush_videotimeline_cache(true);
return 0;
@@ -344,28 +346,26 @@ VideoTimeLine::update_video_timeline()
assert (vtl_dist > 0);
assert (apv > 0);
-#define GOFFSET (video_offset)
+ leftmost_video_frame = floor (floor((leftmost_frame - video_start_offset - video_offset ) / vtl_dist) * vtl_dist / apv);
- leftmost_video_frame = floor (floor((leftmost_sample - video_start_offset - GOFFSET ) / vtl_dist) * vtl_dist / apv);
-
- vtl_start = rint (GOFFSET + video_start_offset + leftmost_video_frame * apv);
- visible_video_frames = 2 + ceil(editor->current_page_samples() / vtl_dist); /* +2 left+right partial frames */
+ vtl_start = rint (video_offset + video_start_offset + leftmost_video_frame * apv);
+ visible_video_frames = 2 + ceil(editor->current_page_frames() / vtl_dist); /* +2 left+right partial frames */
/* expand timeline (cache next/prev page images) */
vtl_start -= visible_video_frames * vtl_dist;
visible_video_frames *=3;
- if (vtl_start < GOFFSET ) {
+ if (vtl_start < video_offset ) {
visible_video_frames += ceil(vtl_start/vtl_dist);
- vtl_start = GOFFSET;
+ vtl_start = video_offset;
}
/* apply video-file constraints */
- if (vtl_start > video_start_offset + video_duration + GOFFSET ) {
+ if (vtl_start > video_start_offset + video_duration + video_offset ) {
visible_video_frames = 0;
}
/* TODO optimize: compute rather than iterate */
- while (visible_video_frames > 0 && vtl_start + (visible_video_frames-1) * vtl_dist >= video_start_offset + video_duration + GOFFSET) {
+ while (visible_video_frames > 0 && vtl_start + (visible_video_frames-1) * vtl_dist >= video_start_offset + video_duration + video_offset) {
--visible_video_frames;
}
@@ -398,13 +398,13 @@ VideoTimeLine::update_video_timeline()
#endif
for (unsigned int vfcount=0; vfcount < visible_video_frames; ++vfcount){
- framepos_t vfpos = vtl_start + vfcount * vtl_dist; /* unit: audio-samples */
- framepos_t vframeno = rint ( (vfpos - GOFFSET) / apv); /* unit: video-frames */
- vfpos = (vframeno * apv ) + GOFFSET; /* audio-frame corresponding to /rounded/ video-frame */
+ framepos_t vfpos = vtl_start + vfcount * vtl_dist; /* unit: audio-frames */
+ framepos_t vframeno = rint ( (vfpos - video_offset) / apv); /* unit: video-frames */
+ vfpos = (vframeno * apv ) + video_offset; /* audio-frame corresponding to /rounded/ video-frame */
int rightend = -1; /* unit: pixels */
- if (vfpos + vtl_dist > video_start_offset + video_duration + GOFFSET) {
- rightend = display_vframe_width * (video_start_offset + video_duration + GOFFSET - vfpos) / vtl_dist;
+ if (vfpos + vtl_dist > video_start_offset + video_duration + video_offset) {
+ rightend = display_vframe_width * (video_start_offset + video_duration + video_offset - vfpos) / vtl_dist;
//printf("lf(e): %lu\n", vframeno); // XXX
}
VideoImageFrame * frame = get_video_frame(vframeno, cut, rightend);
@@ -423,11 +423,12 @@ VideoTimeLine::update_video_timeline()
} else {
int vfcount=remaining.front();
remaining.pop_front();
- framepos_t vfpos = vtl_start + vfcount * vtl_dist; /* unit: audio-samples */
- framepos_t vframeno = rint ((vfpos - GOFFSET) / apv); /* unit: video-frames */
+ framepos_t vfpos = vtl_start + vfcount * vtl_dist; /* unit: audio-frames */
+ framepos_t vframeno = rint ((vfpos - video_offset) / apv); /* unit: video-frames */
int rightend = -1; /* unit: pixels */
- if (vfpos + vtl_dist > video_start_offset + video_duration + GOFFSET) {
- rightend = display_vframe_width * (video_start_offset + video_duration + GOFFSET - vfpos) / vtl_dist;
+ if (vfpos + vtl_dist > video_start_offset + video_duration + video_offset) {
+ rightend = display_vframe_width * (video_start_offset + video_duration + video_offset - vfpos) / vtl_dist;
+ //printf("lf(n): %lu\n", vframeno); // XXX
}
frame->set_position(vfpos);
frame->set_videoframe(vframeno, rightend);
@@ -463,6 +464,9 @@ VideoTimeLine::video_file_info (std::string filename, bool local)
video_server_url, translated_filename(),
video_file_fps, _duration, _start_offset, video_aspect_ratio)) {
warning << _("Parsing video file info failed. Is the Video Server running? Is the file readable by the Video Server? Does the docroot match? Is it a video file?") << endmsg;
+ video_duration = 0;
+ GuiUpdate("set-xjadeo-sensitive-off");
+ GuiUpdate("video-unavailable");
return false;
}
video_duration = _duration * _session->nominal_frame_rate() / video_file_fps;
@@ -529,6 +533,7 @@ VideoTimeLine::video_file_info (std::string filename, bool local)
#endif
}
VtlUpdate();
+ GuiUpdate("video-available");
return true;
}
@@ -549,6 +554,39 @@ VideoTimeLine::check_server ()
return ok;
}
+bool
+VideoTimeLine::check_server_docroot ()
+{
+ bool ok = true;
+ char url[1024];
+ std::vector<std::vector<std::string> > lines;
+
+ if (video_server_url.find("/localhost:") == string::npos) {
+ return true;
+ }
+ snprintf(url, sizeof(url), "%s%src?format=csv"
+ , video_server_url.c_str()
+ , (video_server_url.length()>0 && video_server_url.at(video_server_url.length()-1) == '/')?"":"/"
+ );
+ char *res=curl_http_get(url, NULL);
+ if (!res) {
+ return false;
+ }
+
+ ParseCSV(std::string(res), lines);
+ if ( lines.empty()
+ || lines.at(0).empty()
+ || lines.at(0).at(0) != video_get_docroot(Config)) {
+ warning << string_compose(
+ _("Video-server docroot mismatch. Ardour: '%1', video-server: '%2'. This usually means that the video server was not started by ardour and uses a different document-root."),
+ video_get_docroot(Config), lines.at(0).at(0))
+ << endmsg;
+ ok = false; // TODO allow to override
+ }
+ free(res);
+ return ok;
+}
+
void
VideoTimeLine::gui_update(std::string const & t) {
/* this is to be called via GuiUpdate() only. */
@@ -589,6 +627,10 @@ VideoTimeLine::gui_update(std::string const & t) {
editor->toggle_xjadeo_viewoption(6, 1);
} else if (t == "xjadeo-window-letterbox-off") {
editor->toggle_xjadeo_viewoption(6, 0);
+ } else if (t == "video-available") {
+ editor->set_close_video_sensitive(true);
+ } else if (t == "video-unavailable") {
+ editor->set_close_video_sensitive(false);
}
}
@@ -604,7 +646,7 @@ VideoTimeLine::set_height (int height) {
void
VideoTimeLine::vmon_update () {
if (vmonitor && vmonitor->is_started()) {
- vmonitor->set_offset( GOFFSET); // TODO proper re-init xjadeo w/o restart not just offset.
+ vmonitor->set_offset(video_offset); // TODO proper re-init xjadeo w/o restart not just offset.
}
}
@@ -698,12 +740,20 @@ VideoTimeLine::open_video_monitor() {
if (!vmonitor) {
vmonitor = new VideoMonitor(editor, _xjadeo_bin);
vmonitor->set_session(_session);
+ vmonitor->set_offset(video_offset);
vmonitor->Terminated.connect (sigc::mem_fun (*this, &VideoTimeLine::terminated_video_monitor));
vmonitor->UiState.connect (*this, invalidator (*this), boost::bind (&VideoTimeLine::gui_update, this, _1), gui_context());
} else if (vmonitor->is_started()) {
return;
}
+#if 0
+ /* unused for now.
+ * the idea is to selective ignore certain monitor window
+ * states if xjadeo is not running on the same host as ardour.
+ * However with the removal of the video-monitor-startup-dialogue
+ * (git rev 5a4d0fff0) these settings are currently not accessible.
+ */
int xj_settings_mask = vmonitor->restore_settings_mask();
if (_session) {
/* load mask from Session */
@@ -711,12 +761,13 @@ VideoTimeLine::open_video_monitor() {
if (node) {
const XMLProperty* prop = node->property (X_("mask"));
if (prop) {
- xj_settings_mask = atoi(prop->value().c_str());
+ xj_settings_mask = atoi(prop->value());
}
}
}
vmonitor->restore_settings_mask(xj_settings_mask);
+#endif
if (!vmonitor->start()) {
warning << "launching xjadeo failed.." << endmsg;
@@ -758,6 +809,7 @@ VideoTimeLine::control_video_monitor(int what, int param) {
void
VideoTimeLine::terminated_video_monitor () {
if (vmonitor) {
+ vmonitor->save_session();
delete vmonitor;
}
GuiUpdate("set-xjadeo-active-off");
@@ -772,26 +824,11 @@ VideoTimeLine::terminated_video_monitor () {
}
}
-/*
-void
-VideoTimeLine::clear_video_monitor_session_state ()
-{
- if (vmonitor) {
- vmonitor->clear_session_state();
- } else {
- if (!_session) { return; }
- XMLNode* node = new XMLNode(X_("XJSettings"));
- _session->add_extra_xml (*node);
- _session->set_dirty ();
- }
-}
-*/
-
void
VideoTimeLine::manual_seek_video_monitor (framepos_t pos)
{
if (!vmonitor) { return; }
if (!vmonitor->is_started()) { return; }
if (!vmonitor->synced_by_manual_seeks()) { return; }
- vmonitor->manual_seek(pos, false, GOFFSET); // XXX -> set offset in xjadeo
+ vmonitor->manual_seek(pos, false, video_offset); // XXX -> set offset in xjadeo
}