From 740a372e92b2a8165f9c0a0e2370a49cca20fff7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 8 Sep 2016 15:27:35 +0100 Subject: Improve formatting of AudioContent technical summary. --- src/lib/audio_content.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc index 5d89719f7..909f89024 100644 --- a/src/lib/audio_content.cc +++ b/src/lib/audio_content.cc @@ -135,9 +135,9 @@ AudioContent::set_delay (int d) string AudioContent::technical_summary () const { - string s = "audio :"; + string s = "audio: "; BOOST_FOREACH (AudioStreamPtr i, streams ()) { - s += String::compose ("stream channels %1 rate %2", i->channels(), i->frame_rate()); + s += String::compose ("stream channels %1 rate %2 ", i->channels(), i->frame_rate()); } return s; -- cgit v1.2.3 From 65f4c4a5e84921452e6b71b3df177d82bd8203fb Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 12 Sep 2016 10:41:11 +0100 Subject: Bump libdcp for error fix. --- cscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cscript b/cscript index 4e3939d76..d0cbf211e 100644 --- a/cscript +++ b/cscript @@ -233,7 +233,7 @@ def dependencies(target): ffmpeg_options = {} return (('ffmpeg-cdist', '1d4a1a4', ffmpeg_options), - ('libdcp', '62da6ba'), + ('libdcp', '599af58'), ('libsub', '067c21c')) def configure_options(target): -- cgit v1.2.3