Cope with e.g. truehd audio streams having not every audio frame arriving with a...
[dcpomatic.git] / src / lib / ffmpeg_decoder.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/ffmpeg_decoder.cc
22  *  @brief A decoder using FFmpeg to decode content.
23  */
24
25 #include "filter.h"
26 #include "exceptions.h"
27 #include "image.h"
28 #include "util.h"
29 #include "log.h"
30 #include "ffmpeg_decoder.h"
31 #include "subtitle_decoder.h"
32 #include "ffmpeg_audio_stream.h"
33 #include "ffmpeg_subtitle_stream.h"
34 #include "video_filter_graph.h"
35 #include "audio_buffers.h"
36 #include "ffmpeg_content.h"
37 #include "raw_image_proxy.h"
38 #include "video_decoder.h"
39 #include "film.h"
40 #include "audio_decoder.h"
41 #include "compose.hpp"
42 #include "subtitle_content.h"
43 #include "audio_content.h"
44 #include <dcp/subtitle_string.h>
45 #include <sub/ssa_reader.h>
46 #include <sub/subtitle.h>
47 #include <sub/collect.h>
48 extern "C" {
49 #include <libavcodec/avcodec.h>
50 #include <libavformat/avformat.h>
51 }
52 #include <boost/foreach.hpp>
53 #include <boost/algorithm/string.hpp>
54 #include <vector>
55 #include <iomanip>
56 #include <iostream>
57 #include <stdint.h>
58
59 #include "i18n.h"
60
61 #define LOG_GENERAL(...) _log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
62 #define LOG_ERROR(...) _log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_ERROR);
63 #define LOG_WARNING_NC(...) _log->log (__VA_ARGS__, LogEntry::TYPE_WARNING);
64 #define LOG_WARNING(...) _log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_WARNING);
65
66 using std::cout;
67 using std::string;
68 using std::vector;
69 using std::list;
70 using std::min;
71 using std::pair;
72 using std::max;
73 using std::map;
74 using boost::shared_ptr;
75 using boost::is_any_of;
76 using boost::split;
77 using boost::optional;
78 using boost::dynamic_pointer_cast;
79 using dcp::Size;
80
81 FFmpegDecoder::FFmpegDecoder (shared_ptr<const FFmpegContent> c, shared_ptr<Log> log)
82         : FFmpeg (c)
83         , _log (log)
84         , _have_current_subtitle (false)
85 {
86         if (c->video) {
87                 video.reset (new VideoDecoder (this, c, log));
88                 _pts_offset = pts_offset (c->ffmpeg_audio_streams(), c->first_video(), c->active_video_frame_rate());
89                 /* It doesn't matter what size or pixel format this is, it just needs to be black */
90                 _black_image.reset (new Image (AV_PIX_FMT_RGB24, dcp::Size (128, 128), true));
91                 _black_image->make_black ();
92         } else {
93                 _pts_offset = ContentTime ();
94         }
95
96         if (c->audio) {
97                 audio.reset (new AudioDecoder (this, c->audio, log));
98         }
99
100         if (c->subtitle) {
101                 subtitle.reset (new SubtitleDecoder (this, c->subtitle, log));
102         }
103
104         _next_time.resize (_format_context->nb_streams);
105 }
106
107 void
108 FFmpegDecoder::flush ()
109 {
110         /* Get any remaining frames */
111
112         _packet.data = 0;
113         _packet.size = 0;
114
115         /* XXX: should we reset _packet.data and size after each *_decode_* call? */
116
117         while (video && decode_video_packet ()) {}
118
119         if (audio) {
120                 decode_audio_packet ();
121         }
122
123         /* Make sure all streams are the same length and round up to the next video frame */
124
125         FrameRateChange const frc = _ffmpeg_content->film()->active_frame_rate_change(_ffmpeg_content->position());
126         ContentTime full_length (_ffmpeg_content->full_length(), frc);
127         full_length = full_length.ceil (frc.source);
128         if (video) {
129                 double const vfr = _ffmpeg_content->video_frame_rate().get();
130                 Frame const f = full_length.frames_round (vfr);
131                 Frame v = video->position().frames_round (vfr);
132                 while (v < f) {
133                         video->emit (shared_ptr<const ImageProxy> (new RawImageProxy (_black_image)), v);
134                         ++v;
135                 }
136         }
137
138         BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, _ffmpeg_content->ffmpeg_audio_streams ()) {
139                 ContentTime a = audio->stream_position(i);
140                 while (a < full_length) {
141                         ContentTime to_do = min (full_length - a, ContentTime::from_seconds (0.1));
142                         shared_ptr<AudioBuffers> silence (new AudioBuffers (i->channels(), to_do.frames_ceil (i->frame_rate())));
143                         silence->make_silent ();
144                         audio->emit (i, silence, a);
145                         a += to_do;
146                 }
147         }
148
149         if (audio) {
150                 audio->flush ();
151         }
152 }
153
154 bool
155 FFmpegDecoder::pass ()
156 {
157         int r = av_read_frame (_format_context, &_packet);
158
159         /* AVERROR_INVALIDDATA can apparently be returned sometimes even when av_read_frame
160            has pretty-much succeeded (and hence generated data which should be processed).
161            Hence it makes sense to continue here in that case.
162         */
163         if (r < 0 && r != AVERROR_INVALIDDATA) {
164                 if (r != AVERROR_EOF) {
165                         /* Maybe we should fail here, but for now we'll just finish off instead */
166                         char buf[256];
167                         av_strerror (r, buf, sizeof(buf));
168                         LOG_ERROR (N_("error on av_read_frame (%1) (%2)"), &buf[0], r);
169                 }
170
171                 flush ();
172                 return true;
173         }
174
175         int const si = _packet.stream_index;
176         shared_ptr<const FFmpegContent> fc = _ffmpeg_content;
177
178         if (_video_stream && si == _video_stream.get() && !video->ignore()) {
179                 decode_video_packet ();
180         } else if (fc->subtitle_stream() && fc->subtitle_stream()->uses_index(_format_context, si) && !subtitle->ignore()) {
181                 decode_subtitle_packet ();
182         } else {
183                 decode_audio_packet ();
184         }
185
186         av_packet_unref (&_packet);
187         return false;
188 }
189
190 /** @param data pointer to array of pointers to buffers.
191  *  Only the first buffer will be used for non-planar data, otherwise there will be one per channel.
192  */
193 shared_ptr<AudioBuffers>
194 FFmpegDecoder::deinterleave_audio (shared_ptr<FFmpegAudioStream> stream) const
195 {
196         DCPOMATIC_ASSERT (bytes_per_audio_sample (stream));
197
198         int const size = av_samples_get_buffer_size (
199                 0, stream->stream(_format_context)->codec->channels, _frame->nb_samples, audio_sample_format (stream), 1
200                 );
201
202         /* Deinterleave and convert to float */
203
204         /* total_samples and frames will be rounded down here, so if there are stray samples at the end
205            of the block that do not form a complete sample or frame they will be dropped.
206         */
207         int const total_samples = size / bytes_per_audio_sample (stream);
208         int const frames = total_samples / stream->channels();
209         shared_ptr<AudioBuffers> audio (new AudioBuffers (stream->channels(), frames));
210
211         switch (audio_sample_format (stream)) {
212         case AV_SAMPLE_FMT_U8:
213         {
214                 uint8_t* p = reinterpret_cast<uint8_t *> (_frame->data[0]);
215                 int sample = 0;
216                 int channel = 0;
217                 for (int i = 0; i < total_samples; ++i) {
218                         audio->data(channel)[sample] = float(*p++) / (1 << 23);
219
220                         ++channel;
221                         if (channel == stream->channels()) {
222                                 channel = 0;
223                                 ++sample;
224                         }
225                 }
226         }
227         break;
228
229         case AV_SAMPLE_FMT_S16:
230         {
231                 int16_t* p = reinterpret_cast<int16_t *> (_frame->data[0]);
232                 int sample = 0;
233                 int channel = 0;
234                 for (int i = 0; i < total_samples; ++i) {
235                         audio->data(channel)[sample] = float(*p++) / (1 << 15);
236
237                         ++channel;
238                         if (channel == stream->channels()) {
239                                 channel = 0;
240                                 ++sample;
241                         }
242                 }
243         }
244         break;
245
246         case AV_SAMPLE_FMT_S16P:
247         {
248                 int16_t** p = reinterpret_cast<int16_t **> (_frame->data);
249                 for (int i = 0; i < stream->channels(); ++i) {
250                         for (int j = 0; j < frames; ++j) {
251                                 audio->data(i)[j] = static_cast<float>(p[i][j]) / (1 << 15);
252                         }
253                 }
254         }
255         break;
256
257         case AV_SAMPLE_FMT_S32:
258         {
259                 int32_t* p = reinterpret_cast<int32_t *> (_frame->data[0]);
260                 int sample = 0;
261                 int channel = 0;
262                 for (int i = 0; i < total_samples; ++i) {
263                         audio->data(channel)[sample] = static_cast<float>(*p++) / 2147483648;
264
265                         ++channel;
266                         if (channel == stream->channels()) {
267                                 channel = 0;
268                                 ++sample;
269                         }
270                 }
271         }
272         break;
273
274         case AV_SAMPLE_FMT_S32P:
275         {
276                 int32_t** p = reinterpret_cast<int32_t **> (_frame->data);
277                 for (int i = 0; i < stream->channels(); ++i) {
278                         for (int j = 0; j < frames; ++j) {
279                                 audio->data(i)[j] = static_cast<float>(p[i][j]) / 2147483648;
280                         }
281                 }
282         }
283         break;
284
285         case AV_SAMPLE_FMT_FLT:
286         {
287                 float* p = reinterpret_cast<float*> (_frame->data[0]);
288                 int sample = 0;
289                 int channel = 0;
290                 for (int i = 0; i < total_samples; ++i) {
291                         audio->data(channel)[sample] = *p++;
292
293                         ++channel;
294                         if (channel == stream->channels()) {
295                                 channel = 0;
296                                 ++sample;
297                         }
298                 }
299         }
300         break;
301
302         case AV_SAMPLE_FMT_FLTP:
303         {
304                 float** p = reinterpret_cast<float**> (_frame->data);
305                 /* Sometimes there aren't as many channels in the _frame as in the stream */
306                 for (int i = 0; i < _frame->channels; ++i) {
307                         memcpy (audio->data(i), p[i], frames * sizeof(float));
308                 }
309                 for (int i = _frame->channels; i < stream->channels(); ++i) {
310                         audio->make_silent (i);
311                 }
312         }
313         break;
314
315         default:
316                 throw DecodeError (String::compose (_("Unrecognised audio sample format (%1)"), static_cast<int> (audio_sample_format (stream))));
317         }
318
319         return audio;
320 }
321
322 AVSampleFormat
323 FFmpegDecoder::audio_sample_format (shared_ptr<FFmpegAudioStream> stream) const
324 {
325         return stream->stream (_format_context)->codec->sample_fmt;
326 }
327
328 int
329 FFmpegDecoder::bytes_per_audio_sample (shared_ptr<FFmpegAudioStream> stream) const
330 {
331         return av_get_bytes_per_sample (audio_sample_format (stream));
332 }
333
334 void
335 FFmpegDecoder::seek (ContentTime time, bool accurate)
336 {
337         Decoder::seek (time, accurate);
338
339         /* If we are doing an `accurate' seek, we need to use pre-roll, as
340            we don't really know what the seek will give us.
341         */
342
343         ContentTime pre_roll = accurate ? ContentTime::from_seconds (2) : ContentTime (0);
344         time -= pre_roll;
345
346         /* XXX: it seems debatable whether PTS should be used here...
347            http://www.mjbshaw.com/2012/04/seeking-in-ffmpeg-know-your-timestamp.html
348         */
349
350         optional<int> stream;
351
352         if (_video_stream) {
353                 stream = _video_stream;
354         } else {
355                 shared_ptr<FFmpegAudioStream> s = dynamic_pointer_cast<FFmpegAudioStream> (_ffmpeg_content->audio->stream ());
356                 if (s) {
357                         stream = s->index (_format_context);
358                 }
359         }
360
361         DCPOMATIC_ASSERT (stream);
362
363         ContentTime u = time - _pts_offset;
364         if (u < ContentTime ()) {
365                 u = ContentTime ();
366         }
367         av_seek_frame (
368                 _format_context,
369                 stream.get(),
370                 u.seconds() / av_q2d (_format_context->streams[stream.get()]->time_base),
371                 AVSEEK_FLAG_BACKWARD
372                 );
373
374         if (video_codec_context ()) {
375                 avcodec_flush_buffers (video_codec_context());
376         }
377
378         BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, ffmpeg_content()->ffmpeg_audio_streams()) {
379                 avcodec_flush_buffers (i->stream(_format_context)->codec);
380         }
381
382         if (subtitle_codec_context ()) {
383                 avcodec_flush_buffers (subtitle_codec_context ());
384         }
385
386         _have_current_subtitle = false;
387 }
388
389 void
390 FFmpegDecoder::decode_audio_packet ()
391 {
392         /* Audio packets can contain multiple frames, so we may have to call avcodec_decode_audio4
393            several times.
394         */
395
396         AVPacket copy_packet = _packet;
397         int const stream_index = copy_packet.stream_index;
398
399         /* XXX: inefficient */
400         vector<shared_ptr<FFmpegAudioStream> > streams = ffmpeg_content()->ffmpeg_audio_streams ();
401         vector<shared_ptr<FFmpegAudioStream> >::const_iterator stream = streams.begin ();
402         while (stream != streams.end () && !(*stream)->uses_index (_format_context, stream_index)) {
403                 ++stream;
404         }
405
406         if (stream == streams.end ()) {
407                 /* The packet's stream may not be an audio one; just ignore it in this method if so */
408                 return;
409         }
410
411         while (copy_packet.size > 0) {
412
413                 int frame_finished;
414                 int decode_result = avcodec_decode_audio4 ((*stream)->stream (_format_context)->codec, _frame, &frame_finished, &copy_packet);
415                 if (decode_result < 0) {
416                         /* avcodec_decode_audio4 can sometimes return an error even though it has decoded
417                            some valid data; for example dca_subframe_footer can return AVERROR_INVALIDDATA
418                            if it overreads the auxiliary data.  ffplay carries on if frame_finished is true,
419                            even in the face of such an error, so I think we should too.
420
421                            Returning from the method here caused mantis #352.
422                         */
423                         LOG_WARNING ("avcodec_decode_audio4 failed (%1)", decode_result);
424
425                         /* Fudge decode_result so that we come out of the while loop when
426                            we've processed this data.
427                         */
428                         decode_result = copy_packet.size;
429                 }
430
431                 if (frame_finished) {
432                         shared_ptr<AudioBuffers> data = deinterleave_audio (*stream);
433
434                         ContentTime ct;
435                         if (_frame->pts == AV_NOPTS_VALUE && _next_time[stream_index]) {
436                                 /* In some streams we see not every frame coming through with a timestamp; for those
437                                    that have AV_NOPTS_VALUE we need to work out the timestamp ourselves.  This is
438                                    particularly noticeable with TrueHD streams (see #1111).
439                                 */
440                                 ct = *_next_time[stream_index];
441                         } else {
442                                 ct = ContentTime::from_seconds (
443                                         av_frame_get_best_effort_timestamp (_frame) *
444                                         av_q2d ((*stream)->stream (_format_context)->time_base))
445                                         + _pts_offset;
446                         }
447
448                         _next_time[stream_index] = ct + ContentTime::from_frames(data->frames(), (*stream)->frame_rate());
449
450                         if (ct < ContentTime ()) {
451                                 /* Discard audio data that comes before time 0 */
452                                 Frame const remove = min (int64_t (data->frames()), (-ct).frames_ceil(double((*stream)->frame_rate ())));
453                                 data->move (data->frames() - remove, remove, 0);
454                                 data->set_frames (data->frames() - remove);
455                                 ct += ContentTime::from_frames (remove, (*stream)->frame_rate ());
456                         }
457
458                         if (ct < ContentTime()) {
459                                 LOG_WARNING (
460                                         "Crazy timestamp %1 for %2 samples in stream %3 packet pts %4 (ts=%5 tb=%6, off=%7)",
461                                         to_string(ct),
462                                         data->frames(),
463                                         copy_packet.stream_index,
464                                         copy_packet.pts,
465                                         av_frame_get_best_effort_timestamp(_frame),
466                                         av_q2d((*stream)->stream(_format_context)->time_base),
467                                         to_string(_pts_offset)
468                                         );
469                         }
470
471                         /* Give this data provided there is some, and its time is sane */
472                         if (ct >= ContentTime() && data->frames() > 0) {
473                                 audio->emit (*stream, data, ct);
474                         }
475                 }
476
477                 copy_packet.data += decode_result;
478                 copy_packet.size -= decode_result;
479         }
480 }
481
482 bool
483 FFmpegDecoder::decode_video_packet ()
484 {
485         DCPOMATIC_ASSERT (_video_stream);
486
487         int frame_finished;
488         if (avcodec_decode_video2 (video_codec_context(), _frame, &frame_finished, &_packet) < 0 || !frame_finished) {
489                 return false;
490         }
491
492         boost::mutex::scoped_lock lm (_filter_graphs_mutex);
493
494         shared_ptr<VideoFilterGraph> graph;
495
496         list<shared_ptr<VideoFilterGraph> >::iterator i = _filter_graphs.begin();
497         while (i != _filter_graphs.end() && !(*i)->can_process (dcp::Size (_frame->width, _frame->height), (AVPixelFormat) _frame->format)) {
498                 ++i;
499         }
500
501         if (i == _filter_graphs.end ()) {
502                 graph.reset (new VideoFilterGraph (dcp::Size (_frame->width, _frame->height), (AVPixelFormat) _frame->format));
503                 graph->setup (_ffmpeg_content->filters ());
504                 _filter_graphs.push_back (graph);
505                 LOG_GENERAL (N_("New graph for %1x%2, pixel format %3"), _frame->width, _frame->height, _frame->format);
506         } else {
507                 graph = *i;
508         }
509
510         list<pair<shared_ptr<Image>, int64_t> > images = graph->process (_frame);
511
512         for (list<pair<shared_ptr<Image>, int64_t> >::iterator i = images.begin(); i != images.end(); ++i) {
513
514                 shared_ptr<Image> image = i->first;
515
516                 if (i->second != AV_NOPTS_VALUE) {
517                         double const pts = i->second * av_q2d (_format_context->streams[_video_stream.get()]->time_base) + _pts_offset.seconds ();
518                         video->emit (
519                                 shared_ptr<ImageProxy> (new RawImageProxy (image)),
520                                 llrint (pts * _ffmpeg_content->active_video_frame_rate ())
521                                 );
522                 } else {
523                         LOG_WARNING_NC ("Dropping frame without PTS");
524                 }
525         }
526
527         return true;
528 }
529
530 void
531 FFmpegDecoder::decode_subtitle_packet ()
532 {
533         int got_subtitle;
534         AVSubtitle sub;
535         if (avcodec_decode_subtitle2 (subtitle_codec_context(), &sub, &got_subtitle, &_packet) < 0 || !got_subtitle) {
536                 return;
537         }
538
539         /* Stop any current subtitle, either at the time it was supposed to stop, or now if now is sooner */
540         if (_have_current_subtitle) {
541                 if (_current_subtitle_to) {
542                         subtitle->emit_stop (min(*_current_subtitle_to, subtitle_period(sub).from + _pts_offset));
543                 } else {
544                         subtitle->emit_stop (subtitle_period(sub).from + _pts_offset);
545                 }
546                 _have_current_subtitle = false;
547         }
548
549         if (sub.num_rects <= 0) {
550                 /* Nothing new in this subtitle */
551                 return;
552         }
553
554         /* Subtitle PTS (within the source, not taking into account any of the
555            source that we may have chopped off for the DCP).
556         */
557         FFmpegSubtitlePeriod sub_period = subtitle_period (sub);
558         ContentTime from;
559         from = sub_period.from + _pts_offset;
560         _have_current_subtitle = true;
561         if (sub_period.to) {
562                 _current_subtitle_to = *sub_period.to + _pts_offset;
563         }
564
565         for (unsigned int i = 0; i < sub.num_rects; ++i) {
566                 AVSubtitleRect const * rect = sub.rects[i];
567
568                 switch (rect->type) {
569                 case SUBTITLE_NONE:
570                         break;
571                 case SUBTITLE_BITMAP:
572                         decode_bitmap_subtitle (rect, from);
573                         break;
574                 case SUBTITLE_TEXT:
575                         cout << "XXX: SUBTITLE_TEXT " << rect->text << "\n";
576                         break;
577                 case SUBTITLE_ASS:
578                         decode_ass_subtitle (rect->ass, from);
579                         break;
580                 }
581         }
582
583         avsubtitle_free (&sub);
584 }
585
586 void
587 FFmpegDecoder::decode_bitmap_subtitle (AVSubtitleRect const * rect, ContentTime from)
588 {
589         /* Note RGBA is expressed little-endian, so the first byte in the word is R, second
590            G, third B, fourth A.
591         */
592         shared_ptr<Image> image (new Image (AV_PIX_FMT_RGBA, dcp::Size (rect->w, rect->h), true));
593
594 #ifdef DCPOMATIC_HAVE_AVSUBTITLERECT_PICT
595         /* Start of the first line in the subtitle */
596         uint8_t* sub_p = rect->pict.data[0];
597         /* sub_p looks up into a BGRA palette which is here
598            (i.e. first byte B, second G, third R, fourth A)
599         */
600         uint32_t const * palette = (uint32_t *) rect->pict.data[1];
601 #else
602         /* Start of the first line in the subtitle */
603         uint8_t* sub_p = rect->data[0];
604         /* sub_p looks up into a BGRA palette which is here
605            (i.e. first byte B, second G, third R, fourth A)
606         */
607         uint32_t const * palette = (uint32_t *) rect->data[1];
608 #endif
609         /* And the stream has a map of those palette colours to colours
610            chosen by the user; created a `mapped' palette from those settings.
611         */
612         map<RGBA, RGBA> colour_map = ffmpeg_content()->subtitle_stream()->colours ();
613         vector<RGBA> mapped_palette (rect->nb_colors);
614         for (int i = 0; i < rect->nb_colors; ++i) {
615                 RGBA c ((palette[i] & 0xff0000) >> 16, (palette[i] & 0xff00) >> 8, palette[i] & 0xff, (palette[i] & 0xff000000) >> 24);
616                 map<RGBA, RGBA>::const_iterator j = colour_map.find (c);
617                 if (j != colour_map.end ()) {
618                         mapped_palette[i] = j->second;
619                 } else {
620                         /* This colour was not found in the FFmpegSubtitleStream's colour map; probably because
621                            it is from a project that was created before this stuff was added.  Just use the
622                            colour straight from the original palette.
623                         */
624                         mapped_palette[i] = c;
625                 }
626         }
627
628         /* Start of the output data */
629         uint32_t* out_p = (uint32_t *) image->data()[0];
630
631         for (int y = 0; y < rect->h; ++y) {
632                 uint8_t* sub_line_p = sub_p;
633                 uint32_t* out_line_p = out_p;
634                 for (int x = 0; x < rect->w; ++x) {
635                         RGBA const p = mapped_palette[*sub_line_p++];
636                         /* XXX: this seems to be wrong to me (isn't the output image RGBA?) but it looks right on screen */
637                         *out_line_p++ = (p.a << 24) | (p.r << 16) | (p.g << 8) | p.b;
638                 }
639 #ifdef DCPOMATIC_HAVE_AVSUBTITLERECT_PICT
640                 sub_p += rect->pict.linesize[0];
641 #else
642                 sub_p += rect->linesize[0];
643 #endif
644                 out_p += image->stride()[0] / sizeof (uint32_t);
645         }
646
647         int const target_width = subtitle_codec_context()->width;
648         int const target_height = subtitle_codec_context()->height;
649         dcpomatic::Rect<double> const scaled_rect (
650                 static_cast<double> (rect->x) / target_width,
651                 static_cast<double> (rect->y) / target_height,
652                 static_cast<double> (rect->w) / target_width,
653                 static_cast<double> (rect->h) / target_height
654                 );
655
656         subtitle->emit_image_start (from, image, scaled_rect);
657 }
658
659 void
660 FFmpegDecoder::decode_ass_subtitle (string ass, ContentTime from)
661 {
662         /* We have no styles and no Format: line, so I'm assuming that FFmpeg
663            produces a single format of Dialogue: lines...
664         */
665
666         vector<string> bits;
667         split (bits, ass, is_any_of (","));
668         if (bits.size() < 10) {
669                 return;
670         }
671
672         sub::RawSubtitle base;
673         list<sub::RawSubtitle> raw = sub::SSAReader::parse_line (
674                 base,
675                 bits[9],
676                 _ffmpeg_content->video->size().width,
677                 _ffmpeg_content->video->size().height
678                 );
679
680         BOOST_FOREACH (sub::Subtitle const & i, sub::collect<list<sub::Subtitle> > (raw)) {
681                 subtitle->emit_text_start (from, i);
682         }
683 }