093df09892082e587f236d91665bd9661d09cb65
[dcpomatic.git] / src / lib / ffmpeg_examiner.cc
1 /*
2     Copyright (C) 2013 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 }
24 #include "ffmpeg_examiner.h"
25 #include "ffmpeg_content.h"
26
27 #include "i18n.h"
28
29 using std::string;
30 using std::cout;
31 using std::max;
32 using std::stringstream;
33 using boost::shared_ptr;
34 using boost::optional;
35
36 FFmpegExaminer::FFmpegExaminer (shared_ptr<const FFmpegContent> c)
37         : FFmpeg (c)
38 {
39         /* Find audio and subtitle streams */
40
41         for (uint32_t i = 0; i < _format_context->nb_streams; ++i) {
42                 AVStream* s = _format_context->streams[i];
43                 if (s->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
44
45                         /* This is a hack; sometimes it seems that _audio_codec_context->channel_layout isn't set up,
46                            so bodge it here.  No idea why we should have to do this.
47                         */
48
49                         if (s->codec->channel_layout == 0) {
50                                 s->codec->channel_layout = av_get_default_channel_layout (s->codec->channels);
51                         }
52                         
53                         _audio_streams.push_back (
54                                 shared_ptr<FFmpegAudioStream> (
55                                         new FFmpegAudioStream (audio_stream_name (s), s->id, s->codec->sample_rate, s->codec->channels)
56                                         )
57                                 );
58
59                 } else if (s->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
60                         _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (subtitle_stream_name (s), s->id)));
61                 }
62         }
63
64         /* Run through until we find the first audio (for each stream) and video */
65
66         while (1) {
67                 int r = av_read_frame (_format_context, &_packet);
68                 if (r < 0) {
69                         break;
70                 }
71
72                 int frame_finished;
73
74                 AVCodecContext* context = _format_context->streams[_packet.stream_index]->codec;
75
76                 if (_packet.stream_index == _video_stream && !_first_video) {
77                         if (avcodec_decode_video2 (context, _frame, &frame_finished, &_packet) >= 0 && frame_finished) {
78                                 _first_video = frame_time (_format_context->streams[_video_stream]);
79                         }
80                 } else {
81                         for (size_t i = 0; i < _audio_streams.size(); ++i) {
82                                 if (_audio_streams[i]->uses_index (_format_context, _packet.stream_index) && !_audio_streams[i]->first_audio) {
83                                         if (avcodec_decode_audio4 (context, _frame, &frame_finished, &_packet) >= 0 && frame_finished) {
84                                                 _audio_streams[i]->first_audio = frame_time (_audio_streams[i]->stream (_format_context));
85                                         }
86                                 }
87                         }
88                 }
89
90                 bool have_all_audio = true;
91                 size_t i = 0;
92                 while (i < _audio_streams.size() && have_all_audio) {
93                         have_all_audio = _audio_streams[i]->first_audio;
94                         ++i;
95                 }
96
97                 av_free_packet (&_packet);
98                 
99                 if (_first_video && have_all_audio) {
100                         break;
101                 }
102         }
103 }
104
105 optional<ContentTime>
106 FFmpegExaminer::frame_time (AVStream* s) const
107 {
108         optional<ContentTime> t;
109         
110         int64_t const bet = av_frame_get_best_effort_timestamp (_frame);
111         if (bet != AV_NOPTS_VALUE) {
112                 t = ContentTime (bet * av_q2d (s->time_base));
113         }
114
115         return t;
116 }
117
118 float
119 FFmpegExaminer::video_frame_rate () const
120 {
121         AVStream* s = _format_context->streams[_video_stream];
122
123         if (s->avg_frame_rate.num && s->avg_frame_rate.den) {
124                 cout << "here we bitchen well are " << av_q2d (s->avg_frame_rate) << "\n";
125                 return av_q2d (s->avg_frame_rate);
126         }
127
128         return av_q2d (s->r_frame_rate);
129 }
130
131 dcp::Size
132 FFmpegExaminer::video_size () const
133 {
134         return dcp::Size (video_codec_context()->width, video_codec_context()->height);
135 }
136
137 /** @return Length according to our content's header */
138 ContentTime
139 FFmpegExaminer::video_length () const
140 {
141         ContentTime const length = ContentTime::from_seconds (double (_format_context->duration) / AV_TIME_BASE);
142         return ContentTime (max (int64_t (1), length.get ()));
143 }
144
145 string
146 FFmpegExaminer::audio_stream_name (AVStream* s) const
147 {
148         stringstream n;
149
150         n << stream_name (s);
151
152         if (!n.str().empty()) {
153                 n << "; ";
154         }
155
156         n << s->codec->channels << " channels";
157
158         return n.str ();
159 }
160
161 string
162 FFmpegExaminer::subtitle_stream_name (AVStream* s) const
163 {
164         stringstream n;
165
166         n << stream_name (s);
167
168         if (n.str().empty()) {
169                 n << _("unknown");
170         }
171
172         return n.str ();
173 }
174
175 string
176 FFmpegExaminer::stream_name (AVStream* s) const
177 {
178         stringstream n;
179
180         if (s->metadata) {
181                 AVDictionaryEntry const * lang = av_dict_get (s->metadata, "language", 0, 0);
182                 if (lang) {
183                         n << lang->value;
184                 }
185                 
186                 AVDictionaryEntry const * title = av_dict_get (s->metadata, "title", 0, 0);
187                 if (title) {
188                         if (!n.str().empty()) {
189                                 n << " ";
190                         }
191                         n << title->value;
192                 }
193         }
194
195         return n.str ();
196 }