diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-27 16:38:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-27 16:38:28 +0100 |
| commit | 661de111c0dbc968ecb004eca5b26f8400b136f1 (patch) | |
| tree | 3097de840bd9b6acf48bc5cc857371998cb00bff /src/lib/audio_content.cc | |
| parent | a28f926237c3de58c202843bea7913c276d0cbbc (diff) | |
FFmpegContent does not need audio_length().
Diffstat (limited to 'src/lib/audio_content.cc')
| -rw-r--r-- | src/lib/audio_content.cc | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc index def123fb1..e4b5a804e 100644 --- a/src/lib/audio_content.cc +++ b/src/lib/audio_content.cc @@ -40,12 +40,11 @@ using boost::shared_ptr; using boost::dynamic_pointer_cast; int const AudioContentProperty::AUDIO_CHANNELS = 200; -int const AudioContentProperty::AUDIO_LENGTH = 201; -int const AudioContentProperty::AUDIO_FRAME_RATE = 202; -int const AudioContentProperty::AUDIO_GAIN = 203; -int const AudioContentProperty::AUDIO_DELAY = 204; -int const AudioContentProperty::AUDIO_MAPPING = 205; -int const AudioContentProperty::AUDIO_PROCESSOR = 206; +int const AudioContentProperty::AUDIO_FRAME_RATE = 201; +int const AudioContentProperty::AUDIO_GAIN = 202; +int const AudioContentProperty::AUDIO_DELAY = 203; +int const AudioContentProperty::AUDIO_MAPPING = 204; +int const AudioContentProperty::AUDIO_PROCESSOR = 205; AudioContent::AudioContent (shared_ptr<const Film> f) : Content (f) @@ -188,9 +187,8 @@ string AudioContent::technical_summary () const { return String::compose ( - "audio: channels %1, length %2 frames, content rate %3, resampled rate %4", + "audio: channels %1, content rate %2, resampled rate %3", audio_channels(), - audio_length(), audio_frame_rate(), resampled_audio_frame_rate() ); |
