summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils_videotl.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-03-12 22:00:09 +0100
committerRobin Gareus <robin@gareus.org>2013-03-13 20:28:15 +0100
commit0c3e840700a915fc1476cef73c591048f688f81e (patch)
tree3241845f899cfed86217db2f6f589740b2b9c04a /gtk2_ardour/utils_videotl.h
parentd91565093965b3405774acd878b3baf38839f4e4 (diff)
videotimline
squashed 694 commits from http://gareus.org/gitweb/?p=ardour3.git
Diffstat (limited to 'gtk2_ardour/utils_videotl.h')
-rw-r--r--gtk2_ardour/utils_videotl.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/gtk2_ardour/utils_videotl.h b/gtk2_ardour/utils_videotl.h
new file mode 100644
index 0000000000..d4633be91a
--- /dev/null
+++ b/gtk2_ardour/utils_videotl.h
@@ -0,0 +1,56 @@
+/*
+ Copyright (C) 2010-2013 Paul Davis
+ Author: Robin Gareus <robin@gareus.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+#ifdef WITH_VIDEOTIMELINE
+/** @file utils_videotl.h
+ * @brief common functions used for video-file im/export
+ */
+
+#ifndef __gtk_ardour_video_utils_h__
+#define __gtk_ardour_video_utils_h__
+
+#include <string>
+#include <gtkmm.h>
+
+#include "ardour/types.h"
+#include "ardour/template_utils.h"
+#include "ardour_dialog.h"
+
+bool confirm_video_outfn (std::string, std::string docroot="");
+std::string video_dest_dir (const std::string, const std::string);
+std::string video_dest_file (const std::string, const std::string);
+std::string strip_file_extension (const std::string infile);
+std::string get_file_extension (const std::string infile);
+
+void ParseCSV(const std::string &csv, std::vector<std::vector<std::string> > &lines);
+std::string video_map_path (std::string server_docroot, std::string filepath);
+void video_draw_cross (Glib::RefPtr<Gdk::Pixbuf> img);
+
+bool video_query_info (
+ std::string video_server_url,
+ std::string filepath,
+ double &video_file_fps,
+ long long int &video_duration,
+ double &video_start_offset,
+ double &video_aspect_ratio
+ );
+
+#endif /* __gtk_ardour_video_utils_h__ */
+
+#endif /* WITH_VIDEOTIMELINE */