additional API to make it nicer to get an existing action group
[ardour.git] / tools / omf / omftool.h
index 4b794d94b48c7dd3b787d33bac651704c1007246..f33bb5cb77f9959e453c54da96d56d4b46e0c44e 100644 (file)
@@ -43,7 +43,7 @@ private:
        std::string session_name;
        std::vector<std::string> audiofile_path_vector;
        int      sample_rate; /* audio samples per second */
-       double   frame_rate;  /* time per video frame */
+       double   sample_rate;  /* time per video frame */
        XMLNode* session;
        XMLNode* sources;
        XMLNode* routes;
@@ -52,16 +52,16 @@ private:
        XMLNode* diskstreams;
        XMLNode* locations;
        XMLNode* options;
-       
+
        XMLNode* new_region_node ();
        XMLNode* new_source_node ();
        XMLNode* new_route_node ();
        XMLNode* new_playlist_node ();
        XMLNode* new_diskstream_node ();
-       
+
        typedef std::map<std::string,SourceInfo*> KnownSources;
        KnownSources known_sources;
-       
+
        SourceInfo* get_known_source (const char*);
        char* read_name (size_t offset, size_t length);
        bool get_offset_and_length (const char* offstr, const char* lenstr, uint32_t& offset, uint32_t& len);
@@ -80,7 +80,7 @@ private:
                else
                        return x;
        }
-       
+
        uint32_t e32(uint32_t x)
        {
                if (bigEndian)
@@ -91,7 +91,7 @@ private:
                else
                        return x;
        }
-       
+
        uint64_t e64(uint64_t x)
        {
                if (bigEndian)
@@ -106,7 +106,7 @@ private:
                else
                        return x;
        }
-       
+
 };
 
 #endif /* __ardour_omftool__ */