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
|
/*
Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic 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.
DCP-o-matic 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ffmpeg_encoder.h"
#include "film.h"
#include "job.h"
#include "player.h"
#include "player_video.h"
#include "log.h"
#include "image.h"
#include "cross.h"
#include "compose.hpp"
#include <iostream>
#include "i18n.h"
using std::string;
using std::runtime_error;
using std::cout;
using std::pair;
using boost::shared_ptr;
using boost::bind;
using boost::weak_ptr;
using namespace dcpomatic;
int FFmpegFileEncoder::_video_stream_index = 0;
int FFmpegFileEncoder::_audio_stream_index = 1;
FFmpegFileEncoder::FFmpegFileEncoder (
dcp::Size video_frame_size,
int video_frame_rate,
int audio_frame_rate,
int channels,
ExportFormat format,
int x264_crf,
boost::filesystem::path output
)
: _video_options (0)
, _audio_channels (channels)
, _output (output)
, _video_frame_size (video_frame_size)
, _video_frame_rate (video_frame_rate)
, _audio_frame_rate (audio_frame_rate)
{
_pixel_format = pixel_format (format);
switch (format) {
case EXPORT_FORMAT_PRORES:
_sample_format = AV_SAMPLE_FMT_S16;
_video_codec_name = "prores_ks";
_audio_codec_name = "pcm_s16le";
av_dict_set (&_video_options, "profile", "3", 0);
av_dict_set (&_video_options, "threads", "auto", 0);
break;
case EXPORT_FORMAT_H264:
_sample_format = AV_SAMPLE_FMT_FLTP;
_video_codec_name = "libx264";
_audio_codec_name = "aac";
av_dict_set_int (&_video_options, "crf", x264_crf, 0);
break;
}
setup_video ();
setup_audio ();
int r = avformat_alloc_output_context2 (&_format_context, 0, 0, _output.string().c_str());
if (!_format_context) {
throw runtime_error (String::compose("could not allocate FFmpeg format context (%1)", r));
}
_video_stream = avformat_new_stream (_format_context, _video_codec);
if (!_video_stream) {
throw runtime_error ("could not create FFmpeg output video stream");
}
_audio_stream = avformat_new_stream (_format_context, _audio_codec);
if (!_audio_stream) {
throw runtime_error ("could not create FFmpeg output audio stream");
}
_video_stream->id = _video_stream_index;
_video_stream->codec = _video_codec_context;
_audio_stream->id = _audio_stream_index;
_audio_stream->codec = _audio_codec_context;
if (avcodec_open2 (_video_codec_context, _video_codec, &_video_options) < 0) {
throw runtime_error ("could not open FFmpeg video codec");
}
r = avcodec_open2 (_audio_codec_context, _audio_codec, 0);
if (r < 0) {
char buffer[256];
av_strerror (r, buffer, sizeof(buffer));
throw runtime_error (String::compose ("could not open FFmpeg audio codec (%1)", buffer));
}
if (avio_open_boost (&_format_context->pb, _output, AVIO_FLAG_WRITE) < 0) {
throw runtime_error ("could not open FFmpeg output file");
}
if (avformat_write_header (_format_context, 0) < 0) {
throw runtime_error ("could not write header to FFmpeg output file");
}
_pending_audio.reset (new AudioBuffers(channels, 0));
}
AVPixelFormat
FFmpegFileEncoder::pixel_format (ExportFormat format)
{
switch (format) {
case EXPORT_FORMAT_PRORES:
return AV_PIX_FMT_YUV422P10;
case EXPORT_FORMAT_H264:
return AV_PIX_FMT_YUV420P;
default:
DCPOMATIC_ASSERT (false);
}
return AV_PIX_FMT_YUV422P10;
}
void
FFmpegFileEncoder::setup_video ()
{
_video_codec = avcodec_find_encoder_by_name (_video_codec_name.c_str());
if (!_video_codec) {
throw runtime_error (String::compose ("could not find FFmpeg encoder %1", _video_codec_name));
}
_video_codec_context = avcodec_alloc_context3 (_video_codec);
if (!_video_codec_context) {
throw runtime_error ("could not allocate FFmpeg video context");
}
avcodec_get_context_defaults3 (_video_codec_context, _video_codec);
/* Variable quantisation */
_video_codec_context->global_quality = 0;
_video_codec_context->width = _video_frame_size.width;
_video_codec_context->height = _video_frame_size.height;
_video_codec_context->time_base = (AVRational) { 1, _video_frame_rate };
_video_codec_context->pix_fmt = _pixel_format;
_video_codec_context->flags |= AV_CODEC_FLAG_QSCALE | AV_CODEC_FLAG_GLOBAL_HEADER;
}
void
FFmpegFileEncoder::setup_audio ()
{
_audio_codec = avcodec_find_encoder_by_name (_audio_codec_name.c_str());
if (!_audio_codec) {
throw runtime_error (String::compose ("could not find FFmpeg encoder %1", _audio_codec_name));
}
_audio_codec_context = avcodec_alloc_context3 (_audio_codec);
if (!_audio_codec_context) {
throw runtime_error ("could not allocate FFmpeg audio context");
}
avcodec_get_context_defaults3 (_audio_codec_context, _audio_codec);
/* XXX: configurable */
_audio_codec_context->bit_rate = 256 * 1024;
_audio_codec_context->sample_fmt = _sample_format;
_audio_codec_context->sample_rate = _audio_frame_rate;
_audio_codec_context->channel_layout = av_get_default_channel_layout (_audio_channels);
_audio_codec_context->channels = _audio_channels;
}
void
FFmpegFileEncoder::flush ()
{
if (_pending_audio->frames() > 0) {
audio_frame (_pending_audio->frames ());
}
bool flushed_video = false;
bool flushed_audio = false;
while (!flushed_video || !flushed_audio) {
AVPacket packet;
av_init_packet (&packet);
packet.data = 0;
packet.size = 0;
int got_packet;
avcodec_encode_video2 (_video_codec_context, &packet, 0, &got_packet);
if (got_packet) {
packet.stream_index = 0;
av_interleaved_write_frame (_format_context, &packet);
} else {
flushed_video = true;
}
av_packet_unref (&packet);
av_init_packet (&packet);
packet.data = 0;
packet.size = 0;
avcodec_encode_audio2 (_audio_codec_context, &packet, 0, &got_packet);
if (got_packet) {
packet.stream_index = 0;
av_interleaved_write_frame (_format_context, &packet);
} else {
flushed_audio = true;
}
av_packet_unref (&packet);
}
av_write_trailer (_format_context);
avcodec_close (_video_codec_context);
avcodec_close (_audio_codec_context);
avio_close (_format_context->pb);
avformat_free_context (_format_context);
}
void
FFmpegFileEncoder::video (shared_ptr<PlayerVideo> video, DCPTime time)
{
shared_ptr<Image> image = video->image (
bind (&PlayerVideo::force, _1, _pixel_format),
true,
false
);
AVFrame* frame = av_frame_alloc ();
DCPOMATIC_ASSERT (frame);
_pending_images[image->data()[0]] = image;
for (int i = 0; i < 3; ++i) {
AVBufferRef* buffer = av_buffer_create(image->data()[i], image->stride()[i] * image->size().height, &buffer_free, this, 0);
frame->buf[i] = av_buffer_ref (buffer);
frame->data[i] = buffer->data;
frame->linesize[i] = image->stride()[i];
av_buffer_unref (&buffer);
}
frame->width = image->size().width;
frame->height = image->size().height;
frame->format = _pixel_format;
frame->pts = time.seconds() / av_q2d (_video_stream->time_base);
AVPacket packet;
av_init_packet (&packet);
packet.data = 0;
packet.size = 0;
int got_packet;
if (avcodec_encode_video2 (_video_codec_context, &packet, frame, &got_packet) < 0) {
throw EncodeError ("FFmpeg video encode failed");
}
if (got_packet && packet.size) {
packet.stream_index = _video_stream_index;
av_interleaved_write_frame (_format_context, &packet);
av_packet_unref (&packet);
}
av_frame_free (&frame);
}
/** Called when the player gives us some audio */
void
FFmpegFileEncoder::audio (shared_ptr<AudioBuffers> audio)
{
_pending_audio->append (audio);
int frame_size = _audio_codec_context->frame_size;
if (frame_size == 0) {
/* codec has AV_CODEC_CAP_VARIABLE_FRAME_SIZE */
frame_size = _audio_frame_rate / _video_frame_rate;
}
while (_pending_audio->frames() >= frame_size) {
audio_frame (frame_size);
}
}
void
FFmpegFileEncoder::audio_frame (int size)
{
DCPOMATIC_ASSERT (size);
AVFrame* frame = av_frame_alloc ();
DCPOMATIC_ASSERT (frame);
int const channels = _pending_audio->channels();
DCPOMATIC_ASSERT (channels);
int const buffer_size = av_samples_get_buffer_size (0, channels, size, _audio_codec_context->sample_fmt, 0);
DCPOMATIC_ASSERT (buffer_size >= 0);
void* samples = av_malloc (buffer_size);
DCPOMATIC_ASSERT (samples);
frame->nb_samples = size;
int r = avcodec_fill_audio_frame (frame, channels, _audio_codec_context->sample_fmt, (const uint8_t *) samples, buffer_size, 0);
DCPOMATIC_ASSERT (r >= 0);
float** p = _pending_audio->data ();
switch (_audio_codec_context->sample_fmt) {
case AV_SAMPLE_FMT_S16:
{
int16_t* q = reinterpret_cast<int16_t*> (samples);
for (int i = 0; i < size; ++i) {
for (int j = 0; j < channels; ++j) {
*q++ = p[j][i] * 32767;
}
}
break;
}
case AV_SAMPLE_FMT_FLTP:
{
float* q = reinterpret_cast<float*> (samples);
for (int i = 0; i < channels; ++i) {
memcpy (q, p[i], sizeof(float) * size);
q += size;
}
break;
}
default:
DCPOMATIC_ASSERT (false);
}
AVPacket packet;
av_init_packet (&packet);
packet.data = 0;
packet.size = 0;
int got_packet;
if (avcodec_encode_audio2 (_audio_codec_context, &packet, frame, &got_packet) < 0) {
throw EncodeError ("FFmpeg audio encode failed");
}
if (got_packet && packet.size) {
packet.stream_index = _audio_stream_index;
av_interleaved_write_frame (_format_context, &packet);
av_packet_unref (&packet);
}
av_free (samples);
av_frame_free (&frame);
_pending_audio->trim_start (size);
}
void
FFmpegFileEncoder::subtitle (PlayerText, DCPTimePeriod)
{
}
void
FFmpegFileEncoder::buffer_free (void* opaque, uint8_t* data)
{
reinterpret_cast<FFmpegFileEncoder*>(opaque)->buffer_free2(data);
}
void
FFmpegFileEncoder::buffer_free2 (uint8_t* data)
{
_pending_images.erase (data);
}
|