Merge master; fix crash on new film.
[dcpomatic.git] / src / lib / util.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3     Copyright (C) 2000-2007 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 /** @file src/lib/util.cc
22  *  @brief Some utility functions and classes.
23  */
24
25 #include <sstream>
26 #include <iomanip>
27 #include <iostream>
28 #include <fstream>
29 #include <climits>
30 #ifdef DCPOMATIC_POSIX
31 #include <execinfo.h>
32 #include <cxxabi.h>
33 #endif
34 #include <libssh/libssh.h>
35 #include <signal.h>
36 #include <boost/algorithm/string.hpp>
37 #include <boost/bind.hpp>
38 #include <boost/lambda/lambda.hpp>
39 #include <boost/lexical_cast.hpp>
40 #include <boost/thread.hpp>
41 #include <boost/filesystem.hpp>
42 #include <openjpeg.h>
43 #include <openssl/md5.h>
44 #include <magick/MagickCore.h>
45 #include <magick/version.h>
46 #include <libdcp/version.h>
47 extern "C" {
48 #include <libavcodec/avcodec.h>
49 #include <libavformat/avformat.h>
50 #include <libswscale/swscale.h>
51 #include <libavfilter/avfiltergraph.h>
52 #include <libpostproc/postprocess.h>
53 #include <libavutil/pixfmt.h>
54 }
55 #include "util.h"
56 #include "exceptions.h"
57 #include "scaler.h"
58 #include "format.h"
59 #include "dcp_content_type.h"
60 #include "filter.h"
61 #include "sound_processor.h"
62 #include "config.h"
63
64 #include "i18n.h"
65
66 using std::string;
67 using std::stringstream;
68 using std::setfill;
69 using std::ostream;
70 using std::endl;
71 using std::vector;
72 using std::hex;
73 using std::setw;
74 using std::ifstream;
75 using std::ios;
76 using std::min;
77 using std::max;
78 using std::list;
79 using std::multimap;
80 using std::istream;
81 using std::numeric_limits;
82 using std::pair;
83 using boost::shared_ptr;
84 using boost::thread;
85 using boost::lexical_cast;
86 using boost::optional;
87 using libdcp::Size;
88
89 boost::thread::id ui_thread;
90
91 /** Convert some number of seconds to a string representation
92  *  in hours, minutes and seconds.
93  *
94  *  @param s Seconds.
95  *  @return String of the form H:M:S (where H is hours, M
96  *  is minutes and S is seconds).
97  */
98 string
99 seconds_to_hms (int s)
100 {
101         int m = s / 60;
102         s -= (m * 60);
103         int h = m / 60;
104         m -= (h * 60);
105
106         stringstream hms;
107         hms << h << N_(":");
108         hms.width (2);
109         hms << std::setfill ('0') << m << N_(":");
110         hms.width (2);
111         hms << std::setfill ('0') << s;
112
113         return hms.str ();
114 }
115
116 /** @param s Number of seconds.
117  *  @return String containing an approximate description of s (e.g. "about 2 hours")
118  */
119 string
120 seconds_to_approximate_hms (int s)
121 {
122         int m = s / 60;
123         s -= (m * 60);
124         int h = m / 60;
125         m -= (h * 60);
126
127         stringstream ap;
128         
129         if (h > 0) {
130                 if (m > 30) {
131                         ap << (h + 1) << N_(" ") << _("hours");
132                 } else {
133                         if (h == 1) {
134                                 ap << N_("1 ") << _("hour");
135                         } else {
136                                 ap << h << N_(" ") << _("hours");
137                         }
138                 }
139         } else if (m > 0) {
140                 if (m == 1) {
141                         ap << N_("1 ") << _("minute");
142                 } else {
143                         ap << m << N_(" ") << _("minutes");
144                 }
145         } else {
146                 ap << s << N_(" ") << _("seconds");
147         }
148
149         return ap.str ();
150 }
151
152 #ifdef DCPOMATIC_POSIX
153 /** @param l Mangled C++ identifier.
154  *  @return Demangled version.
155  */
156 static string
157 demangle (string l)
158 {
159         string::size_type const b = l.find_first_of (N_("("));
160         if (b == string::npos) {
161                 return l;
162         }
163
164         string::size_type const p = l.find_last_of (N_("+"));
165         if (p == string::npos) {
166                 return l;
167         }
168
169         if ((p - b) <= 1) {
170                 return l;
171         }
172         
173         string const fn = l.substr (b + 1, p - b - 1);
174
175         int status;
176         try {
177                 
178                 char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
179                 string d (realname);
180                 free (realname);
181                 return d;
182                 
183         } catch (std::exception) {
184                 
185         }
186         
187         return l;
188 }
189
190 /** Write a stacktrace to an ostream.
191  *  @param out Stream to write to.
192  *  @param levels Number of levels to go up the call stack.
193  */
194 void
195 stacktrace (ostream& out, int levels)
196 {
197         void *array[200];
198         size_t size;
199         char **strings;
200         size_t i;
201      
202         size = backtrace (array, 200);
203         strings = backtrace_symbols (array, size);
204      
205         if (strings) {
206                 for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
207                         out << N_("  ") << demangle (strings[i]) << "\n";
208                 }
209                 
210                 free (strings);
211         }
212 }
213 #endif
214
215 /** @param v Version as used by FFmpeg.
216  *  @return A string representation of v.
217  */
218 static string
219 ffmpeg_version_to_string (int v)
220 {
221         stringstream s;
222         s << ((v & 0xff0000) >> 16) << N_(".") << ((v & 0xff00) >> 8) << N_(".") << (v & 0xff);
223         return s.str ();
224 }
225
226 /** Return a user-readable string summarising the versions of our dependencies */
227 string
228 dependency_version_summary ()
229 {
230         stringstream s;
231         s << N_("libopenjpeg ") << opj_version () << N_(", ")
232           << N_("libavcodec ") << ffmpeg_version_to_string (avcodec_version()) << N_(", ")
233           << N_("libavfilter ") << ffmpeg_version_to_string (avfilter_version()) << N_(", ")
234           << N_("libavformat ") << ffmpeg_version_to_string (avformat_version()) << N_(", ")
235           << N_("libavutil ") << ffmpeg_version_to_string (avutil_version()) << N_(", ")
236           << N_("libpostproc ") << ffmpeg_version_to_string (postproc_version()) << N_(", ")
237           << N_("libswscale ") << ffmpeg_version_to_string (swscale_version()) << N_(", ")
238           << MagickVersion << N_(", ")
239           << N_("libssh ") << ssh_version (0) << N_(", ")
240           << N_("libdcp ") << libdcp::version << N_(" git ") << libdcp::git_commit;
241
242         return s.str ();
243 }
244
245 double
246 seconds (struct timeval t)
247 {
248         return t.tv_sec + (double (t.tv_usec) / 1e6);
249 }
250
251 /** Call the required functions to set up DCP-o-matic's static arrays, etc.
252  *  Must be called from the UI thread, if there is one.
253  */
254 void
255 dcpomatic_setup ()
256 {
257         avfilter_register_all ();
258         
259         Format::setup_formats ();
260         DCPContentType::setup_dcp_content_types ();
261         Scaler::setup_scalers ();
262         Filter::setup_filters ();
263         SoundProcessor::setup_sound_processors ();
264
265         ui_thread = boost::this_thread::get_id ();
266 }
267
268 #ifdef DCPOMATIC_WINDOWS
269 boost::filesystem::path
270 mo_path ()
271 {
272         wchar_t buffer[512];
273         GetModuleFileName (0, buffer, 512 * sizeof(wchar_t));
274         boost::filesystem::path p (buffer);
275         p = p.parent_path ();
276         p = p.parent_path ();
277         p /= "locale";
278         return p;
279 }
280 #endif
281
282 void
283 dcpomatic_setup_i18n (string lang)
284 {
285 #ifdef DCPOMATIC_POSIX
286         lang += ".UTF8";
287 #endif
288
289         if (!lang.empty ()) {
290                 /* Override our environment language; this is essential on
291                    Windows.
292                 */
293                 char cmd[64];
294                 snprintf (cmd, sizeof(cmd), "LANGUAGE=%s", lang.c_str ());
295                 putenv (cmd);
296                 snprintf (cmd, sizeof(cmd), "LANG=%s", lang.c_str ());
297                 putenv (cmd);
298         }
299
300         setlocale (LC_ALL, "");
301         textdomain ("libdcpomatic");
302
303 #ifdef DCPOMATIC_WINDOWS
304         bindtextdomain ("libdcpomatic", mo_path().string().c_str());
305         bind_textdomain_codeset ("libdcpomatic", "UTF8");
306 #endif  
307
308 #ifdef DCPOMATIC_POSIX
309         bindtextdomain ("libdcpomatic", POSIX_LOCALE_PREFIX);
310 #endif
311 }
312
313 /** @param start Start position for the crop within the image.
314  *  @param size Size of the cropped area.
315  *  @return FFmpeg crop filter string.
316  */
317 string
318 crop_string (Position start, libdcp::Size size)
319 {
320         stringstream s;
321         s << N_("crop=") << size.width << N_(":") << size.height << N_(":") << start.x << N_(":") << start.y;
322         return s.str ();
323 }
324
325 /** @param s A string.
326  *  @return Parts of the string split at spaces, except when a space is within quotation marks.
327  */
328 vector<string>
329 split_at_spaces_considering_quotes (string s)
330 {
331         vector<string> out;
332         bool in_quotes = false;
333         string c;
334         for (string::size_type i = 0; i < s.length(); ++i) {
335                 if (s[i] == ' ' && !in_quotes) {
336                         out.push_back (c);
337                         c = N_("");
338                 } else if (s[i] == '"') {
339                         in_quotes = !in_quotes;
340                 } else {
341                         c += s[i];
342                 }
343         }
344
345         out.push_back (c);
346         return out;
347 }
348
349 string
350 md5_digest (void const * data, int size)
351 {
352         MD5_CTX md5_context;
353         MD5_Init (&md5_context);
354         MD5_Update (&md5_context, data, size);
355         unsigned char digest[MD5_DIGEST_LENGTH];
356         MD5_Final (digest, &md5_context);
357         
358         stringstream s;
359         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
360                 s << std::hex << std::setfill('0') << std::setw(2) << ((int) digest[i]);
361         }
362
363         return s.str ();
364 }
365
366 /** @param file File name.
367  *  @return MD5 digest of file's contents.
368  */
369 string
370 md5_digest (boost::filesystem::path file)
371 {
372         ifstream f (file.string().c_str(), std::ios::binary);
373         if (!f.good ()) {
374                 throw OpenFileError (file.string());
375         }
376         
377         f.seekg (0, std::ios::end);
378         int bytes = f.tellg ();
379         f.seekg (0, std::ios::beg);
380
381         int const buffer_size = 64 * 1024;
382         char buffer[buffer_size];
383
384         MD5_CTX md5_context;
385         MD5_Init (&md5_context);
386         while (bytes > 0) {
387                 int const t = min (bytes, buffer_size);
388                 f.read (buffer, t);
389                 MD5_Update (&md5_context, buffer, t);
390                 bytes -= t;
391         }
392
393         unsigned char digest[MD5_DIGEST_LENGTH];
394         MD5_Final (digest, &md5_context);
395
396         stringstream s;
397         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
398                 s << std::hex << std::setfill('0') << std::setw(2) << ((int) digest[i]);
399         }
400
401         return s.str ();
402 }
403
404 static bool
405 about_equal (float a, float b)
406 {
407         /* A film of F seconds at f FPS will be Ff frames;
408            Consider some delta FPS d, so if we run the same
409            film at (f + d) FPS it will last F(f + d) seconds.
410
411            Hence the difference in length over the length of the film will
412            be F(f + d) - Ff frames
413             = Ff + Fd - Ff frames
414             = Fd frames
415             = Fd/f seconds
416  
417            So if we accept a difference of 1 frame, ie 1/f seconds, we can
418            say that
419
420            1/f = Fd/f
421         ie 1 = Fd
422         ie d = 1/F
423  
424            So for a 3hr film, ie F = 3 * 60 * 60 = 10800, the acceptable
425            FPS error is 1/F ~= 0.0001 ~= 10-e4
426         */
427
428         return (fabs (a - b) < 1e-4);
429 }
430
431 class FrameRateCandidate
432 {
433 public:
434         FrameRateCandidate (float source_, int dcp_)
435                 : source (source_)
436                 , dcp (dcp_)
437         {}
438
439         float source;
440         int dcp;
441 };
442
443 int
444 best_dcp_frame_rate (float source_fps)
445 {
446         list<int> const allowed_dcp_frame_rates = Config::instance()->allowed_dcp_frame_rates ();
447
448         /* Work out what rates we could manage, including those achieved by using skip / repeat. */
449         list<FrameRateCandidate> candidates;
450
451         /* Start with the ones without skip / repeat so they will get matched in preference to skipped/repeated ones */
452         for (list<int>::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) {
453                 candidates.push_back (FrameRateCandidate (*i, *i));
454         }
455
456         /* Then the skip/repeat ones */
457         for (list<int>::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) {
458                 candidates.push_back (FrameRateCandidate (float (*i) / 2, *i));
459                 candidates.push_back (FrameRateCandidate (float (*i) * 2, *i));
460         }
461
462         /* Pick the best one, bailing early if we hit an exact match */
463         float error = std::numeric_limits<float>::max ();
464         optional<FrameRateCandidate> best;
465         list<FrameRateCandidate>::iterator i = candidates.begin();
466         while (i != candidates.end()) {
467                 
468                 if (about_equal (i->source, source_fps)) {
469                         best = *i;
470                         break;
471                 }
472
473                 float const e = fabs (i->source - source_fps);
474                 if (e < error) {
475                         error = e;
476                         best = *i;
477                 }
478
479                 ++i;
480         }
481
482         assert (best);
483         return best->dcp;
484 }
485
486 /** @param An arbitrary sampling rate.
487  *  @return The appropriate DCP-approved sampling rate (48kHz or 96kHz).
488  */
489 int
490 dcp_audio_sample_rate (int fs)
491 {
492         if (fs <= 48000) {
493                 return 48000;
494         }
495
496         return 96000;
497 }
498
499 /** @param index Colour LUT index.
500  *  @return Human-readable name.
501  */
502 string
503 colour_lut_index_to_name (int index)
504 {
505         switch (index) {
506         case 0:
507                 return _("sRGB");
508         case 1:
509                 return _("Rec 709");
510         }
511
512         assert (false);
513         return N_("");
514 }
515
516 Socket::Socket (int timeout)
517         : _deadline (_io_service)
518         , _socket (_io_service)
519         , _timeout (timeout)
520 {
521         _deadline.expires_at (boost::posix_time::pos_infin);
522         check ();
523 }
524
525 void
526 Socket::check ()
527 {
528         if (_deadline.expires_at() <= boost::asio::deadline_timer::traits_type::now ()) {
529                 _socket.close ();
530                 _deadline.expires_at (boost::posix_time::pos_infin);
531         }
532
533         _deadline.async_wait (boost::bind (&Socket::check, this));
534 }
535
536 /** Blocking connect.
537  *  @param endpoint End-point to connect to.
538  */
539 void
540 Socket::connect (boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp> const & endpoint)
541 {
542         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
543         boost::system::error_code ec = boost::asio::error::would_block;
544         _socket.async_connect (endpoint, boost::lambda::var(ec) = boost::lambda::_1);
545         do {
546                 _io_service.run_one();
547         } while (ec == boost::asio::error::would_block);
548
549         if (ec || !_socket.is_open ()) {
550                 throw NetworkError (_("connect timed out"));
551         }
552 }
553
554 /** Blocking write.
555  *  @param data Buffer to write.
556  *  @param size Number of bytes to write.
557  */
558 void
559 Socket::write (uint8_t const * data, int size)
560 {
561         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
562         boost::system::error_code ec = boost::asio::error::would_block;
563
564         boost::asio::async_write (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
565         
566         do {
567                 _io_service.run_one ();
568         } while (ec == boost::asio::error::would_block);
569
570         if (ec) {
571                 throw NetworkError (ec.message ());
572         }
573 }
574
575 void
576 Socket::write (uint32_t v)
577 {
578         v = htonl (v);
579         write (reinterpret_cast<uint8_t*> (&v), 4);
580 }
581
582 /** Blocking read.
583  *  @param data Buffer to read to.
584  *  @param size Number of bytes to read.
585  */
586 void
587 Socket::read (uint8_t* data, int size)
588 {
589         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
590         boost::system::error_code ec = boost::asio::error::would_block;
591
592         boost::asio::async_read (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
593
594         do {
595                 _io_service.run_one ();
596         } while (ec == boost::asio::error::would_block);
597         
598         if (ec) {
599                 throw NetworkError (ec.message ());
600         }
601 }
602
603 uint32_t
604 Socket::read_uint32 ()
605 {
606         uint32_t v;
607         read (reinterpret_cast<uint8_t *> (&v), 4);
608         return ntohl (v);
609 }
610
611 /** @param other A Rect.
612  *  @return The intersection of this with `other'.
613  */
614 Rect
615 Rect::intersection (Rect const & other) const
616 {
617         int const tx = max (x, other.x);
618         int const ty = max (y, other.y);
619         
620         return Rect (
621                 tx, ty,
622                 min (x + width, other.x + other.width) - tx,
623                 min (y + height, other.y + other.height) - ty
624                 );
625 }
626
627 /** Round a number up to the nearest multiple of another number.
628  *  @param c Index.
629  *  @param s Array of numbers to round, indexed by c.
630  *  @param t Multiple to round to.
631  *  @return Rounded number.
632  */
633 int
634 stride_round_up (int c, int const * stride, int t)
635 {
636         int const a = stride[c] + (t - 1);
637         return a - (a % t);
638 }
639
640 int
641 stride_lookup (int c, int const * stride)
642 {
643         return stride[c];
644 }
645
646 /** Read a sequence of key / value pairs from a text stream;
647  *  the keys are the first words on the line, and the values are
648  *  the remainder of the line following the key.  Lines beginning
649  *  with # are ignored.
650  *  @param s Stream to read.
651  *  @return key/value pairs.
652  */
653 multimap<string, string>
654 read_key_value (istream &s) 
655 {
656         multimap<string, string> kv;
657         
658         string line;
659         while (getline (s, line)) {
660                 if (line.empty ()) {
661                         continue;
662                 }
663
664                 if (line[0] == '#') {
665                         continue;
666                 }
667
668                 if (line[line.size() - 1] == '\r') {
669                         line = line.substr (0, line.size() - 1);
670                 }
671
672                 size_t const s = line.find (' ');
673                 if (s == string::npos) {
674                         continue;
675                 }
676
677                 kv.insert (make_pair (line.substr (0, s), line.substr (s + 1)));
678         }
679
680         return kv;
681 }
682
683 string
684 get_required_string (multimap<string, string> const & kv, string k)
685 {
686         if (kv.count (k) > 1) {
687                 throw StringError (N_("unexpected multiple keys in key-value set"));
688         }
689
690         multimap<string, string>::const_iterator i = kv.find (k);
691         
692         if (i == kv.end ()) {
693                 throw StringError (String::compose (_("missing key %1 in key-value set"), k));
694         }
695
696         return i->second;
697 }
698
699 int
700 get_required_int (multimap<string, string> const & kv, string k)
701 {
702         string const v = get_required_string (kv, k);
703         return lexical_cast<int> (v);
704 }
705
706 float
707 get_required_float (multimap<string, string> const & kv, string k)
708 {
709         string const v = get_required_string (kv, k);
710         return lexical_cast<float> (v);
711 }
712
713 string
714 get_optional_string (multimap<string, string> const & kv, string k)
715 {
716         if (kv.count (k) > 1) {
717                 throw StringError (N_("unexpected multiple keys in key-value set"));
718         }
719
720         multimap<string, string>::const_iterator i = kv.find (k);
721         if (i == kv.end ()) {
722                 return N_("");
723         }
724
725         return i->second;
726 }
727
728 int
729 get_optional_int (multimap<string, string> const & kv, string k)
730 {
731         if (kv.count (k) > 1) {
732                 throw StringError (N_("unexpected multiple keys in key-value set"));
733         }
734
735         multimap<string, string>::const_iterator i = kv.find (k);
736         if (i == kv.end ()) {
737                 return 0;
738         }
739
740         return lexical_cast<int> (i->second);
741 }
742
743 /** Construct an AudioBuffers.  Audio data is undefined after this constructor.
744  *  @param channels Number of channels.
745  *  @param frames Number of frames to reserve space for.
746  */
747 AudioBuffers::AudioBuffers (int channels, int frames)
748         : _channels (channels)
749         , _frames (frames)
750         , _allocated_frames (frames)
751 {
752         _data = new float*[_channels];
753         for (int i = 0; i < _channels; ++i) {
754                 _data[i] = new float[frames];
755         }
756 }
757
758 /** Copy constructor.
759  *  @param other Other AudioBuffers; data is copied.
760  */
761 AudioBuffers::AudioBuffers (AudioBuffers const & other)
762         : _channels (other._channels)
763         , _frames (other._frames)
764         , _allocated_frames (other._frames)
765 {
766         _data = new float*[_channels];
767         for (int i = 0; i < _channels; ++i) {
768                 _data[i] = new float[_frames];
769                 memcpy (_data[i], other._data[i], _frames * sizeof (float));
770         }
771 }
772
773 /* XXX: it's a shame that this is a copy-and-paste of the above;
774    probably fixable with c++0x.
775 */
776 AudioBuffers::AudioBuffers (boost::shared_ptr<const AudioBuffers> other)
777         : _channels (other->_channels)
778         , _frames (other->_frames)
779         , _allocated_frames (other->_frames)
780 {
781         _data = new float*[_channels];
782         for (int i = 0; i < _channels; ++i) {
783                 _data[i] = new float[_frames];
784                 memcpy (_data[i], other->_data[i], _frames * sizeof (float));
785         }
786 }
787
788 /** AudioBuffers destructor */
789 AudioBuffers::~AudioBuffers ()
790 {
791         for (int i = 0; i < _channels; ++i) {
792                 delete[] _data[i];
793         }
794
795         delete[] _data;
796 }
797
798 /** @param c Channel index.
799  *  @return Buffer for this channel.
800  */
801 float*
802 AudioBuffers::data (int c) const
803 {
804         assert (c >= 0 && c < _channels);
805         return _data[c];
806 }
807
808 /** Set the number of frames that these AudioBuffers will report themselves
809  *  as having.
810  *  @param f Frames; must be less than or equal to the number of allocated frames.
811  */
812 void
813 AudioBuffers::set_frames (int f)
814 {
815         assert (f <= _allocated_frames);
816         _frames = f;
817 }
818
819 /** Make all samples on all channels silent */
820 void
821 AudioBuffers::make_silent ()
822 {
823         for (int i = 0; i < _channels; ++i) {
824                 make_silent (i);
825         }
826 }
827
828 /** Make all samples on a given channel silent.
829  *  @param c Channel.
830  */
831 void
832 AudioBuffers::make_silent (int c)
833 {
834         assert (c >= 0 && c < _channels);
835         
836         for (int i = 0; i < _frames; ++i) {
837                 _data[c][i] = 0;
838         }
839 }
840
841 /** Copy data from another AudioBuffers to this one.  All channels are copied.
842  *  @param from AudioBuffers to copy from; must have the same number of channels as this.
843  *  @param frames_to_copy Number of frames to copy.
844  *  @param read_offset Offset to read from in `from'.
845  *  @param write_offset Offset to write to in `to'.
846  */
847 void
848 AudioBuffers::copy_from (AudioBuffers* from, int frames_to_copy, int read_offset, int write_offset)
849 {
850         assert (from->channels() == channels());
851
852         assert (from);
853         assert (read_offset >= 0 && (read_offset + frames_to_copy) <= from->_allocated_frames);
854         assert (write_offset >= 0 && (write_offset + frames_to_copy) <= _allocated_frames);
855
856         for (int i = 0; i < _channels; ++i) {
857                 memcpy (_data[i] + write_offset, from->_data[i] + read_offset, frames_to_copy * sizeof(float));
858         }
859 }
860
861 /** Move audio data around.
862  *  @param from Offset to move from.
863  *  @param to Offset to move to.
864  *  @param frames Number of frames to move.
865  */
866     
867 void
868 AudioBuffers::move (int from, int to, int frames)
869 {
870         if (frames == 0) {
871                 return;
872         }
873         
874         assert (from >= 0);
875         assert (from < _frames);
876         assert (to >= 0);
877         assert (to < _frames);
878         assert (frames > 0);
879         assert (frames <= _frames);
880         assert ((from + frames) <= _frames);
881         assert ((to + frames) <= _frames);
882         
883         for (int i = 0; i < _channels; ++i) {
884                 memmove (_data[i] + to, _data[i] + from, frames * sizeof(float));
885         }
886 }
887
888 /** Add data from from `from', `from_channel' to our channel `to_channel' */
889 void
890 AudioBuffers::accumulate (shared_ptr<const AudioBuffers> from, int from_channel, int to_channel)
891 {
892         int const N = frames ();
893         assert (from->frames() == N);
894
895         float* s = from->data (from_channel);
896         float* d = _data[to_channel];
897
898         for (int i = 0; i < N; ++i) {
899                 *d++ += *s++;
900         }
901 }
902
903 /** Trip an assert if the caller is not in the UI thread */
904 void
905 ensure_ui_thread ()
906 {
907         assert (boost::this_thread::get_id() == ui_thread);
908 }
909
910 /** @param v Content video frame.
911  *  @param audio_sample_rate Source audio sample rate.
912  *  @param frames_per_second Number of video frames per second.
913  *  @return Equivalent number of audio frames for `v'.
914  */
915 int64_t
916 video_frames_to_audio_frames (ContentVideoFrame v, float audio_sample_rate, float frames_per_second)
917 {
918         return ((int64_t) v * audio_sample_rate / frames_per_second);
919 }
920
921 /** @return A pair containing CPU model name and the number of processors */
922 pair<string, int>
923 cpu_info ()
924 {
925         pair<string, int> info;
926         info.second = 0;
927         
928 #ifdef DCPOMATIC_POSIX
929         ifstream f (N_("/proc/cpuinfo"));
930         while (f.good ()) {
931                 string l;
932                 getline (f, l);
933                 if (boost::algorithm::starts_with (l, N_("model name"))) {
934                         string::size_type const c = l.find (':');
935                         if (c != string::npos) {
936                                 info.first = l.substr (c + 2);
937                         }
938                 } else if (boost::algorithm::starts_with (l, N_("processor"))) {
939                         ++info.second;
940                 }
941         }
942 #endif  
943
944         return info;
945 }
946
947 string
948 audio_channel_name (int c)
949 {
950         assert (MAX_AUDIO_CHANNELS == 6);
951
952         /* TRANSLATORS: these are the names of audio channels; Lfe (sub) is the low-frequency
953            enhancement channel (sub-woofer)./
954         */
955         string const channels[] = {
956                 _("Left"),
957                 _("Right"),
958                 _("Centre"),
959                 _("Lfe (sub)"),
960                 _("Left surround"),
961                 _("Right surround"),
962         };
963
964         return channels[c];
965 }
966
967 FrameRateConversion::FrameRateConversion (float source, int dcp)
968         : skip (false)
969         , repeat (false)
970         , change_speed (false)
971 {
972         if (fabs (source / 2.0 - dcp) < (fabs (source - dcp))) {
973                 skip = true;
974         } else if (fabs (source * 2 - dcp) < fabs (source - dcp)) {
975                 repeat = true;
976         }
977
978         change_speed = !about_equal (source * factor(), dcp);
979
980         if (!skip && !repeat && !change_speed) {
981                 description = _("DCP and source have the same rate.\n");
982         } else {
983                 if (skip) {
984                         description = _("DCP will use every other frame of the source.\n");
985                 } else if (repeat) {
986                         description = _("Each source frame will be doubled in the DCP.\n");
987                 }
988
989                 if (change_speed) {
990                         float const pc = dcp * 100 / (source * factor());
991                         description += String::compose (_("DCP will run at %1%% of the source speed.\n"), pc);
992                 }
993         }
994 }
995
996 LocaleGuard::LocaleGuard ()
997         : _old (0)
998 {
999         char const * old = setlocale (LC_NUMERIC, 0);
1000
1001         if (old) {
1002                 _old = strdup (old);
1003                 if (strcmp (_old, "POSIX")) {
1004                         setlocale (LC_NUMERIC, "POSIX");
1005                 }
1006         }
1007 }
1008
1009 LocaleGuard::~LocaleGuard ()
1010 {
1011         setlocale (LC_NUMERIC, _old);
1012         free (_old);
1013 }