add variant of Rect::expand() that allows different amounts in each direction
[ardour.git] / gtk2_ardour / transcode_ffmpeg.h
index 3d794ee880e6c214d21366dda84a8718f95d368d..2ee7529dc51e83507fcb9ee11d2dc05326e43ef7 100644 (file)
@@ -21,7 +21,7 @@
 #define __ardour_transcode_ffmpeg_h__
 
 #include <string>
-#include "pbd/system_exec.h"
+#include "ardour/system_exec.h"
 #include "ardour/types.h"
 
 
@@ -122,18 +122,20 @@ class TranscodeFfmpeg : public sigc::trackable
                void set_avoffset(double av_offset) { m_avoffset = av_offset; }
                void set_leadinout(double lead_in, double lead_out) { m_lead_in = lead_in; m_lead_out = lead_out; }
 
+               void set_fps(double fps) { m_fps = fps; } // on export, used for rounding only.
 
 #if 1 /* tentative debug mode */
                void   set_debug (bool onoff) { debug_enable = onoff; }
 #endif
        protected:
                std::string infile;
-               PBD::SystemExec  *ffcmd;
+               ARDOUR::SystemExec  *ffcmd;
 
                bool probe ();
 
                double m_fps;
                double m_aspect;
+               std::string m_sar;
                ARDOUR::framecnt_t m_duration;
                int m_width;
                int m_height;