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