diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-22 12:51:12 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-03-22 12:51:12 +0000 |
| commit | 0561cd92194991839720f60a045133304b24cbba (patch) | |
| tree | 70603f3dcf435ed51a1b8bd15759d773785f2f12 | |
| parent | 3bd9acd5cd3bf5382ad79c295ec9d9aca828dc32 (diff) | |
Fix incorrect dcpinfo output for sound assets.
| -rw-r--r-- | tools/dcpinfo.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/dcpinfo.cc b/tools/dcpinfo.cc index d0edbd3b..1de50b78 100644 --- a/tools/dcpinfo.cc +++ b/tools/dcpinfo.cc @@ -147,9 +147,9 @@ main_sound (shared_ptr<Reel> reel) { if (reel->main_sound()) { cout << " Sound ID: " << reel->main_sound()->id() - << " entry " << reel->main_picture()->entry_point() - << " duration " << reel->main_picture()->duration() - << " intrinsic " << reel->main_picture()->intrinsic_duration(); + << " entry " << reel->main_sound()->entry_point() + << " duration " << reel->main_sound()->duration() + << " intrinsic " << reel->main_sound()->intrinsic_duration(); if (reel->main_sound()->asset_ref().resolved()) { if (reel->main_sound()->asset()) { cout << "\n Sound: " |
