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