2b8b2b743f82d61b4e83ea3bbf37cd5577c38647
[dcpomatic.git] / src / lib / ffmpeg_examiner.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 extern "C" {
21 #include <libavcodec/avcodec.h>
22 #include <libavformat/avformat.h>
23 #include <libavutil/pixfmt.h>
24 #include <libavutil/pixdesc.h>
25 }
26 #include "ffmpeg_examiner.h"
27 #include "ffmpeg_content.h"
28 #include "job.h"
29 #include "ffmpeg_audio_stream.h"
30 #include "ffmpeg_subtitle_stream.h"
31 #include "util.h"
32 #include "safe_stringstream.h"
33 #include <boost/foreach.hpp>
34 #include <iostream>
35
36 #include "i18n.h"
37
38 using std::string;
39 using std::cout;
40 using std::max;
41 using boost::shared_ptr;
42 using boost::optional;
43
44 /** @param job job that the examiner is operating in, or 0 */
45 FFmpegExaminer::FFmpegExaminer (shared_ptr<const FFmpegContent> c, shared_ptr<Job> job)
46         : FFmpeg (c)
47         , _video_length (0)
48         , _need_video_length (false)
49 {
50         /* Find audio and subtitle streams */
51
52         for (uint32_t i = 0; i < _format_context->nb_streams; ++i) {
53                 AVStream* s = _format_context->streams[i];
54                 if (s->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
55
56                         /* This is a hack; sometimes it seems that _audio_codec_context->channel_layout isn't set up,
57                            so bodge it here.  No idea why we should have to do this.
58                         */
59
60                         if (s->codec->channel_layout == 0) {
61                                 s->codec->channel_layout = av_get_default_channel_layout (s->codec->channels);
62                         }
63
64                         _audio_streams.push_back (
65                                 shared_ptr<FFmpegAudioStream> (
66                                         new FFmpegAudioStream (audio_stream_name (s), s->id, s->codec->sample_rate, s->codec->channels)
67                                         )
68                                 );
69
70                 } else if (s->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
71                         _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (subtitle_stream_name (s), s->id)));
72                 }
73         }
74
75         /* See if the header has duration information in it */
76         _need_video_length = _format_context->duration == AV_NOPTS_VALUE;
77         if (!_need_video_length) {
78                 _video_length = (double (_format_context->duration) / AV_TIME_BASE) * video_frame_rate().get ();
79         }
80
81         if (job) {
82                 if (_need_video_length) {
83                         job->sub (_("Finding length and subtitles"));
84                 } else {
85                         job->sub (_("Finding subtitles"));
86                 }
87         }
88
89         /* Run through until we find:
90          *   - the first video.
91          *   - the first audio for each stream.
92          *   - the subtitle periods for each stream.
93          *
94          * We have to note subtitle periods as otherwise we have no way of knowing
95          * where we should look for subtitles (video and audio are always present,
96          * so they are ok).
97          */
98
99         int64_t const len = _file_group.length ();
100         while (true) {
101                 int r = av_read_frame (_format_context, &_packet);
102                 if (r < 0) {
103                         break;
104                 }
105
106                 if (job) {
107                         if (len > 0) {
108                                 job->set_progress (float (_format_context->pb->pos) / len);
109                         } else {
110                                 job->set_progress_unknown ();
111                         }
112                 }
113
114                 AVCodecContext* context = _format_context->streams[_packet.stream_index]->codec;
115
116                 if (_packet.stream_index == _video_stream) {
117                         video_packet (context);
118                 }
119
120                 bool got_all_audio = true;
121
122                 for (size_t i = 0; i < _audio_streams.size(); ++i) {
123                         if (_audio_streams[i]->uses_index (_format_context, _packet.stream_index)) {
124                                 audio_packet (context, _audio_streams[i]);
125                         }
126                         if (!_audio_streams[i]->first_audio) {
127                                 got_all_audio = false;
128                         }
129                 }
130
131                 for (size_t i = 0; i < _subtitle_streams.size(); ++i) {
132                         if (_subtitle_streams[i]->uses_index (_format_context, _packet.stream_index)) {
133                                 subtitle_packet (context, _subtitle_streams[i]);
134                         }
135                 }
136
137                 av_packet_unref (&_packet);
138
139                 if (_first_video && got_all_audio && _subtitle_streams.empty ()) {
140                         /* All done */
141                         break;
142                 }
143         }
144
145         /* Finish off any hanging subtitles at the end */
146         for (LastSubtitleMap::const_iterator i = _last_subtitle_start.begin(); i != _last_subtitle_start.end(); ++i) {
147                 if (i->second) {
148                         if (i->second->image) {
149                                 i->first->add_image_subtitle (
150                                         i->second->id,
151                                         ContentTimePeriod (
152                                                 i->second->time,
153                                                 ContentTime::from_frames (video_length(), video_frame_rate().get_value_or (24))
154                                                 )
155                                         );
156                         } else {
157                                 i->first->add_text_subtitle (
158                                         i->second->id,
159                                         ContentTimePeriod (
160                                                 i->second->time,
161                                                 ContentTime::from_frames (video_length(), video_frame_rate().get_value_or (24))
162                                                 )
163                                         );
164                         }
165                 }
166         }
167
168         /* We just added subtitles to our streams without taking the PTS offset into account;
169            this is because we might not know the PTS offset when the first subtitle is seen.
170            Now we know the PTS offset so we can apply it to those subtitles.
171         */
172         if (video_frame_rate()) {
173                 BOOST_FOREACH (shared_ptr<FFmpegSubtitleStream> i, _subtitle_streams) {
174                         i->add_offset (pts_offset (_audio_streams, _first_video, video_frame_rate().get()));
175                 }
176         }
177 }
178
179 void
180 FFmpegExaminer::video_packet (AVCodecContext* context)
181 {
182         if (_first_video && !_need_video_length) {
183                 return;
184         }
185
186         int frame_finished;
187         if (avcodec_decode_video2 (context, _frame, &frame_finished, &_packet) >= 0 && frame_finished) {
188                 if (!_first_video) {
189                         _first_video = frame_time (_format_context->streams[_video_stream]);
190                 }
191                 if (_need_video_length) {
192                         _video_length = frame_time (
193                                 _format_context->streams[_video_stream]
194                                 ).get_value_or (ContentTime ()).frames_round (video_frame_rate().get ());
195                 }
196         }
197 }
198
199 void
200 FFmpegExaminer::audio_packet (AVCodecContext* context, shared_ptr<FFmpegAudioStream> stream)
201 {
202         if (stream->first_audio) {
203                 return;
204         }
205
206         int frame_finished;
207         if (avcodec_decode_audio4 (context, _frame, &frame_finished, &_packet) >= 0 && frame_finished) {
208                 stream->first_audio = frame_time (stream->stream (_format_context));
209         }
210 }
211
212 void
213 FFmpegExaminer::subtitle_packet (AVCodecContext* context, shared_ptr<FFmpegSubtitleStream> stream)
214 {
215         int frame_finished;
216         AVSubtitle sub;
217         if (avcodec_decode_subtitle2 (context, &sub, &frame_finished, &_packet) >= 0 && frame_finished) {
218                 string id = subtitle_id (sub);
219                 FFmpegSubtitlePeriod const period = subtitle_period (sub);
220                 bool const starts_image = subtitle_starts_image (sub);
221
222                 LastSubtitleMap::iterator last = _last_subtitle_start.find (stream);
223                 if (last != _last_subtitle_start.end() && last->second) {
224                         /* We have seen the start of a subtitle but not yet the end.  Whatever this is
225                            finishes the previous subtitle, so add it */
226                         if (last->second->image) {
227                                 stream->add_image_subtitle (last->second->id, ContentTimePeriod (last->second->time, period.from));
228                         } else {
229                                 stream->add_text_subtitle (last->second->id, ContentTimePeriod (last->second->time, period.from));
230                         }
231                         if (sub.num_rects == 0) {
232                                 /* This is a `proper' end-of-subtitle */
233                                 _last_subtitle_start[stream] = optional<SubtitleStart> ();
234                         } else {
235                                 /* This is just another subtitle, so we start again */
236                                 _last_subtitle_start[stream] = SubtitleStart (id, starts_image, period.from);
237                         }
238                 } else if (sub.num_rects == 1) {
239                         if (period.to) {
240                                 if (starts_image) {
241                                         stream->add_image_subtitle (id, ContentTimePeriod (period.from, period.to.get ()));
242                                 } else {
243                                         stream->add_text_subtitle (id, ContentTimePeriod (period.from, period.to.get ()));
244                                 }
245                         } else {
246                                 _last_subtitle_start[stream] = SubtitleStart (id, starts_image, period.from);
247                         }
248                 }
249
250                 for (unsigned int i = 0; i < sub.num_rects; ++i) {
251                         if (sub.rects[i]->type == SUBTITLE_BITMAP) {
252 #ifdef DCPOMATIC_HAVE_AVSUBTITLERECT_PICT
253                                 uint32_t* palette = (uint32_t *) sub.rects[i]->pict.data[1];
254                                 for (int j = 0; j < sub.rects[i]->nb_colors; ++j) {
255                                         RGBA rgba  (
256                                                 (palette[j] & 0x00ff0000) >> 16,
257                                                 (palette[j] & 0x0000ff00) >> 8,
258                                                 (palette[j] & 0x000000ff) >> 0,
259                                                 (palette[j] & 0xff000000) >> 24
260                                                 );
261
262                                         stream->set_colour (rgba, rgba);
263                                 }
264 #else
265                                 uint32_t* palette = (uint32_t *) sub.rects[i]->data[1];
266                                 for (int j = 0; j < sub.rects[i]->nb_colors; ++j) {
267                                         RGBA rgba  (
268                                                 (palette[j] & 0x00ff0000) >> 16,
269                                                 (palette[j] & 0x0000ff00) >> 8,
270                                                 (palette[j] & 0x000000ff) >> 0,
271                                                 (palette[j] & 0xff000000) >> 24
272                                                 );
273
274                                         stream->set_colour (rgba, rgba);
275                                 }
276 #endif
277                         }
278                 }
279
280                 avsubtitle_free (&sub);
281         }
282 }
283
284 optional<ContentTime>
285 FFmpegExaminer::frame_time (AVStream* s) const
286 {
287         optional<ContentTime> t;
288
289         int64_t const bet = av_frame_get_best_effort_timestamp (_frame);
290         if (bet != AV_NOPTS_VALUE) {
291                 t = ContentTime::from_seconds (bet * av_q2d (s->time_base));
292         }
293
294         return t;
295 }
296
297 optional<double>
298 FFmpegExaminer::video_frame_rate () const
299 {
300         /* This use of r_frame_rate is debateable; there's a few different
301          * frame rates in the format context, but this one seems to be the most
302          * reliable.
303          */
304         return av_q2d (av_stream_get_r_frame_rate (_format_context->streams[_video_stream]));
305 }
306
307 dcp::Size
308 FFmpegExaminer::video_size () const
309 {
310         return dcp::Size (video_codec_context()->width, video_codec_context()->height);
311 }
312
313 /** @return Length according to our content's header */
314 Frame
315 FFmpegExaminer::video_length () const
316 {
317         return max (Frame (1), _video_length);
318 }
319
320 optional<double>
321 FFmpegExaminer::sample_aspect_ratio () const
322 {
323         AVRational sar = av_guess_sample_aspect_ratio (_format_context, _format_context->streams[_video_stream], 0);
324         if (sar.num == 0) {
325                 /* I assume this means that we don't know */
326                 return optional<double> ();
327         }
328         return double (sar.num) / sar.den;
329 }
330
331 string
332 FFmpegExaminer::audio_stream_name (AVStream* s) const
333 {
334         SafeStringStream n;
335
336         n << stream_name (s);
337
338         if (!n.str().empty()) {
339                 n << "; ";
340         }
341
342         n << s->codec->channels << " channels";
343
344         return n.str ();
345 }
346
347 string
348 FFmpegExaminer::subtitle_stream_name (AVStream* s) const
349 {
350         SafeStringStream n;
351
352         n << stream_name (s);
353
354         if (n.str().empty()) {
355                 n << _("unknown");
356         }
357
358         return n.str ();
359 }
360
361 string
362 FFmpegExaminer::stream_name (AVStream* s) const
363 {
364         SafeStringStream n;
365
366         if (s->metadata) {
367                 AVDictionaryEntry const * lang = av_dict_get (s->metadata, "language", 0, 0);
368                 if (lang) {
369                         n << lang->value;
370                 }
371
372                 AVDictionaryEntry const * title = av_dict_get (s->metadata, "title", 0, 0);
373                 if (title) {
374                         if (!n.str().empty()) {
375                                 n << " ";
376                         }
377                         n << title->value;
378                 }
379         }
380
381         return n.str ();
382 }
383
384 int
385 FFmpegExaminer::bits_per_pixel () const
386 {
387         if (video_codec_context()->pix_fmt == -1) {
388                 throw DecodeError (_("Could not find pixel format for video."));
389         }
390
391         AVPixFmtDescriptor const * d = av_pix_fmt_desc_get (video_codec_context()->pix_fmt);
392         DCPOMATIC_ASSERT (d);
393         return av_get_bits_per_pixel (d);
394 }
395
396 bool
397 FFmpegExaminer::yuv () const
398 {
399         switch (video_codec_context()->pix_fmt) {
400         case AV_PIX_FMT_YUV420P:
401         case AV_PIX_FMT_YUYV422:
402         case AV_PIX_FMT_YUV422P:
403         case AV_PIX_FMT_YUV444P:
404         case AV_PIX_FMT_YUV410P:
405         case AV_PIX_FMT_YUV411P:
406         case AV_PIX_FMT_YUVJ420P:
407         case AV_PIX_FMT_YUVJ422P:
408         case AV_PIX_FMT_YUVJ444P:
409         case AV_PIX_FMT_UYVY422:
410         case AV_PIX_FMT_UYYVYY411:
411         case AV_PIX_FMT_NV12:
412         case AV_PIX_FMT_NV21:
413         case AV_PIX_FMT_YUV440P:
414         case AV_PIX_FMT_YUVJ440P:
415         case AV_PIX_FMT_YUVA420P:
416         case AV_PIX_FMT_YUV420P16LE:
417         case AV_PIX_FMT_YUV420P16BE:
418         case AV_PIX_FMT_YUV422P16LE:
419         case AV_PIX_FMT_YUV422P16BE:
420         case AV_PIX_FMT_YUV444P16LE:
421         case AV_PIX_FMT_YUV444P16BE:
422         case AV_PIX_FMT_YUV420P9BE:
423         case AV_PIX_FMT_YUV420P9LE:
424         case AV_PIX_FMT_YUV420P10BE:
425         case AV_PIX_FMT_YUV420P10LE:
426         case AV_PIX_FMT_YUV422P10BE:
427         case AV_PIX_FMT_YUV422P10LE:
428         case AV_PIX_FMT_YUV444P9BE:
429         case AV_PIX_FMT_YUV444P9LE:
430         case AV_PIX_FMT_YUV444P10BE:
431         case AV_PIX_FMT_YUV444P10LE:
432         case AV_PIX_FMT_YUV422P9BE:
433         case AV_PIX_FMT_YUV422P9LE:
434         case AV_PIX_FMT_YUVA420P9BE:
435         case AV_PIX_FMT_YUVA420P9LE:
436         case AV_PIX_FMT_YUVA422P9BE:
437         case AV_PIX_FMT_YUVA422P9LE:
438         case AV_PIX_FMT_YUVA444P9BE:
439         case AV_PIX_FMT_YUVA444P9LE:
440         case AV_PIX_FMT_YUVA420P10BE:
441         case AV_PIX_FMT_YUVA420P10LE:
442         case AV_PIX_FMT_YUVA422P10BE:
443         case AV_PIX_FMT_YUVA422P10LE:
444         case AV_PIX_FMT_YUVA444P10BE:
445         case AV_PIX_FMT_YUVA444P10LE:
446         case AV_PIX_FMT_YUVA420P16BE:
447         case AV_PIX_FMT_YUVA420P16LE:
448         case AV_PIX_FMT_YUVA422P16BE:
449         case AV_PIX_FMT_YUVA422P16LE:
450         case AV_PIX_FMT_YUVA444P16BE:
451         case AV_PIX_FMT_YUVA444P16LE:
452         case AV_PIX_FMT_NV16:
453         case AV_PIX_FMT_NV20LE:
454         case AV_PIX_FMT_NV20BE:
455         case AV_PIX_FMT_YVYU422:
456         case AV_PIX_FMT_YUVA444P:
457         case AV_PIX_FMT_YUVA422P:
458         case AV_PIX_FMT_YUV420P12BE:
459         case AV_PIX_FMT_YUV420P12LE:
460         case AV_PIX_FMT_YUV420P14BE:
461         case AV_PIX_FMT_YUV420P14LE:
462         case AV_PIX_FMT_YUV422P12BE:
463         case AV_PIX_FMT_YUV422P12LE:
464         case AV_PIX_FMT_YUV422P14BE:
465         case AV_PIX_FMT_YUV422P14LE:
466         case AV_PIX_FMT_YUV444P12BE:
467         case AV_PIX_FMT_YUV444P12LE:
468         case AV_PIX_FMT_YUV444P14BE:
469         case AV_PIX_FMT_YUV444P14LE:
470         case AV_PIX_FMT_YUVJ411P:
471                 return true;
472         default:
473                 return false;
474         }
475 }