diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-17 20:23:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-17 20:23:43 +0000 |
| commit | f150c837cdc6eeee8f61e743586ddbaf2a8c8010 (patch) | |
| tree | f41d9caa339762701e462ce3dd64b786481d2909 /src/sound_asset.h | |
| parent | 828c320df8c56208a8834971f5d937ce06a4edf2 (diff) | |
Replace length with intrinsic_duration.
Diffstat (limited to 'src/sound_asset.h')
| -rw-r--r-- | src/sound_asset.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sound_asset.h b/src/sound_asset.h index bd1811b1..95efccd6 100644 --- a/src/sound_asset.h +++ b/src/sound_asset.h @@ -43,7 +43,7 @@ public: * @param mxf_name Name of MXF file to create. * @param progress Signal to inform of progress. * @param fps Frames per second. - * @param length Length in frames. + * @param intrinsic_duration Length of the whole asset in frames. * @param start_frame Frame in the source to start writing from. */ SoundAsset ( @@ -52,7 +52,7 @@ public: std::string mxf_name, boost::signals2::signal<void (float)>* progress, int fps, - int length, + int intrinsic_duration, int start_frame ); @@ -63,7 +63,7 @@ public: * @param mxf_name Name of MXF file to create. * @param progress Signal to inform of progress. * @param fps Frames per second. - * @param length Length in frames. + * @param intrinsic_duration Length of the whole asset in frames. * @param start_frame Frame in the source to start writing from. * @param channels Number of audio channels. */ @@ -73,7 +73,7 @@ public: std::string mxf_name, boost::signals2::signal<void (float)>* progress, int fps, - int length, + int intrinsic_duration, int start_frame, int channels ); @@ -82,7 +82,7 @@ public: std::string directory, std::string mxf_name, int fps, - int length + int intrinsic_duration ); /** Write details of this asset to a CPL stream. |
