6 #include "frame_on_disk.h"
8 #include "shared/ffmpeg_raii.h"
9 #include "shared/shared_defs.h"
10 #include "shared/timebase.h"
12 #include <QMessageBox>
13 #include <QProgressDialog>
19 #include <libavformat/avformat.h>
26 // Only used in export_cliplist_clip_multitrack_triggered.
27 struct BufferedFrame {
29 unsigned video_stream_idx;
33 bool write_buffered_frames(AVFormatContext *avctx, const vector<BufferedFrame> &buffered_frames)
35 for (const BufferedFrame &frame : buffered_frames) {
38 pkt.stream_index = frame.video_stream_idx;
39 pkt.data = (uint8_t *)frame.data.data();
40 pkt.size = frame.data.size();
43 pkt.flags = AV_PKT_FLAG_KEY;
45 if (av_write_frame(avctx, &pkt) < 0) {
54 void export_multitrack_clip(const string &filename, const Clip &clip)
56 AVFormatContext *avctx = nullptr;
57 avformat_alloc_output_context2(&avctx, NULL, NULL, filename.c_str());
58 if (avctx == nullptr) {
60 msgbox.setText("Could not allocate FFmpeg context");
64 AVFormatContextWithCloser closer(avctx);
66 int ret = avio_open(&avctx->pb, filename.c_str(), AVIO_FLAG_WRITE);
69 msgbox.setText(QString::fromStdString("Could not open output file '" + filename + "'"));
74 // Find the first frame for each stream.
75 size_t num_frames = 0;
76 size_t num_streams_with_frames_left = 0;
77 size_t last_stream_idx = 0;
78 FrameReader readers[MAX_STREAMS];
79 bool has_frames[MAX_STREAMS];
80 size_t first_frame_idx[MAX_STREAMS], last_frame_idx[MAX_STREAMS]; // Inclusive, exclusive.
82 lock_guard<mutex> lock(frame_mu);
83 for (size_t stream_idx = 0; stream_idx < MAX_STREAMS; ++stream_idx) {
84 // Find the first frame such that frame.pts <= pts_in.
85 auto it = find_first_frame_at_or_after(frames[stream_idx], clip.pts_in);
86 first_frame_idx[stream_idx] = distance(frames[stream_idx].begin(), it);
87 has_frames[stream_idx] = (it != frames[stream_idx].end());
89 // Find the first frame such that frame.pts >= pts_out.
90 it = find_first_frame_at_or_after(frames[stream_idx], clip.pts_out);
91 last_frame_idx[stream_idx] = distance(frames[stream_idx].begin(), it);
92 num_frames += last_frame_idx[stream_idx] - first_frame_idx[stream_idx];
94 if (has_frames[stream_idx]) {
95 ++num_streams_with_frames_left;
96 last_stream_idx = stream_idx;
101 // Create the streams. Note that some of them could be without frames
102 // (we try to maintain the stream indexes in the export).
103 vector<AVStream *> video_streams;
104 for (unsigned stream_idx = 0; stream_idx <= last_stream_idx; ++stream_idx) {
105 AVStream *avstream_video = avformat_new_stream(avctx, nullptr);
106 if (avstream_video == nullptr) {
107 fprintf(stderr, "avformat_new_stream() failed\n");
110 avstream_video->time_base = AVRational{ 1, TIMEBASE };
111 avstream_video->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
112 avstream_video->codecpar->codec_id = AV_CODEC_ID_MJPEG;
113 avstream_video->codecpar->width = global_flags.width; // Might be wrong, but doesn't matter all that much.
114 avstream_video->codecpar->height = global_flags.height;
116 // TODO: Deduplicate this against Mux.
117 avstream_video->codecpar->color_primaries = AVCOL_PRI_BT709; // RGB colorspace (inout_format.color_space).
118 avstream_video->codecpar->color_trc = AVCOL_TRC_IEC61966_2_1; // Gamma curve (inout_format.gamma_curve).
119 // YUV colorspace (output_ycbcr_format.luma_coefficients).
120 avstream_video->codecpar->color_space = AVCOL_SPC_BT709;
121 avstream_video->codecpar->color_range = AVCOL_RANGE_MPEG; // Full vs. limited range (output_ycbcr_format.full_range).
122 avstream_video->codecpar->chroma_location = AVCHROMA_LOC_LEFT; // Chroma sample location. See chroma_offset_0[] in Mixer::subsample_chroma().
123 avstream_video->codecpar->field_order = AV_FIELD_PROGRESSIVE;
124 video_streams.push_back(avstream_video);
127 // Similar, for audio streams.
128 vector<AVStream *> audio_streams;
129 for (unsigned stream_idx = 0; stream_idx <= last_stream_idx; ++stream_idx) {
130 AVStream *avstream_audio = avformat_new_stream(avctx, nullptr);
131 if (avstream_audio == nullptr) {
132 fprintf(stderr, "avformat_new_stream() failed\n");
135 avstream_audio->time_base = AVRational{ 1, TIMEBASE };
136 avstream_audio->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
137 avstream_audio->codecpar->codec_id = AV_CODEC_ID_PCM_S32LE;
138 avstream_audio->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
139 avstream_audio->codecpar->channels = 2;
140 avstream_audio->codecpar->sample_rate = OUTPUT_FREQUENCY;
141 audio_streams.push_back(avstream_audio);
144 if (avformat_write_header(avctx, nullptr) < 0) {
146 msgbox.setText("Writing header failed");
148 unlink(filename.c_str());
152 QProgressDialog progress(QString::fromStdString("Exporting to " + filename + "..."), "Abort", 0, 1);
153 progress.setWindowTitle("Futatabi");
154 progress.setWindowModality(Qt::WindowModal);
155 progress.setMinimumDuration(1000);
156 progress.setMaximum(num_frames);
157 progress.setValue(0);
159 // We buffer up to 1000 frames at a time, in a hope that we can reduce
160 // the amount of seeking needed on rotational media.
161 vector<BufferedFrame> buffered_frames;
162 size_t frames_written = 0;
163 while (num_streams_with_frames_left > 0) {
164 // Find the stream with the lowest frame. Lower stream indexes win.
165 FrameOnDisk first_frame;
166 unsigned first_frame_stream_idx = 0;
168 lock_guard<mutex> lock(frame_mu);
169 for (size_t stream_idx = 0; stream_idx < MAX_STREAMS; ++stream_idx) {
170 if (!has_frames[stream_idx]) {
173 if (first_frame.pts == -1 || frames[stream_idx][first_frame_idx[stream_idx]].pts < first_frame.pts) {
174 first_frame = frames[stream_idx][first_frame_idx[stream_idx]];
175 first_frame_stream_idx = stream_idx;
178 ++first_frame_idx[first_frame_stream_idx];
179 if (first_frame_idx[first_frame_stream_idx] >= last_frame_idx[first_frame_stream_idx]) {
180 has_frames[first_frame_stream_idx] = false;
181 --num_streams_with_frames_left;
185 FrameReader::Frame frame = readers[first_frame_stream_idx].read_frame(first_frame, /*read_video=*/true, /*read_audio=*/true);
187 // Write audio. (Before video, since that's what we expect on input.)
188 if (!frame.audio.empty()) {
189 unsigned audio_stream_idx = first_frame_stream_idx + video_streams.size();
190 int64_t scaled_audio_pts = av_rescale_q(first_frame.pts, AVRational{ 1, TIMEBASE },
191 audio_streams[first_frame_stream_idx]->time_base);
192 buffered_frames.emplace_back(BufferedFrame{ scaled_audio_pts, audio_stream_idx, std::move(frame.audio) });
196 unsigned video_stream_idx = first_frame_stream_idx;
197 int64_t scaled_video_pts = av_rescale_q(first_frame.pts, AVRational{ 1, TIMEBASE },
198 video_streams[first_frame_stream_idx]->time_base);
199 buffered_frames.emplace_back(BufferedFrame{ scaled_video_pts, video_stream_idx, std::move(frame.video) });
201 // Flush to disk if required.
202 if (buffered_frames.size() >= 1000) {
203 if (!write_buffered_frames(avctx, buffered_frames)) {
205 msgbox.setText("Writing frames failed");
207 unlink(filename.c_str());
210 frames_written += buffered_frames.size();
211 progress.setValue(frames_written);
212 buffered_frames.clear();
214 if (progress.wasCanceled()) {
215 unlink(filename.c_str());
220 if (!write_buffered_frames(avctx, buffered_frames)) {
222 msgbox.setText("Writing frames failed");
224 unlink(filename.c_str());
227 frames_written += buffered_frames.size();
228 progress.setValue(frames_written);
231 void export_interpolated_clip(const string &filename, const vector<Clip> &clips)
233 AVFormatContext *avctx = nullptr;
234 avformat_alloc_output_context2(&avctx, NULL, NULL, filename.c_str());
235 if (avctx == nullptr) {
237 msgbox.setText("Could not allocate FFmpeg context");
241 AVFormatContextWithCloser closer(avctx);
243 int ret = avio_open(&avctx->pb, filename.c_str(), AVIO_FLAG_WRITE);
246 msgbox.setText(QString::fromStdString("Could not open output file '" + filename + "'"));
251 QProgressDialog progress(QString::fromStdString("Exporting to " + filename + "..."), "Abort", 0, 1);
252 progress.setWindowTitle("Futatabi");
253 progress.setWindowModality(Qt::WindowModal);
254 progress.setMinimumDuration(1000);
255 progress.setMaximum(100000);
256 progress.setValue(0);
258 vector<ClipWithID> clips_with_id;
259 for (const Clip &clip : clips) {
260 clips_with_id.emplace_back(ClipWithID{ clip, 0 });
262 TimeRemaining total_length = compute_total_time(clips_with_id);
264 promise<void> done_promise;
265 future<void> done = done_promise.get_future();
266 std::atomic<double> current_value{ 0.0 };
268 Player player(/*destination=*/nullptr, Player::FILE_STREAM_OUTPUT, closer.release());
269 player.set_done_callback([&done_promise] {
270 done_promise.set_value();
272 player.set_progress_callback([¤t_value, total_length](const std::map<uint64_t, double> &player_progress, TimeRemaining time_remaining) {
273 current_value = 1.0 - time_remaining.t / total_length.t; // Nothing to do about the infinite clips.
275 player.play(clips_with_id);
276 while (done.wait_for(std::chrono::milliseconds(100)) != future_status::ready && !progress.wasCanceled()) {
277 progress.setValue(lrint(100000.0 * current_value));
279 if (progress.wasCanceled()) {
280 unlink(filename.c_str());
281 // Destroying player on scope exit will abort the render job.