diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-08-27 15:54:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-08-27 15:54:13 +0100 |
| commit | 52dc5e2f2d0e5be8e9ba75b5978a1de58b11cb25 (patch) | |
| tree | 131d4cda682f1ca95ebf7f24004e272f4c4a62d3 /src/lib/audio_decoder_stream.cc | |
| parent | ee1ff372a27202a0244f48a04c955dbb48644573 (diff) | |
Fix Player::dcp_to_content_video with similar but not equal content/DCP frame rates.
Diffstat (limited to 'src/lib/audio_decoder_stream.cc')
| -rw-r--r-- | src/lib/audio_decoder_stream.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/audio_decoder_stream.cc b/src/lib/audio_decoder_stream.cc index 2f12af198..365be336f 100644 --- a/src/lib/audio_decoder_stream.cc +++ b/src/lib/audio_decoder_stream.cc @@ -62,7 +62,7 @@ AudioDecoderStream::get (Frame frame, Frame length, bool accurate) { shared_ptr<ContentAudio> dec; - _content->film()->log()->log (String::compose ("ADS has request for %1 %2", frame, length), Log::TYPE_DEBUG_DECODE); + _content->film()->log()->log (String::compose ("-> ADS has request for %1 %2", frame, length), Log::TYPE_DEBUG_DECODE); Frame const end = frame + length - 1; |
