Various hacks.
[dcpomatic.git] / src / lib / ffmpeg_decoder.cc
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
5
6     This program 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     This program 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 this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 /** @file  src/ffmpeg_decoder.cc
23  *  @brief A decoder using FFmpeg to decode content.
24  */
25
26 #include <stdexcept>
27 #include <vector>
28 #include <sstream>
29 #include <iomanip>
30 #include <iostream>
31 #include <stdint.h>
32 #include <boost/lexical_cast.hpp>
33 extern "C" {
34 #include <tiffio.h>
35 #include <libavcodec/avcodec.h>
36 #include <libavformat/avformat.h>
37 #include <libswscale/swscale.h>
38 #include <libpostproc/postprocess.h>
39 }
40 #include <sndfile.h>
41 #include "film.h"
42 #include "format.h"
43 #include "transcoder.h"
44 #include "job.h"
45 #include "filter.h"
46 #include "exceptions.h"
47 #include "image.h"
48 #include "util.h"
49 #include "log.h"
50 #include "ffmpeg_decoder.h"
51 #include "filter_graph.h"
52 #include "subtitle.h"
53 #include "audio_buffers.h"
54
55 #include "i18n.h"
56
57 using std::cout;
58 using std::string;
59 using std::vector;
60 using std::stringstream;
61 using std::list;
62 using std::min;
63 using boost::shared_ptr;
64 using boost::optional;
65 using boost::dynamic_pointer_cast;
66 using libdcp::Size;
67
68 boost::mutex FFmpegDecoder::_mutex;
69
70 FFmpegDecoder::FFmpegDecoder (shared_ptr<const Film> f, shared_ptr<const FFmpegContent> c, bool video, bool audio, bool subtitles)
71         : Decoder (f)
72         , VideoDecoder (f, c)
73         , AudioDecoder (f, c)
74         , _ffmpeg_content (c)
75         , _format_context (0)
76         , _video_stream (-1)
77         , _frame (0)
78         , _video_codec_context (0)
79         , _video_codec (0)
80         , _audio_codec_context (0)
81         , _audio_codec (0)
82         , _subtitle_codec_context (0)
83         , _subtitle_codec (0)
84         , _decode_video (video)
85         , _decode_audio (audio)
86         , _decode_subtitles (subtitles)
87 {
88         setup_general ();
89         setup_video ();
90         setup_audio ();
91         setup_subtitle ();
92 }
93
94 FFmpegDecoder::~FFmpegDecoder ()
95 {
96         boost::mutex::scoped_lock lm (_mutex);
97         
98         if (_audio_codec_context) {
99                 avcodec_close (_audio_codec_context);
100         }
101
102         if (_video_codec_context) {
103                 avcodec_close (_video_codec_context);
104         }
105
106         if (_subtitle_codec_context) {
107                 avcodec_close (_subtitle_codec_context);
108         }
109
110         av_free (_frame);
111         
112         avformat_close_input (&_format_context);
113 }       
114
115 void
116 FFmpegDecoder::setup_general ()
117 {
118         av_register_all ();
119
120         if (avformat_open_input (&_format_context, _ffmpeg_content->file().string().c_str(), 0, 0) < 0) {
121                 throw OpenFileError (_ffmpeg_content->file().string ());
122         }
123
124         if (avformat_find_stream_info (_format_context, 0) < 0) {
125                 throw DecodeError (_("could not find stream information"));
126         }
127
128         /* Find video, audio and subtitle streams */
129
130         for (uint32_t i = 0; i < _format_context->nb_streams; ++i) {
131                 AVStream* s = _format_context->streams[i];
132                 if (s->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
133                         _video_stream = i;
134                 } else if (s->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
135
136                         /* This is a hack; sometimes it seems that _audio_codec_context->channel_layout isn't set up,
137                            so bodge it here.  No idea why we should have to do this.
138                         */
139
140                         if (s->codec->channel_layout == 0) {
141                                 s->codec->channel_layout = av_get_default_channel_layout (s->codec->channels);
142                         }
143                         
144                         _audio_streams.push_back (
145                                 shared_ptr<FFmpegAudioStream> (
146                                         new FFmpegAudioStream (stream_name (s), i, s->codec->sample_rate, s->codec->channels)
147                                         )
148                                 );
149
150                 } else if (s->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
151                         _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (stream_name (s), i)));
152                 }
153         }
154
155         if (_video_stream < 0) {
156                 throw DecodeError (N_("could not find video stream"));
157         }
158
159         _frame = avcodec_alloc_frame ();
160         if (_frame == 0) {
161                 throw DecodeError (N_("could not allocate frame"));
162         }
163 }
164
165 void
166 FFmpegDecoder::setup_video ()
167 {
168         boost::mutex::scoped_lock lm (_mutex);
169         
170         _video_codec_context = _format_context->streams[_video_stream]->codec;
171         _video_codec = avcodec_find_decoder (_video_codec_context->codec_id);
172
173         if (_video_codec == 0) {
174                 throw DecodeError (_("could not find video decoder"));
175         }
176
177         if (avcodec_open2 (_video_codec_context, _video_codec, 0) < 0) {
178                 throw DecodeError (N_("could not open video decoder"));
179         }
180 }
181
182 void
183 FFmpegDecoder::setup_audio ()
184 {
185         boost::mutex::scoped_lock lm (_mutex);
186         
187         if (!_ffmpeg_content->audio_stream ()) {
188                 return;
189         }
190
191         _audio_codec_context = _format_context->streams[_ffmpeg_content->audio_stream()->id]->codec;
192         _audio_codec = avcodec_find_decoder (_audio_codec_context->codec_id);
193
194         if (_audio_codec == 0) {
195                 throw DecodeError (_("could not find audio decoder"));
196         }
197
198         if (avcodec_open2 (_audio_codec_context, _audio_codec, 0) < 0) {
199                 throw DecodeError (N_("could not open audio decoder"));
200         }
201 }
202
203 void
204 FFmpegDecoder::setup_subtitle ()
205 {
206         boost::mutex::scoped_lock lm (_mutex);
207         
208         if (!_ffmpeg_content->subtitle_stream() || _ffmpeg_content->subtitle_stream()->id >= int (_format_context->nb_streams)) {
209                 return;
210         }
211
212         _subtitle_codec_context = _format_context->streams[_ffmpeg_content->subtitle_stream()->id]->codec;
213         _subtitle_codec = avcodec_find_decoder (_subtitle_codec_context->codec_id);
214
215         if (_subtitle_codec == 0) {
216                 throw DecodeError (_("could not find subtitle decoder"));
217         }
218         
219         if (avcodec_open2 (_subtitle_codec_context, _subtitle_codec, 0) < 0) {
220                 throw DecodeError (N_("could not open subtitle decoder"));
221         }
222 }
223
224
225 bool
226 FFmpegDecoder::pass ()
227 {
228         int r = av_read_frame (_format_context, &_packet);
229
230         if (r < 0) {
231                 if (r != AVERROR_EOF) {
232                         /* Maybe we should fail here, but for now we'll just finish off instead */
233                         char buf[256];
234                         av_strerror (r, buf, sizeof(buf));
235                         _film->log()->log (String::compose (N_("error on av_read_frame (%1) (%2)"), buf, r));
236                 }
237
238                 /* Get any remaining frames */
239                 
240                 _packet.data = 0;
241                 _packet.size = 0;
242                 
243                 /* XXX: should we reset _packet.data and size after each *_decode_* call? */
244                 
245                 if (_decode_video) {
246                         while (decode_video_packet ());
247                 }
248
249                 if (_ffmpeg_content->audio_stream() && _decode_audio) {
250                         decode_audio_packet ();
251                 }
252                         
253                 return true;
254         }
255
256         avcodec_get_frame_defaults (_frame);
257
258         if (_packet.stream_index == _video_stream && _decode_video) {
259                 decode_video_packet ();
260         } else if (_ffmpeg_content->audio_stream() && _packet.stream_index == _ffmpeg_content->audio_stream()->id && _decode_audio) {
261                 decode_audio_packet ();
262         } else if (_ffmpeg_content->subtitle_stream() && _packet.stream_index == _ffmpeg_content->subtitle_stream()->id && _decode_subtitles) {
263
264                 int got_subtitle;
265                 AVSubtitle sub;
266                 if (avcodec_decode_subtitle2 (_subtitle_codec_context, &sub, &got_subtitle, &_packet) && got_subtitle) {
267                         /* Sometimes we get an empty AVSubtitle, which is used by some codecs to
268                            indicate that the previous subtitle should stop.
269                         */
270                         if (sub.num_rects > 0) {
271                                 shared_ptr<TimedSubtitle> ts;
272                                 try {
273                                         emit_subtitle (shared_ptr<TimedSubtitle> (new TimedSubtitle (sub)));
274                                 } catch (...) {
275                                         /* some problem with the subtitle; we probably didn't understand it */
276                                 }
277                         } else {
278                                 emit_subtitle (shared_ptr<TimedSubtitle> ());
279                         }
280                         avsubtitle_free (&sub);
281                 }
282         }
283
284         av_free_packet (&_packet);
285         return false;
286 }
287
288 /** @param data pointer to array of pointers to buffers.
289  *  Only the first buffer will be used for non-planar data, otherwise there will be one per channel.
290  */
291 shared_ptr<AudioBuffers>
292 FFmpegDecoder::deinterleave_audio (uint8_t** data, int size)
293 {
294         assert (_ffmpeg_content->audio_channels());
295         assert (bytes_per_audio_sample());
296
297         /* Deinterleave and convert to float */
298
299         assert ((size % (bytes_per_audio_sample() * _ffmpeg_content->audio_channels())) == 0);
300
301         int const total_samples = size / bytes_per_audio_sample();
302         int const frames = total_samples / _ffmpeg_content->audio_channels();
303         shared_ptr<AudioBuffers> audio (new AudioBuffers (_ffmpeg_content->audio_channels(), frames));
304
305         switch (audio_sample_format()) {
306         case AV_SAMPLE_FMT_S16:
307         {
308                 int16_t* p = reinterpret_cast<int16_t *> (data[0]);
309                 int sample = 0;
310                 int channel = 0;
311                 for (int i = 0; i < total_samples; ++i) {
312                         audio->data(channel)[sample] = float(*p++) / (1 << 15);
313
314                         ++channel;
315                         if (channel == _ffmpeg_content->audio_channels()) {
316                                 channel = 0;
317                                 ++sample;
318                         }
319                 }
320         }
321         break;
322
323         case AV_SAMPLE_FMT_S16P:
324         {
325                 int16_t** p = reinterpret_cast<int16_t **> (data);
326                 for (int i = 0; i < _ffmpeg_content->audio_channels(); ++i) {
327                         for (int j = 0; j < frames; ++j) {
328                                 audio->data(i)[j] = static_cast<float>(p[i][j]) / (1 << 15);
329                         }
330                 }
331         }
332         break;
333         
334         case AV_SAMPLE_FMT_S32:
335         {
336                 int32_t* p = reinterpret_cast<int32_t *> (data[0]);
337                 int sample = 0;
338                 int channel = 0;
339                 for (int i = 0; i < total_samples; ++i) {
340                         audio->data(channel)[sample] = static_cast<float>(*p++) / (1 << 31);
341
342                         ++channel;
343                         if (channel == _ffmpeg_content->audio_channels()) {
344                                 channel = 0;
345                                 ++sample;
346                         }
347                 }
348         }
349         break;
350
351         case AV_SAMPLE_FMT_FLT:
352         {
353                 float* p = reinterpret_cast<float*> (data[0]);
354                 int sample = 0;
355                 int channel = 0;
356                 for (int i = 0; i < total_samples; ++i) {
357                         audio->data(channel)[sample] = *p++;
358
359                         ++channel;
360                         if (channel == _ffmpeg_content->audio_channels()) {
361                                 channel = 0;
362                                 ++sample;
363                         }
364                 }
365         }
366         break;
367                 
368         case AV_SAMPLE_FMT_FLTP:
369         {
370                 float** p = reinterpret_cast<float**> (data);
371                 for (int i = 0; i < _ffmpeg_content->audio_channels(); ++i) {
372                         memcpy (audio->data(i), p[i], frames * sizeof(float));
373                 }
374         }
375         break;
376
377         default:
378                 throw DecodeError (String::compose (_("Unrecognised audio sample format (%1)"), static_cast<int> (audio_sample_format())));
379         }
380
381         return audio;
382 }
383
384 float
385 FFmpegDecoder::video_frame_rate () const
386 {
387         AVStream* s = _format_context->streams[_video_stream];
388
389         if (s->avg_frame_rate.num && s->avg_frame_rate.den) {
390                 return av_q2d (s->avg_frame_rate);
391         }
392
393         return av_q2d (s->r_frame_rate);
394 }
395
396 AVSampleFormat
397 FFmpegDecoder::audio_sample_format () const
398 {
399         if (_audio_codec_context == 0) {
400                 return (AVSampleFormat) 0;
401         }
402         
403         return _audio_codec_context->sample_fmt;
404 }
405
406 libdcp::Size
407 FFmpegDecoder::native_size () const
408 {
409         return libdcp::Size (_video_codec_context->width, _video_codec_context->height);
410 }
411
412 PixelFormat
413 FFmpegDecoder::pixel_format () const
414 {
415         return _video_codec_context->pix_fmt;
416 }
417
418 string
419 FFmpegDecoder::stream_name (AVStream* s) const
420 {
421         stringstream n;
422
423         if (s->metadata) {
424                 AVDictionaryEntry const * lang = av_dict_get (s->metadata, N_("language"), 0, 0);
425                 if (lang) {
426                         n << lang->value;
427                 }
428                 
429                 AVDictionaryEntry const * title = av_dict_get (s->metadata, N_("title"), 0, 0);
430                 if (title) {
431                         if (!n.str().empty()) {
432                                 n << N_(" ");
433                         }
434                         n << title->value;
435                 }
436         }
437
438         if (n.str().empty()) {
439                 n << N_("unknown");
440         }
441
442         return n.str ();
443 }
444
445 int
446 FFmpegDecoder::bytes_per_audio_sample () const
447 {
448         return av_get_bytes_per_sample (audio_sample_format ());
449 }
450
451 bool
452 FFmpegDecoder::seek (Time t)
453 {
454         return do_seek (t, false, false);
455 }
456
457 bool
458 FFmpegDecoder::seek_back ()
459 {
460         if (next() < 2.5) {
461                 return true;
462         }
463         
464         return do_seek (next() - 2.5 * TIME_HZ / video_frame_rate(), true, true);
465 }
466
467 bool
468 FFmpegDecoder::seek_forward ()
469 {
470         if (next() >= (video_length() - video_frame_rate())) {
471                 return true;
472         }
473         
474         return do_seek (next() - 0.5 * TIME_HZ / video_frame_rate(), true, true);
475 }
476
477 bool
478 FFmpegDecoder::do_seek (Time t, bool backwards, bool accurate)
479 {
480         int64_t const vt = t / (av_q2d (_format_context->streams[_video_stream]->time_base) * TIME_HZ);
481
482         int const r = av_seek_frame (_format_context, _video_stream, vt, backwards ? AVSEEK_FLAG_BACKWARD : 0);
483
484         avcodec_flush_buffers (_video_codec_context);
485         if (_subtitle_codec_context) {
486                 avcodec_flush_buffers (_subtitle_codec_context);
487         }
488
489         if (accurate) {
490                 while (1) {
491                         int r = av_read_frame (_format_context, &_packet);
492                         if (r < 0) {
493                                 return true;
494                         }
495                         
496                         avcodec_get_frame_defaults (_frame);
497                         
498                         if (_packet.stream_index == _video_stream) {
499                                 int finished = 0;
500                                 int const r = avcodec_decode_video2 (_video_codec_context, _frame, &finished, &_packet);
501                                 if (r >= 0 && finished) {
502                                         int64_t const bet = av_frame_get_best_effort_timestamp (_frame);
503                                         if (bet > vt) {
504                                                 break;
505                                         }
506                                 }
507                         }
508                         
509                         av_free_packet (&_packet);
510                 }
511         }
512
513         return r < 0;
514 }
515
516 void
517 FFmpegDecoder::film_changed (Film::Property p)
518 {
519         switch (p) {
520         case Film::FILTERS:
521         {
522                 boost::mutex::scoped_lock lm (_filter_graphs_mutex);
523                 _filter_graphs.clear ();
524         }
525         break;
526
527         default:
528                 break;
529         }
530 }
531
532 /** @return Length (in video frames) according to our content's header */
533 ContentVideoFrame
534 FFmpegDecoder::video_length () const
535 {
536         return (double(_format_context->duration) / AV_TIME_BASE) * video_frame_rate();
537 }
538
539 void
540 FFmpegDecoder::decode_audio_packet ()
541 {
542         /* Audio packets can contain multiple frames, so we may have to call avcodec_decode_audio4
543            several times.
544         */
545         
546         AVPacket copy_packet = _packet;
547
548         while (copy_packet.size > 0) {
549
550                 int frame_finished;
551                 int const decode_result = avcodec_decode_audio4 (_audio_codec_context, _frame, &frame_finished, &copy_packet);
552                 if (decode_result >= 0) {
553                         if (frame_finished) {
554                         
555                                 /* Where we are in the source, in seconds */
556                                 double const source_pts_seconds = av_q2d (_format_context->streams[copy_packet.stream_index]->time_base)
557                                         * av_frame_get_best_effort_timestamp(_frame);
558                                 
559                                 int const data_size = av_samples_get_buffer_size (
560                                         0, _audio_codec_context->channels, _frame->nb_samples, audio_sample_format (), 1
561                                         );
562                                 
563                                 assert (_audio_codec_context->channels == _ffmpeg_content->audio_channels());
564                                 Audio (deinterleave_audio (_frame->data, data_size), source_pts_seconds);
565                         }
566                         
567                         copy_packet.data += decode_result;
568                         copy_packet.size -= decode_result;
569                 }
570         }
571 }
572
573 bool
574 FFmpegDecoder::decode_video_packet ()
575 {
576         int frame_finished;
577         if (avcodec_decode_video2 (_video_codec_context, _frame, &frame_finished, &_packet) < 0 || !frame_finished) {
578                 return false;
579         }
580                 
581         boost::mutex::scoped_lock lm (_filter_graphs_mutex);
582
583         shared_ptr<FilterGraph> graph;
584         
585         list<shared_ptr<FilterGraph> >::iterator i = _filter_graphs.begin();
586         while (i != _filter_graphs.end() && !(*i)->can_process (libdcp::Size (_frame->width, _frame->height), (AVPixelFormat) _frame->format)) {
587                 ++i;
588         }
589
590         if (i == _filter_graphs.end ()) {
591                 graph.reset (new FilterGraph (_film, this, libdcp::Size (_frame->width, _frame->height), (AVPixelFormat) _frame->format));
592                 _filter_graphs.push_back (graph);
593                 _film->log()->log (String::compose (N_("New graph for %1x%2, pixel format %3"), _frame->width, _frame->height, _frame->format));
594         } else {
595                 graph = *i;
596         }
597
598
599         list<shared_ptr<Image> > images = graph->process (_frame);
600         
601         for (list<shared_ptr<Image> >::iterator i = images.begin(); i != images.end(); ++i) {
602                 int64_t const bet = av_frame_get_best_effort_timestamp (_frame);
603                 if (bet != AV_NOPTS_VALUE) {
604                         /* XXX: may need to insert extra frames / remove frames here ...
605                            (as per old Matcher)
606                         */
607                         Time const t = bet * av_q2d (_format_context->streams[_video_stream]->time_base) * TIME_HZ;
608                         emit_video (*i, false, t);
609                 } else {
610                         _film->log()->log ("Dropping frame without PTS");
611                 }
612         }
613
614         return true;
615 }
616
617 Time
618 FFmpegDecoder::next () const
619 {
620         return min (_next_video, _next_audio);
621 }