summaryrefslogtreecommitdiff
path: root/src/lib/playlist.cc
blob: 6913874b905d19e8574a20a0e89a1a525e74c6c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/*
    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include <libcxml/cxml.h>
#include <boost/shared_ptr.hpp>
#include <boost/lexical_cast.hpp>
#include "playlist.h"
#include "sndfile_content.h"
#include "sndfile_decoder.h"
#include "video_content.h"
#include "ffmpeg_decoder.h"
#include "ffmpeg_content.h"
#include "imagemagick_decoder.h"
#include "imagemagick_content.h"
#include "job.h"

#include "i18n.h"

using std::list;
using std::cout;
using std::vector;
using std::min;
using std::max;
using std::string;
using std::stringstream;
using boost::shared_ptr;
using boost::weak_ptr;
using boost::dynamic_pointer_cast;
using boost::lexical_cast;

Playlist::Playlist ()
	: _audio_from (AUDIO_FFMPEG)
	, _loop (1)
{

}

Playlist::Playlist (shared_ptr<const Playlist> other)
	: _audio_from (other->_audio_from)
	, _loop (other->_loop)
{
	for (ContentList::const_iterator i = other->_content.begin(); i != other->_content.end(); ++i) {
		_content.push_back ((*i)->clone ());
	}

	setup ();
}

void
Playlist::setup ()
{
	_audio_from = AUDIO_FFMPEG;

	_video.clear ();
	_audio.clear ();

	for (list<boost::signals2::connection>::iterator i = _content_connections.begin(); i != _content_connections.end(); ++i) {
		i->disconnect ();
	}
	
	_content_connections.clear ();

	for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {

		/* Video is video */
		shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*i);
		if (vc) {
			_video.push_back (vc);
		}

		/* FFmpegContent is audio if we are doing AUDIO_FFMPEG */
		shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (*i);
		if (fc && _audio_from == AUDIO_FFMPEG) {
			_audio.push_back (fc);
		}

		/* SndfileContent trumps FFmpegContent for audio */
		shared_ptr<SndfileContent> sc = dynamic_pointer_cast<SndfileContent> (*i);
		if (sc) {
			if (_audio_from == AUDIO_FFMPEG) {
				/* This is our fist SndfileContent; clear any FFmpegContent and
				   say that we are using Sndfile.
				*/
				_audio.clear ();
				_audio_from = AUDIO_SNDFILE;
			}
			
			_audio.push_back (sc);
		}

		_content_connections.push_back ((*i)->Changed.connect (bind (&Playlist::content_changed, this, _1, _2)));
	}
}

/** @return Length of our audio */
ContentAudioFrame
Playlist::audio_length () const
{
	ContentAudioFrame len = 0;

	switch (_audio_from) {
	case AUDIO_FFMPEG:
		/* FFmpeg content is sequential */
		for (list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin(); i != _audio.end(); ++i) {
			len += (*i)->audio_length ();
		}
		break;
	case AUDIO_SNDFILE:
		/* Sndfile content is simultaneous */
		for (list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin(); i != _audio.end(); ++i) {
			len = max (len, (*i)->audio_length ());
		}
		break;
	}

	return len * _loop;
}

/** @return number of audio channels */
int
Playlist::audio_channels () const
{
	int channels = 0;
	
	switch (_audio_from) {
	case AUDIO_FFMPEG:
		/* FFmpeg audio is sequential, so use the maximum channel count */
		for (list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin(); i != _audio.end(); ++i) {
			channels = max (channels, (*i)->audio_channels ());
		}
		break;
	case AUDIO_SNDFILE:
		/* Sndfile audio is simultaneous, so it's the sum of the channel counts */
		for (list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin(); i != _audio.end(); ++i) {
			channels += (*i)->audio_channels ();
		}
		break;
	}

	return channels;
}

int
Playlist::audio_frame_rate () const
{
	if (_audio.empty ()) {
		return 0;
	}

	/* XXX: assuming that all content has the same rate */
	return _audio.front()->audio_frame_rate ();
}

float
Playlist::video_frame_rate () const
{
	if (_video.empty ()) {
		return 0;
	}
	
	/* XXX: assuming all the same */
	return _video.front()->video_frame_rate ();
}

libdcp::Size
Playlist::video_size () const
{
	if (_video.empty ()) {
		return libdcp::Size ();
	}

	/* XXX: assuming all the same */
	return _video.front()->video_size ();
}

ContentVideoFrame
Playlist::video_length () const
{
	ContentVideoFrame len = 0;
	for (list<shared_ptr<const VideoContent> >::const_iterator i = _video.begin(); i != _video.end(); ++i) {
		len += (*i)->video_length ();
	}
	
	return len * _loop;
}

bool
Playlist::has_audio () const
{
	return !_audio.empty ();
}

void
Playlist::content_changed (weak_ptr<Content> c, int p)
{
	ContentChanged (c, p);
}

AudioMapping
Playlist::default_audio_mapping () const
{
	AudioMapping m;
	if (_audio.empty ()) {
		return m;
	}

	switch (_audio_from) {
	case AUDIO_FFMPEG:
	{
		/* XXX: assumes all the same */
		if (_audio.front()->audio_channels() == 1) {
			/* Map mono sources to centre */
			m.add (AudioMapping::Channel (_audio.front(), 0), libdcp::CENTRE);
		} else {
			int const N = min (_audio.front()->audio_channels (), MAX_AUDIO_CHANNELS);
			/* Otherwise just start with a 1:1 mapping */
			for (int i = 0; i < N; ++i) {
				m.add (AudioMapping::Channel (_audio.front(), i), (libdcp::Channel) i);
			}
		}
		break;
	}

	case AUDIO_SNDFILE:
	{
		int n = 0;
		for (list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin(); i != _audio.end(); ++i) {
			for (int j = 0; j < (*i)->audio_channels(); ++j) {
				m.add (AudioMapping::Channel (*i, j), (libdcp::Channel) n);
				++n;
				if (n >= MAX_AUDIO_CHANNELS) {
					break;
				}
			}
			if (n >= MAX_AUDIO_CHANNELS) {
				break;
			}
		}
		break;
	}
	}

	return m;
}

string
Playlist::audio_digest () const
{
	string t;
	
	for (list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin(); i != _audio.end(); ++i) {
		t += (*i)->digest ();

		shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<const FFmpegContent> (*i);
		if (fc) {
			t += lexical_cast<string> (fc->audio_stream()->id);
		}
	}

	t += lexical_cast<string> (_loop);

	return md5_digest (t.c_str(), t.length());
}

string
Playlist::video_digest () const
{
	string t;
	
	for (list<shared_ptr<const VideoContent> >::const_iterator i = _video.begin(); i != _video.end(); ++i) {
		t += (*i)->digest ();
		shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<const FFmpegContent> (*i);
		if (fc && fc->subtitle_stream()) {
			t += fc->subtitle_stream()->id;
		}
	}

	t += lexical_cast<string> (_loop);

	return md5_digest (t.c_str(), t.length());
}

ContentVideoFrame
Playlist::content_length () const
{
	float const vfr = video_frame_rate() > 0 ? video_frame_rate() : 24;
	int const afr = audio_frame_rate() > 0 ? audio_frame_rate() : 48000;

        return max (
		video_length(),
		ContentVideoFrame (audio_length() * vfr / afr)
		);
}

void
Playlist::set_from_xml (shared_ptr<const cxml::Node> node)
{
	list<shared_ptr<cxml::Node> > c = node->node_children ("Content");
	for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {

		string const type = (*i)->string_child ("Type");
		boost::shared_ptr<Content> c;
		
		if (type == "FFmpeg") {
			c.reset (new FFmpegContent (*i));
		} else if (type == "ImageMagick") {
			c.reset (new ImageMagickContent (*i));
		} else if (type == "Sndfile") {
			c.reset (new SndfileContent (*i));
		}

		_content.push_back (c);
	}

	_loop = node->number_child<int> ("Loop");

	setup ();
}

void
Playlist::as_xml (xmlpp::Node* node)
{
	for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) {
		(*i)->as_xml (node->add_child ("Content"));
	}

	node->add_child("Loop")->add_child_text(lexical_cast<string> (_loop));
}

void
Playlist::add (shared_ptr<Content> c)
{
	_content.push_back (c);
	setup ();
	Changed ();
}

void
Playlist::remove (shared_ptr<Content> c)
{
	ContentList::iterator i = find (_content.begin(), _content.end(), c);
	if (i != _content.end ()) {
		_content.erase (i);
	}

	setup ();
	Changed ();
}

void
Playlist::move_earlier (shared_ptr<Content> c)
{
	ContentList::iterator i = find (_content.begin(), _content.end(), c);
	if (i == _content.begin () || i == _content.end()) {
		return;
	}

	ContentList::iterator j = i;
	--j;

	swap (*i, *j);

	setup ();
	Changed ();
}

void
Playlist::move_later (shared_ptr<Content> c)
{
	ContentList::iterator i = find (_content.begin(), _content.end(), c);
	if (i == _content.end()) {
		return;
	}

	ContentList::iterator j = i;
	++j;
	if (j == _content.end ()) {
		return;
	}

	swap (*i, *j);

	setup ();
	Changed ();
}

void
Playlist::set_loop (int l)
{
	_loop = l;
	Changed ();
}
		
shared_ptr<FFmpegContent>
Playlist::ffmpeg () const
{
	for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
		shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (*i);
		if (fc) {
			return fc;
		}
	}

	return shared_ptr<FFmpegContent> ();
}

bool
Playlist::has_subtitles () const
{
	shared_ptr<FFmpegContent> fc = ffmpeg ();
	if (!fc) {
		return false;
	}
	
	return !fc->subtitle_streams().empty();
}

string
Playlist::description () const
{
	stringstream s;

	if (_video.empty ()) {
		s << _("There is no video.") << "\n";
	} else {
		s << _("Video will come from ");
		list<shared_ptr<const VideoContent> >::const_iterator i = _video.begin();
		while (i != _video.end ()) {
			s << (*i)->file().filename().string();
			++i;
			if (i != _video.end ()) {
				s << ", ";
			}
		}
		if (_video.size() > 1) {
			s << " " << _("in sequence.");
		}
		s << "\n";
	}

	if (_audio.empty ()) {
		s << _("There is no audio.") << "\n";
	} else {
		if (_audio_from == AUDIO_FFMPEG) {
			s << _("Audio will come from the video files.") << "\n";
		} else {
			s << _("Audio will come from ");
			list<shared_ptr<const AudioContent> >::const_iterator i = _audio.begin();
			while (i != _audio.end ()) {
				s << (*i)->file().filename().string();
				++i;
				if (i != _audio.end ()) {
					s << ", ";
				}
			}
			if (_audio.size() > 1) {
				s << _(" run simultaneously.");
			}
			s << "\n";
		}
	}
			
	return s.str ();
}