Commit | Line | Data |
---|---|---|
6291d7e4 AK |
1 | /* |
2 | * avconv main | |
3 | * Copyright (c) 2000-2011 The libav developers. | |
4 | * | |
5 | * This file is part of Libav. | |
6 | * | |
7 | * Libav is free software; you can redistribute it and/or | |
8 | * modify it under the terms of the GNU Lesser General Public | |
9 | * License as published by the Free Software Foundation; either | |
10 | * version 2.1 of the License, or (at your option) any later version. | |
11 | * | |
12 | * Libav is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | * Lesser General Public License for more details. | |
16 | * | |
17 | * You should have received a copy of the GNU Lesser General Public | |
18 | * License along with Libav; if not, write to the Free Software | |
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
20 | */ | |
21 | ||
22 | #include "config.h" | |
23 | #include <ctype.h> | |
24 | #include <string.h> | |
25 | #include <math.h> | |
26 | #include <stdlib.h> | |
27 | #include <errno.h> | |
28 | #include <signal.h> | |
29 | #include <limits.h> | |
8f8bc923 DB |
30 | #include <stdint.h> |
31 | ||
6291d7e4 AK |
32 | #include "libavformat/avformat.h" |
33 | #include "libavdevice/avdevice.h" | |
34 | #include "libswscale/swscale.h" | |
bcb82fe1 | 35 | #include "libavresample/avresample.h" |
6291d7e4 | 36 | #include "libavutil/opt.h" |
a903f8f0 | 37 | #include "libavutil/channel_layout.h" |
6291d7e4 AK |
38 | #include "libavutil/parseutils.h" |
39 | #include "libavutil/samplefmt.h" | |
6291d7e4 AK |
40 | #include "libavutil/fifo.h" |
41 | #include "libavutil/intreadwrite.h" | |
42 | #include "libavutil/dict.h" | |
43 | #include "libavutil/mathematics.h" | |
44 | #include "libavutil/pixdesc.h" | |
45 | #include "libavutil/avstring.h" | |
46 | #include "libavutil/libm.h" | |
64dca32c | 47 | #include "libavutil/imgutils.h" |
896bb0d7 | 48 | #include "libavutil/time.h" |
6291d7e4 AK |
49 | #include "libavformat/os_support.h" |
50 | ||
6291d7e4 | 51 | # include "libavfilter/avfilter.h" |
04a14d4d | 52 | # include "libavfilter/buffersrc.h" |
ac712309 | 53 | # include "libavfilter/buffersink.h" |
6291d7e4 AK |
54 | |
55 | #if HAVE_SYS_RESOURCE_H | |
3f65eff4 | 56 | #include <sys/time.h> |
6291d7e4 | 57 | #include <sys/types.h> |
6291d7e4 AK |
58 | #include <sys/resource.h> |
59 | #elif HAVE_GETPROCESSTIMES | |
60 | #include <windows.h> | |
61 | #endif | |
62 | #if HAVE_GETPROCESSMEMORYINFO | |
63 | #include <windows.h> | |
64 | #include <psapi.h> | |
65 | #endif | |
66 | ||
67 | #if HAVE_SYS_SELECT_H | |
68 | #include <sys/select.h> | |
69 | #endif | |
70 | ||
5db5169e AK |
71 | #if HAVE_PTHREADS |
72 | #include <pthread.h> | |
5db5169e AK |
73 | #endif |
74 | ||
6291d7e4 AK |
75 | #include <time.h> |
76 | ||
f5e66827 | 77 | #include "avconv.h" |
6291d7e4 AK |
78 | #include "cmdutils.h" |
79 | ||
80 | #include "libavutil/avassert.h" | |
81 | ||
82 | const char program_name[] = "avconv"; | |
83 | const int program_birth_year = 2000; | |
84 | ||
6291d7e4 | 85 | static FILE *vstats_file; |
6291d7e4 | 86 | |
6291d7e4 AK |
87 | static int64_t video_size = 0; |
88 | static int64_t audio_size = 0; | |
89 | static int64_t extra_size = 0; | |
90 | static int nb_frames_dup = 0; | |
91 | static int nb_frames_drop = 0; | |
6291d7e4 | 92 | |
6291d7e4 | 93 | |
3460dd8a | 94 | |
47b812e9 | 95 | #if HAVE_PTHREADS |
5db5169e AK |
96 | /* signal to input threads that they should exit; set by the main thread */ |
97 | static int transcoding_finished; | |
98 | #endif | |
99 | ||
6291d7e4 AK |
100 | #define DEFAULT_PASS_LOGFILENAME_PREFIX "av2pass" |
101 | ||
f5e66827 AK |
102 | InputStream **input_streams = NULL; |
103 | int nb_input_streams = 0; | |
104 | InputFile **input_files = NULL; | |
105 | int nb_input_files = 0; | |
6b779ccc | 106 | |
f5e66827 AK |
107 | OutputStream **output_streams = NULL; |
108 | int nb_output_streams = 0; | |
109 | OutputFile **output_files = NULL; | |
110 | int nb_output_files = 0; | |
6b779ccc | 111 | |
f5e66827 AK |
112 | FilterGraph **filtergraphs; |
113 | int nb_filtergraphs; | |
575ec4e1 | 114 | |
6291d7e4 AK |
115 | static void term_exit(void) |
116 | { | |
117 | av_log(NULL, AV_LOG_QUIET, ""); | |
118 | } | |
119 | ||
120 | static volatile int received_sigterm = 0; | |
121 | static volatile int received_nb_signals = 0; | |
122 | ||
123 | static void | |
124 | sigterm_handler(int sig) | |
125 | { | |
126 | received_sigterm = sig; | |
127 | received_nb_signals++; | |
128 | term_exit(); | |
129 | } | |
130 | ||
131 | static void term_init(void) | |
132 | { | |
7636c8c6 | 133 | signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */ |
6291d7e4 AK |
134 | signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */ |
135 | #ifdef SIGXCPU | |
136 | signal(SIGXCPU, sigterm_handler); | |
137 | #endif | |
138 | } | |
139 | ||
2abe947a | 140 | static int decode_interrupt_cb(void *ctx) |
6291d7e4 AK |
141 | { |
142 | return received_nb_signals > 1; | |
143 | } | |
144 | ||
f5e66827 | 145 | const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL }; |
2abe947a | 146 | |
636ced8e | 147 | static void avconv_cleanup(int ret) |
6291d7e4 | 148 | { |
560f7774 AK |
149 | int i, j; |
150 | ||
151 | for (i = 0; i < nb_filtergraphs; i++) { | |
152 | avfilter_graph_free(&filtergraphs[i]->graph); | |
cf6c38c6 AK |
153 | for (j = 0; j < filtergraphs[i]->nb_inputs; j++) { |
154 | av_freep(&filtergraphs[i]->inputs[j]->name); | |
560f7774 | 155 | av_freep(&filtergraphs[i]->inputs[j]); |
cf6c38c6 | 156 | } |
560f7774 | 157 | av_freep(&filtergraphs[i]->inputs); |
cf6c38c6 AK |
158 | for (j = 0; j < filtergraphs[i]->nb_outputs; j++) { |
159 | av_freep(&filtergraphs[i]->outputs[j]->name); | |
560f7774 | 160 | av_freep(&filtergraphs[i]->outputs[j]); |
cf6c38c6 | 161 | } |
560f7774 | 162 | av_freep(&filtergraphs[i]->outputs); |
a4208b9b | 163 | av_freep(&filtergraphs[i]->graph_desc); |
560f7774 AK |
164 | av_freep(&filtergraphs[i]); |
165 | } | |
166 | av_freep(&filtergraphs); | |
6291d7e4 AK |
167 | |
168 | /* close files */ | |
7636c8c6 | 169 | for (i = 0; i < nb_output_files; i++) { |
2e215267 | 170 | AVFormatContext *s = output_files[i]->ctx; |
274e134e | 171 | if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE) && s->pb) |
6291d7e4 AK |
172 | avio_close(s->pb); |
173 | avformat_free_context(s); | |
2e215267 AK |
174 | av_dict_free(&output_files[i]->opts); |
175 | av_freep(&output_files[i]); | |
6291d7e4 | 176 | } |
1135a071 | 177 | for (i = 0; i < nb_output_streams; i++) { |
2e215267 | 178 | AVBitStreamFilterContext *bsfc = output_streams[i]->bitstream_filters; |
1135a071 JG |
179 | while (bsfc) { |
180 | AVBitStreamFilterContext *next = bsfc->next; | |
181 | av_bitstream_filter_close(bsfc); | |
182 | bsfc = next; | |
183 | } | |
2e215267 | 184 | output_streams[i]->bitstream_filters = NULL; |
eb891b31 | 185 | av_frame_free(&output_streams[i]->filtered_frame); |
ac646076 | 186 | |
c872d310 AK |
187 | av_parser_close(output_streams[i]->parser); |
188 | ||
19ad5673 | 189 | av_freep(&output_streams[i]->forced_keyframes); |
2e215267 | 190 | av_freep(&output_streams[i]->avfilter); |
bbcedade | 191 | av_freep(&output_streams[i]->logfile_prefix); |
2e215267 | 192 | av_freep(&output_streams[i]); |
1135a071 | 193 | } |
7636c8c6 | 194 | for (i = 0; i < nb_input_files; i++) { |
2e215267 AK |
195 | avformat_close_input(&input_files[i]->ctx); |
196 | av_freep(&input_files[i]); | |
6291d7e4 | 197 | } |
9179f27c | 198 | for (i = 0; i < nb_input_streams; i++) { |
9b2dc295 AK |
199 | av_frame_free(&input_streams[i]->decoded_frame); |
200 | av_frame_free(&input_streams[i]->filter_frame); | |
2e215267 | 201 | av_dict_free(&input_streams[i]->opts); |
560f7774 | 202 | av_freep(&input_streams[i]->filters); |
07fd0a22 | 203 | av_freep(&input_streams[i]->hwaccel_device); |
2e215267 | 204 | av_freep(&input_streams[i]); |
9179f27c | 205 | } |
6291d7e4 | 206 | |
6291d7e4 AK |
207 | if (vstats_file) |
208 | fclose(vstats_file); | |
209 | av_free(vstats_filename); | |
210 | ||
6291d7e4 AK |
211 | av_freep(&input_streams); |
212 | av_freep(&input_files); | |
4288e031 | 213 | av_freep(&output_streams); |
af70aa45 | 214 | av_freep(&output_files); |
6291d7e4 | 215 | |
6291d7e4 | 216 | uninit_opts(); |
6291d7e4 | 217 | |
776f2bb9 | 218 | avformat_network_deinit(); |
6291d7e4 AK |
219 | |
220 | if (received_sigterm) { | |
e3245b26 AK |
221 | av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n", |
222 | (int) received_sigterm); | |
6291d7e4 AK |
223 | exit (255); |
224 | } | |
6291d7e4 AK |
225 | } |
226 | ||
f5e66827 | 227 | void assert_avoptions(AVDictionary *m) |
6291d7e4 AK |
228 | { |
229 | AVDictionaryEntry *t; | |
230 | if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) { | |
f24facd3 | 231 | av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key); |
636ced8e | 232 | exit_program(1); |
6291d7e4 AK |
233 | } |
234 | } | |
235 | ||
c854102d | 236 | static void abort_codec_experimental(AVCodec *c, int encoder) |
6291d7e4 AK |
237 | { |
238 | const char *codec_string = encoder ? "encoder" : "decoder"; | |
239 | AVCodec *codec; | |
c854102d NC |
240 | av_log(NULL, AV_LOG_FATAL, "%s '%s' is experimental and might produce bad " |
241 | "results.\nAdd '-strict experimental' if you want to use it.\n", | |
242 | codec_string, c->name); | |
243 | codec = encoder ? avcodec_find_encoder(c->id) : avcodec_find_decoder(c->id); | |
244 | if (!(codec->capabilities & CODEC_CAP_EXPERIMENTAL)) | |
245 | av_log(NULL, AV_LOG_FATAL, "Or use the non experimental %s '%s'.\n", | |
246 | codec_string, codec->name); | |
636ced8e | 247 | exit_program(1); |
6291d7e4 AK |
248 | } |
249 | ||
c1ef30a6 | 250 | /* |
6291d7e4 AK |
251 | * Update the requested input sample format based on the output sample format. |
252 | * This is currently only used to request float output from decoders which | |
253 | * support multiple sample formats, one of which is AV_SAMPLE_FMT_FLT. | |
254 | * Ideally this will be removed in the future when decoders do not do format | |
255 | * conversion and only output in their native format. | |
256 | */ | |
257 | static void update_sample_fmt(AVCodecContext *dec, AVCodec *dec_codec, | |
258 | AVCodecContext *enc) | |
259 | { | |
260 | /* if sample formats match or a decoder sample format has already been | |
261 | requested, just return */ | |
262 | if (enc->sample_fmt == dec->sample_fmt || | |
263 | dec->request_sample_fmt > AV_SAMPLE_FMT_NONE) | |
264 | return; | |
265 | ||
266 | /* if decoder supports more than one output format */ | |
267 | if (dec_codec && dec_codec->sample_fmts && | |
268 | dec_codec->sample_fmts[0] != AV_SAMPLE_FMT_NONE && | |
269 | dec_codec->sample_fmts[1] != AV_SAMPLE_FMT_NONE) { | |
270 | const enum AVSampleFormat *p; | |
fd41cb43 JR |
271 | int min_dec = INT_MAX, min_inc = INT_MAX; |
272 | enum AVSampleFormat dec_fmt = AV_SAMPLE_FMT_NONE; | |
273 | enum AVSampleFormat inc_fmt = AV_SAMPLE_FMT_NONE; | |
6291d7e4 AK |
274 | |
275 | /* find a matching sample format in the encoder */ | |
276 | for (p = dec_codec->sample_fmts; *p != AV_SAMPLE_FMT_NONE; p++) { | |
277 | if (*p == enc->sample_fmt) { | |
278 | dec->request_sample_fmt = *p; | |
279 | return; | |
fd41cb43 JR |
280 | } else { |
281 | enum AVSampleFormat dfmt = av_get_packed_sample_fmt(*p); | |
282 | enum AVSampleFormat efmt = av_get_packed_sample_fmt(enc->sample_fmt); | |
283 | int fmt_diff = 32 * abs(dfmt - efmt); | |
284 | if (av_sample_fmt_is_planar(*p) != | |
285 | av_sample_fmt_is_planar(enc->sample_fmt)) | |
286 | fmt_diff++; | |
287 | if (dfmt == efmt) { | |
288 | min_inc = fmt_diff; | |
289 | inc_fmt = *p; | |
290 | } else if (dfmt > efmt) { | |
291 | if (fmt_diff < min_inc) { | |
292 | min_inc = fmt_diff; | |
293 | inc_fmt = *p; | |
294 | } | |
295 | } else { | |
296 | if (fmt_diff < min_dec) { | |
297 | min_dec = fmt_diff; | |
298 | dec_fmt = *p; | |
299 | } | |
300 | } | |
301 | } | |
6291d7e4 AK |
302 | } |
303 | ||
304 | /* if none match, provide the one that matches quality closest */ | |
fd41cb43 | 305 | dec->request_sample_fmt = min_inc != INT_MAX ? inc_fmt : dec_fmt; |
6291d7e4 AK |
306 | } |
307 | } | |
308 | ||
f15f02c2 | 309 | static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost) |
7636c8c6 | 310 | { |
f15f02c2 AK |
311 | AVBitStreamFilterContext *bsfc = ost->bitstream_filters; |
312 | AVCodecContext *avctx = ost->st->codec; | |
6291d7e4 AK |
313 | int ret; |
314 | ||
99932847 AK |
315 | /* |
316 | * Audio encoders may split the packets -- #frames in != #packets out. | |
317 | * But there is no reordering, so we can limit the number of output packets | |
318 | * by simply dropping them here. | |
319 | * Counting encoded video frames needs to be done separately because of | |
320 | * reordering, see do_video_out() | |
321 | */ | |
322 | if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) { | |
c9594fe0 JR |
323 | if (ost->frame_number >= ost->max_frames) { |
324 | av_free_packet(pkt); | |
99932847 | 325 | return; |
c9594fe0 | 326 | } |
99932847 AK |
327 | ost->frame_number++; |
328 | } | |
329 | ||
7636c8c6 AD |
330 | while (bsfc) { |
331 | AVPacket new_pkt = *pkt; | |
332 | int a = av_bitstream_filter_filter(bsfc, avctx, NULL, | |
333 | &new_pkt.data, &new_pkt.size, | |
334 | pkt->data, pkt->size, | |
335 | pkt->flags & AV_PKT_FLAG_KEY); | |
336 | if (a > 0) { | |
6291d7e4 | 337 | av_free_packet(pkt); |
9b2dc295 AK |
338 | new_pkt.buf = av_buffer_create(new_pkt.data, new_pkt.size, |
339 | av_buffer_default_free, NULL, 0); | |
340 | if (!new_pkt.buf) | |
636ced8e | 341 | exit_program(1); |
7636c8c6 | 342 | } else if (a < 0) { |
e3245b26 AK |
343 | av_log(NULL, AV_LOG_ERROR, "%s failed for stream %d, codec %s", |
344 | bsfc->filter->name, pkt->stream_index, | |
345 | avctx->codec ? avctx->codec->name : "copy"); | |
6291d7e4 AK |
346 | print_error("", a); |
347 | if (exit_on_error) | |
636ced8e | 348 | exit_program(1); |
6291d7e4 | 349 | } |
7636c8c6 | 350 | *pkt = new_pkt; |
6291d7e4 | 351 | |
7636c8c6 | 352 | bsfc = bsfc->next; |
6291d7e4 AK |
353 | } |
354 | ||
76d23f40 AK |
355 | if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) && |
356 | ost->last_mux_dts != AV_NOPTS_VALUE && | |
357 | pkt->dts < ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT)) { | |
358 | av_log(NULL, AV_LOG_WARNING, "Non-monotonous DTS in output stream " | |
359 | "%d:%d; previous: %"PRId64", current: %"PRId64"; ", | |
360 | ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts); | |
361 | if (exit_on_error) { | |
362 | av_log(NULL, AV_LOG_FATAL, "aborting.\n"); | |
636ced8e | 363 | exit_program(1); |
76d23f40 AK |
364 | } |
365 | av_log(NULL, AV_LOG_WARNING, "changing to %"PRId64". This may result " | |
366 | "in incorrect timestamps in the output file.\n", | |
367 | ost->last_mux_dts + 1); | |
368 | pkt->dts = ost->last_mux_dts + 1; | |
369 | if (pkt->pts != AV_NOPTS_VALUE) | |
370 | pkt->pts = FFMAX(pkt->pts, pkt->dts); | |
371 | } | |
372 | ost->last_mux_dts = pkt->dts; | |
373 | ||
61a09968 | 374 | pkt->stream_index = ost->index; |
7636c8c6 AD |
375 | ret = av_interleaved_write_frame(s, pkt); |
376 | if (ret < 0) { | |
6291d7e4 | 377 | print_error("av_interleaved_write_frame()", ret); |
636ced8e | 378 | exit_program(1); |
6291d7e4 AK |
379 | } |
380 | } | |
381 | ||
1270e12e AK |
382 | static int check_recording_time(OutputStream *ost) |
383 | { | |
2e215267 | 384 | OutputFile *of = output_files[ost->file_index]; |
1270e12e AK |
385 | |
386 | if (of->recording_time != INT64_MAX && | |
387 | av_compare_ts(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, of->recording_time, | |
388 | AV_TIME_BASE_Q) >= 0) { | |
57d24225 | 389 | ost->finished = 1; |
1270e12e AK |
390 | return 0; |
391 | } | |
392 | return 1; | |
393 | } | |
394 | ||
369cb092 AK |
395 | static void do_audio_out(AVFormatContext *s, OutputStream *ost, |
396 | AVFrame *frame) | |
ee458cb1 JR |
397 | { |
398 | AVCodecContext *enc = ost->st->codec; | |
ee458cb1 | 399 | AVPacket pkt; |
369cb092 | 400 | int got_packet = 0; |
ee458cb1 JR |
401 | |
402 | av_init_packet(&pkt); | |
403 | pkt.data = NULL; | |
404 | pkt.size = 0; | |
405 | ||
369cb092 | 406 | if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0) |
9b9fc9ba | 407 | frame->pts = ost->sync_opts; |
369cb092 | 408 | ost->sync_opts = frame->pts + frame->nb_samples; |
ee458cb1 | 409 | |
ee458cb1 JR |
410 | if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) { |
411 | av_log(NULL, AV_LOG_FATAL, "Audio encoding failed\n"); | |
636ced8e | 412 | exit_program(1); |
ee458cb1 JR |
413 | } |
414 | ||
415 | if (got_packet) { | |
ee458cb1 JR |
416 | if (pkt.pts != AV_NOPTS_VALUE) |
417 | pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base); | |
a75bc764 JR |
418 | if (pkt.dts != AV_NOPTS_VALUE) |
419 | pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base); | |
ee458cb1 JR |
420 | if (pkt.duration > 0) |
421 | pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base); | |
422 | ||
423 | write_frame(s, &pkt, ost); | |
424 | ||
425 | audio_size += pkt.size; | |
426 | } | |
6291d7e4 AK |
427 | } |
428 | ||
6291d7e4 AK |
429 | static void do_subtitle_out(AVFormatContext *s, |
430 | OutputStream *ost, | |
431 | InputStream *ist, | |
432 | AVSubtitle *sub, | |
433 | int64_t pts) | |
434 | { | |
435 | static uint8_t *subtitle_out = NULL; | |
436 | int subtitle_out_max_size = 1024 * 1024; | |
437 | int subtitle_out_size, nb, i; | |
438 | AVCodecContext *enc; | |
439 | AVPacket pkt; | |
440 | ||
441 | if (pts == AV_NOPTS_VALUE) { | |
e3245b26 | 442 | av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n"); |
6291d7e4 | 443 | if (exit_on_error) |
636ced8e | 444 | exit_program(1); |
6291d7e4 AK |
445 | return; |
446 | } | |
447 | ||
448 | enc = ost->st->codec; | |
449 | ||
450 | if (!subtitle_out) { | |
451 | subtitle_out = av_malloc(subtitle_out_max_size); | |
452 | } | |
453 | ||
454 | /* Note: DVB subtitle need one packet to draw them and one other | |
455 | packet to clear them */ | |
456 | /* XXX: signal it in the codec context ? */ | |
36ef5369 | 457 | if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) |
6291d7e4 AK |
458 | nb = 2; |
459 | else | |
460 | nb = 1; | |
461 | ||
7636c8c6 | 462 | for (i = 0; i < nb; i++) { |
1270e12e AK |
463 | ost->sync_opts = av_rescale_q(pts, ist->st->time_base, enc->time_base); |
464 | if (!check_recording_time(ost)) | |
465 | return; | |
466 | ||
6291d7e4 AK |
467 | sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q); |
468 | // start_display_time is required to be 0 | |
7636c8c6 AD |
469 | sub->pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q); |
470 | sub->end_display_time -= sub->start_display_time; | |
6291d7e4 AK |
471 | sub->start_display_time = 0; |
472 | subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out, | |
473 | subtitle_out_max_size, sub); | |
474 | if (subtitle_out_size < 0) { | |
e3245b26 | 475 | av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n"); |
636ced8e | 476 | exit_program(1); |
6291d7e4 AK |
477 | } |
478 | ||
479 | av_init_packet(&pkt); | |
6291d7e4 AK |
480 | pkt.data = subtitle_out; |
481 | pkt.size = subtitle_out_size; | |
7636c8c6 | 482 | pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base); |
36ef5369 | 483 | if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) { |
6291d7e4 AK |
484 | /* XXX: the pts correction is handled here. Maybe handling |
485 | it in the codec would be better */ | |
486 | if (i == 0) | |
487 | pkt.pts += 90 * sub->start_display_time; | |
488 | else | |
489 | pkt.pts += 90 * sub->end_display_time; | |
490 | } | |
f15f02c2 | 491 | write_frame(s, &pkt, ost); |
6291d7e4 AK |
492 | } |
493 | } | |
494 | ||
87ef060c AC |
495 | static void do_video_out(AVFormatContext *s, |
496 | OutputStream *ost, | |
87ef060c | 497 | AVFrame *in_picture, |
fb722a90 | 498 | int *frame_size) |
87ef060c | 499 | { |
74b961db AK |
500 | int ret, format_video_sync; |
501 | AVPacket pkt; | |
502 | AVCodecContext *enc = ost->st->codec; | |
87ef060c AC |
503 | |
504 | *frame_size = 0; | |
505 | ||
553735f5 | 506 | format_video_sync = video_sync_method; |
e8c04f62 AK |
507 | if (format_video_sync == VSYNC_AUTO) |
508 | format_video_sync = (s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : | |
509 | (s->oformat->flags & AVFMT_VARIABLE_FPS) ? VSYNC_VFR : VSYNC_CFR; | |
74b961db AK |
510 | if (format_video_sync != VSYNC_PASSTHROUGH && |
511 | ost->frame_number && | |
512 | in_picture->pts != AV_NOPTS_VALUE && | |
513 | in_picture->pts < ost->sync_opts) { | |
d43040e2 AK |
514 | nb_frames_drop++; |
515 | av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n"); | |
87ef060c | 516 | return; |
d43040e2 | 517 | } |
87ef060c | 518 | |
74b961db AK |
519 | if (in_picture->pts == AV_NOPTS_VALUE) |
520 | in_picture->pts = ost->sync_opts; | |
521 | ost->sync_opts = in_picture->pts; | |
522 | ||
523 | ||
1270e12e | 524 | if (!ost->frame_number) |
74b961db | 525 | ost->first_pts = in_picture->pts; |
1270e12e | 526 | |
39885a4b AK |
527 | av_init_packet(&pkt); |
528 | pkt.data = NULL; | |
529 | pkt.size = 0; | |
6291d7e4 | 530 | |
a83c0da5 | 531 | if (ost->frame_number >= ost->max_frames) |
39885a4b | 532 | return; |
1270e12e | 533 | |
39885a4b | 534 | if (s->oformat->flags & AVFMT_RAWPICTURE && |
36ef5369 | 535 | enc->codec->id == AV_CODEC_ID_RAWVIDEO) { |
39885a4b AK |
536 | /* raw pictures are written as AVPicture structure to |
537 | avoid any copies. We support temporarily the older | |
538 | method. */ | |
539 | enc->coded_frame->interlaced_frame = in_picture->interlaced_frame; | |
540 | enc->coded_frame->top_field_first = in_picture->top_field_first; | |
541 | pkt.data = (uint8_t *)in_picture; | |
542 | pkt.size = sizeof(AVPicture); | |
543 | pkt.pts = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base); | |
544 | pkt.flags |= AV_PKT_FLAG_KEY; | |
6291d7e4 | 545 | |
39885a4b AK |
546 | write_frame(s, &pkt, ost); |
547 | } else { | |
548 | int got_packet; | |
6291d7e4 | 549 | |
9b2dc295 AK |
550 | if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME) && |
551 | ost->top_field_first >= 0) | |
552 | in_picture->top_field_first = !!ost->top_field_first; | |
553 | ||
554 | in_picture->quality = ost->st->codec->global_quality; | |
39885a4b | 555 | if (!enc->me_threshold) |
9b2dc295 | 556 | in_picture->pict_type = 0; |
39885a4b | 557 | if (ost->forced_kf_index < ost->forced_kf_count && |
9b2dc295 AK |
558 | in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) { |
559 | in_picture->pict_type = AV_PICTURE_TYPE_I; | |
39885a4b AK |
560 | ost->forced_kf_index++; |
561 | } | |
9b2dc295 | 562 | ret = avcodec_encode_video2(enc, &pkt, in_picture, &got_packet); |
39885a4b AK |
563 | if (ret < 0) { |
564 | av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n"); | |
636ced8e | 565 | exit_program(1); |
39885a4b | 566 | } |
6291d7e4 | 567 | |
39885a4b AK |
568 | if (got_packet) { |
569 | if (pkt.pts != AV_NOPTS_VALUE) | |
570 | pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base); | |
571 | if (pkt.dts != AV_NOPTS_VALUE) | |
572 | pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base); | |
6291d7e4 | 573 | |
39885a4b AK |
574 | write_frame(s, &pkt, ost); |
575 | *frame_size = pkt.size; | |
576 | video_size += pkt.size; | |
324fbadf | 577 | |
39885a4b AK |
578 | /* if two pass, output log */ |
579 | if (ost->logfile && enc->stats_out) { | |
580 | fprintf(ost->logfile, "%s", enc->stats_out); | |
6291d7e4 AK |
581 | } |
582 | } | |
39885a4b AK |
583 | } |
584 | ost->sync_opts++; | |
585 | /* | |
586 | * For video, number of frames in == number of packets out. | |
587 | * But there may be reordering, so we can't throw away frames on encoder | |
588 | * flush, we need to limit them here, before they go into encoder. | |
589 | */ | |
590 | ost->frame_number++; | |
6291d7e4 AK |
591 | } |
592 | ||
7636c8c6 AD |
593 | static double psnr(double d) |
594 | { | |
595 | return -10.0 * log(d) / log(10.0); | |
6291d7e4 AK |
596 | } |
597 | ||
70478746 | 598 | static void do_video_stats(OutputStream *ost, int frame_size) |
6291d7e4 AK |
599 | { |
600 | AVCodecContext *enc; | |
601 | int frame_number; | |
602 | double ti1, bitrate, avg_bitrate; | |
603 | ||
604 | /* this is executed just the first time do_video_stats is called */ | |
605 | if (!vstats_file) { | |
606 | vstats_file = fopen(vstats_filename, "w"); | |
607 | if (!vstats_file) { | |
608 | perror("fopen"); | |
636ced8e | 609 | exit_program(1); |
6291d7e4 AK |
610 | } |
611 | } | |
612 | ||
613 | enc = ost->st->codec; | |
614 | if (enc->codec_type == AVMEDIA_TYPE_VIDEO) { | |
615 | frame_number = ost->frame_number; | |
7636c8c6 | 616 | fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA); |
6291d7e4 | 617 | if (enc->flags&CODEC_FLAG_PSNR) |
7636c8c6 | 618 | fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0))); |
6291d7e4 AK |
619 | |
620 | fprintf(vstats_file,"f_size= %6d ", frame_size); | |
621 | /* compute pts value */ | |
622 | ti1 = ost->sync_opts * av_q2d(enc->time_base); | |
623 | if (ti1 < 0.01) | |
624 | ti1 = 0.01; | |
625 | ||
7636c8c6 | 626 | bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0; |
6291d7e4 AK |
627 | avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0; |
628 | fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", | |
7636c8c6 | 629 | (double)video_size / 1024, ti1, bitrate, avg_bitrate); |
6291d7e4 AK |
630 | fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type)); |
631 | } | |
632 | } | |
633 | ||
c1ef30a6 | 634 | /* |
a4f50110 AK |
635 | * Read one frame for lavfi output for ost and encode it. |
636 | */ | |
637 | static int poll_filter(OutputStream *ost) | |
560f7774 | 638 | { |
a4f50110 | 639 | OutputFile *of = output_files[ost->file_index]; |
560f7774 | 640 | AVFrame *filtered_frame = NULL; |
a4f50110 AK |
641 | int frame_size, ret; |
642 | ||
5b9c3b45 | 643 | if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) { |
a4f50110 | 644 | return AVERROR(ENOMEM); |
674fa491 | 645 | } |
a4f50110 AK |
646 | filtered_frame = ost->filtered_frame; |
647 | ||
648 | if (ost->enc->type == AVMEDIA_TYPE_AUDIO && | |
649 | !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE)) | |
9b2dc295 | 650 | ret = av_buffersink_get_samples(ost->filter->filter, filtered_frame, |
a4f50110 AK |
651 | ost->st->codec->frame_size); |
652 | else | |
9b2dc295 | 653 | ret = av_buffersink_get_frame(ost->filter->filter, filtered_frame); |
369cb092 | 654 | |
a4f50110 AK |
655 | if (ret < 0) |
656 | return ret; | |
560f7774 | 657 | |
9b2dc295 | 658 | if (filtered_frame->pts != AV_NOPTS_VALUE) { |
56ee3f9d | 659 | int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time; |
9b2dc295 | 660 | filtered_frame->pts = av_rescale_q(filtered_frame->pts, |
a4f50110 AK |
661 | ost->filter->filter->inputs[0]->time_base, |
662 | ost->st->codec->time_base) - | |
56ee3f9d | 663 | av_rescale_q(start_time, |
a4f50110 AK |
664 | AV_TIME_BASE_Q, |
665 | ost->st->codec->time_base); | |
560f7774 | 666 | } |
a4f50110 AK |
667 | |
668 | switch (ost->filter->filter->inputs[0]->type) { | |
669 | case AVMEDIA_TYPE_VIDEO: | |
670 | if (!ost->frame_aspect_ratio) | |
9b2dc295 | 671 | ost->st->codec->sample_aspect_ratio = filtered_frame->sample_aspect_ratio; |
a4f50110 | 672 | |
fb722a90 | 673 | do_video_out(of->ctx, ost, filtered_frame, &frame_size); |
a4f50110 | 674 | if (vstats_filename && frame_size) |
70478746 | 675 | do_video_stats(ost, frame_size); |
a4f50110 AK |
676 | break; |
677 | case AVMEDIA_TYPE_AUDIO: | |
678 | do_audio_out(of->ctx, ost, filtered_frame); | |
679 | break; | |
680 | default: | |
681 | // TODO support subtitle filters | |
682 | av_assert0(0); | |
683 | } | |
684 | ||
9b2dc295 | 685 | av_frame_unref(filtered_frame); |
a4f50110 | 686 | |
560f7774 AK |
687 | return 0; |
688 | } | |
689 | ||
c1ef30a6 | 690 | /* |
a4f50110 AK |
691 | * Read as many frames from possible from lavfi and encode them. |
692 | * | |
693 | * Always read from the active stream with the lowest timestamp. If no frames | |
694 | * are available for it then return EAGAIN and wait for more input. This way we | |
695 | * can use lavfi sources that generate unlimited amount of frames without memory | |
696 | * usage exploding. | |
697 | */ | |
698 | static int poll_filters(void) | |
699 | { | |
3c0df905 | 700 | int i, j, ret = 0; |
a4f50110 AK |
701 | |
702 | while (ret >= 0 && !received_sigterm) { | |
703 | OutputStream *ost = NULL; | |
704 | int64_t min_pts = INT64_MAX; | |
705 | ||
706 | /* choose output stream with the lowest timestamp */ | |
707 | for (i = 0; i < nb_output_streams; i++) { | |
708 | int64_t pts = output_streams[i]->sync_opts; | |
709 | ||
57d24225 | 710 | if (!output_streams[i]->filter || output_streams[i]->finished) |
a4f50110 AK |
711 | continue; |
712 | ||
713 | pts = av_rescale_q(pts, output_streams[i]->st->codec->time_base, | |
714 | AV_TIME_BASE_Q); | |
715 | if (pts < min_pts) { | |
716 | min_pts = pts; | |
717 | ost = output_streams[i]; | |
718 | } | |
719 | } | |
720 | ||
721 | if (!ost) | |
722 | break; | |
723 | ||
724 | ret = poll_filter(ost); | |
725 | ||
726 | if (ret == AVERROR_EOF) { | |
3c0df905 AK |
727 | OutputFile *of = output_files[ost->file_index]; |
728 | ||
57d24225 | 729 | ost->finished = 1; |
a4f50110 | 730 | |
3c0df905 AK |
731 | if (of->shortest) { |
732 | for (j = 0; j < of->ctx->nb_streams; j++) | |
733 | output_streams[of->ost_index + j]->finished = 1; | |
734 | } | |
a4f50110 AK |
735 | |
736 | ret = 0; | |
737 | } else if (ret == AVERROR(EAGAIN)) | |
738 | return 0; | |
739 | } | |
740 | ||
741 | return ret; | |
742 | } | |
743 | ||
ea9367e9 | 744 | static void print_report(int is_last_report, int64_t timer_start) |
6291d7e4 AK |
745 | { |
746 | char buf[1024]; | |
747 | OutputStream *ost; | |
748 | AVFormatContext *oc; | |
749 | int64_t total_size; | |
750 | AVCodecContext *enc; | |
751 | int frame_number, vid, i; | |
752 | double bitrate, ti1, pts; | |
753 | static int64_t last_time = -1; | |
754 | static int qp_histogram[52]; | |
755 | ||
3460dd8a AK |
756 | if (!print_stats && !is_last_report) |
757 | return; | |
758 | ||
6291d7e4 AK |
759 | if (!is_last_report) { |
760 | int64_t cur_time; | |
761 | /* display the report every 0.5 seconds */ | |
762 | cur_time = av_gettime(); | |
763 | if (last_time == -1) { | |
764 | last_time = cur_time; | |
765 | return; | |
766 | } | |
767 | if ((cur_time - last_time) < 500000) | |
768 | return; | |
769 | last_time = cur_time; | |
770 | } | |
771 | ||
772 | ||
2e215267 | 773 | oc = output_files[0]->ctx; |
6291d7e4 AK |
774 | |
775 | total_size = avio_size(oc->pb); | |
1b891d17 | 776 | if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too |
7636c8c6 | 777 | total_size = avio_tell(oc->pb); |
1b891d17 JG |
778 | if (total_size < 0) { |
779 | char errbuf[128]; | |
780 | av_strerror(total_size, errbuf, sizeof(errbuf)); | |
781 | av_log(NULL, AV_LOG_VERBOSE, "Bitrate not available, " | |
782 | "avio_tell() failed: %s\n", errbuf); | |
783 | total_size = 0; | |
784 | } | |
6291d7e4 AK |
785 | |
786 | buf[0] = '\0'; | |
787 | ti1 = 1e10; | |
788 | vid = 0; | |
ea9367e9 | 789 | for (i = 0; i < nb_output_streams; i++) { |
6291d7e4 | 790 | float q = -1; |
2e215267 | 791 | ost = output_streams[i]; |
6291d7e4 | 792 | enc = ost->st->codec; |
3d813e4c | 793 | if (!ost->stream_copy && enc->coded_frame) |
7636c8c6 | 794 | q = enc->coded_frame->quality / (float)FF_QP2LAMBDA; |
6291d7e4 AK |
795 | if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) { |
796 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q); | |
797 | } | |
798 | if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) { | |
7636c8c6 | 799 | float t = (av_gettime() - timer_start) / 1000000.0; |
6291d7e4 AK |
800 | |
801 | frame_number = ost->frame_number; | |
802 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3d q=%3.1f ", | |
7636c8c6 AD |
803 | frame_number, (t > 1) ? (int)(frame_number / t + 0.5) : 0, q); |
804 | if (is_last_report) | |
6291d7e4 | 805 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L"); |
7636c8c6 | 806 | if (qp_hist) { |
6291d7e4 AK |
807 | int j; |
808 | int qp = lrintf(q); | |
7636c8c6 | 809 | if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram)) |
6291d7e4 | 810 | qp_histogram[qp]++; |
7636c8c6 | 811 | for (j = 0; j < 32; j++) |
d752509b | 812 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1))); |
6291d7e4 | 813 | } |
7636c8c6 | 814 | if (enc->flags&CODEC_FLAG_PSNR) { |
6291d7e4 | 815 | int j; |
7636c8c6 AD |
816 | double error, error_sum = 0; |
817 | double scale, scale_sum = 0; | |
818 | char type[3] = { 'Y','U','V' }; | |
6291d7e4 | 819 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR="); |
7636c8c6 AD |
820 | for (j = 0; j < 3; j++) { |
821 | if (is_last_report) { | |
822 | error = enc->error[j]; | |
823 | scale = enc->width * enc->height * 255.0 * 255.0 * frame_number; | |
824 | } else { | |
825 | error = enc->coded_frame->error[j]; | |
826 | scale = enc->width * enc->height * 255.0 * 255.0; | |
6291d7e4 | 827 | } |
7636c8c6 AD |
828 | if (j) |
829 | scale /= 4; | |
6291d7e4 AK |
830 | error_sum += error; |
831 | scale_sum += scale; | |
7636c8c6 | 832 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error / scale)); |
6291d7e4 | 833 | } |
7636c8c6 | 834 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum)); |
6291d7e4 AK |
835 | } |
836 | vid = 1; | |
837 | } | |
838 | /* compute min output value */ | |
839 | pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base); | |
840 | if ((pts < ti1) && (pts > 0)) | |
841 | ti1 = pts; | |
842 | } | |
843 | if (ti1 < 0.01) | |
844 | ti1 = 0.01; | |
845 | ||
e3245b26 | 846 | bitrate = (double)(total_size * 8) / ti1 / 1000.0; |
6291d7e4 | 847 | |
e3245b26 | 848 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
6291d7e4 AK |
849 | "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s", |
850 | (double)total_size / 1024, ti1, bitrate); | |
851 | ||
e3245b26 AK |
852 | if (nb_frames_dup || nb_frames_drop) |
853 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d", | |
854 | nb_frames_dup, nb_frames_drop); | |
6291d7e4 | 855 | |
f5646a32 | 856 | av_log(NULL, AV_LOG_INFO, "%s \r", buf); |
6291d7e4 | 857 | |
e3245b26 | 858 | fflush(stderr); |
6291d7e4 | 859 | |
e3245b26 | 860 | if (is_last_report) { |
6291d7e4 | 861 | int64_t raw= audio_size + video_size + extra_size; |
e3245b26 AK |
862 | av_log(NULL, AV_LOG_INFO, "\n"); |
863 | av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n", | |
7636c8c6 AD |
864 | video_size / 1024.0, |
865 | audio_size / 1024.0, | |
866 | extra_size / 1024.0, | |
867 | 100.0 * (total_size - raw) / raw | |
6291d7e4 AK |
868 | ); |
869 | } | |
870 | } | |
871 | ||
ea9367e9 | 872 | static void flush_encoders(void) |
4a4ce2e7 AK |
873 | { |
874 | int i, ret; | |
875 | ||
ea9367e9 | 876 | for (i = 0; i < nb_output_streams; i++) { |
2e215267 | 877 | OutputStream *ost = output_streams[i]; |
6f1c66d5 | 878 | AVCodecContext *enc = ost->st->codec; |
2e215267 | 879 | AVFormatContext *os = output_files[ost->file_index]->ctx; |
ee458cb1 | 880 | int stop_encoding = 0; |
6f1c66d5 | 881 | |
b62b5cb6 | 882 | if (!ost->encoding_needed) |
6f1c66d5 AK |
883 | continue; |
884 | ||
7636c8c6 | 885 | if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1) |
6f1c66d5 | 886 | continue; |
36ef5369 | 887 | if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO) |
6f1c66d5 AK |
888 | continue; |
889 | ||
7636c8c6 | 890 | for (;;) { |
369cb092 AK |
891 | int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL; |
892 | const char *desc; | |
893 | int64_t *size; | |
6f1c66d5 AK |
894 | |
895 | switch (ost->st->codec->codec_type) { | |
896 | case AVMEDIA_TYPE_AUDIO: | |
369cb092 AK |
897 | encode = avcodec_encode_audio2; |
898 | desc = "Audio"; | |
899 | size = &audio_size; | |
6f1c66d5 AK |
900 | break; |
901 | case AVMEDIA_TYPE_VIDEO: | |
369cb092 AK |
902 | encode = avcodec_encode_video2; |
903 | desc = "Video"; | |
904 | size = &video_size; | |
905 | break; | |
906 | default: | |
907 | stop_encoding = 1; | |
908 | } | |
909 | ||
910 | if (encode) { | |
911 | AVPacket pkt; | |
912 | int got_packet; | |
913 | av_init_packet(&pkt); | |
914 | pkt.data = NULL; | |
915 | pkt.size = 0; | |
916 | ||
917 | ret = encode(enc, &pkt, NULL, &got_packet); | |
6f1c66d5 | 918 | if (ret < 0) { |
369cb092 | 919 | av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc); |
636ced8e | 920 | exit_program(1); |
6f1c66d5 | 921 | } |
369cb092 | 922 | *size += ret; |
6f1c66d5 AK |
923 | if (ost->logfile && enc->stats_out) { |
924 | fprintf(ost->logfile, "%s", enc->stats_out); | |
925 | } | |
8e37038a | 926 | if (!got_packet) { |
ee458cb1 JR |
927 | stop_encoding = 1; |
928 | break; | |
929 | } | |
8e37038a AK |
930 | if (pkt.pts != AV_NOPTS_VALUE) |
931 | pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base); | |
932 | if (pkt.dts != AV_NOPTS_VALUE) | |
933 | pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base); | |
3ba41640 JR |
934 | if (pkt.duration > 0) |
935 | pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base); | |
ee458cb1 | 936 | write_frame(os, &pkt, ost); |
4a4ce2e7 | 937 | } |
369cb092 | 938 | |
ee458cb1 | 939 | if (stop_encoding) |
6f1c66d5 | 940 | break; |
4a4ce2e7 AK |
941 | } |
942 | } | |
943 | } | |
944 | ||
7204ec1a AK |
945 | /* |
946 | * Check whether a packet from ist should be written into ost at this time | |
947 | */ | |
948 | static int check_output_constraints(InputStream *ist, OutputStream *ost) | |
949 | { | |
2e215267 AK |
950 | OutputFile *of = output_files[ost->file_index]; |
951 | int ist_index = input_files[ist->file_index]->ist_index + ist->st->index; | |
7204ec1a AK |
952 | |
953 | if (ost->source_index != ist_index) | |
954 | return 0; | |
955 | ||
56ee3f9d | 956 | if (of->start_time != AV_NOPTS_VALUE && ist->last_dts < of->start_time) |
7204ec1a AK |
957 | return 0; |
958 | ||
7204ec1a AK |
959 | return 1; |
960 | } | |
961 | ||
962 | static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt) | |
963 | { | |
2e215267 | 964 | OutputFile *of = output_files[ost->file_index]; |
488a0fa6 | 965 | InputFile *f = input_files [ist->file_index]; |
56ee3f9d AK |
966 | int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time; |
967 | int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base); | |
7204ec1a AK |
968 | AVPacket opkt; |
969 | ||
970 | av_init_packet(&opkt); | |
971 | ||
972 | if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) && | |
973 | !ost->copy_initial_nonkeyframes) | |
974 | return; | |
975 | ||
1270e12e | 976 | if (of->recording_time != INT64_MAX && |
56ee3f9d | 977 | ist->last_dts >= of->recording_time + start_time) { |
57d24225 | 978 | ost->finished = 1; |
1270e12e AK |
979 | return; |
980 | } | |
981 | ||
488a0fa6 AK |
982 | if (f->recording_time != INT64_MAX) { |
983 | start_time = f->ctx->start_time; | |
984 | if (f->start_time != AV_NOPTS_VALUE) | |
985 | start_time += f->start_time; | |
986 | if (ist->last_dts >= f->recording_time + start_time) { | |
987 | ost->finished = 1; | |
988 | return; | |
989 | } | |
990 | } | |
991 | ||
7204ec1a AK |
992 | /* force the input stream PTS */ |
993 | if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO) | |
994 | audio_size += pkt->size; | |
995 | else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { | |
996 | video_size += pkt->size; | |
997 | ost->sync_opts++; | |
998 | } | |
999 | ||
7204ec1a AK |
1000 | if (pkt->pts != AV_NOPTS_VALUE) |
1001 | opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time; | |
1002 | else | |
1003 | opkt.pts = AV_NOPTS_VALUE; | |
1004 | ||
1005 | if (pkt->dts == AV_NOPTS_VALUE) | |
23576b3f | 1006 | opkt.dts = av_rescale_q(ist->last_dts, AV_TIME_BASE_Q, ost->st->time_base); |
7204ec1a AK |
1007 | else |
1008 | opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base); | |
1009 | opkt.dts -= ost_tb_start_time; | |
1010 | ||
1011 | opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base); | |
1012 | opkt.flags = pkt->flags; | |
1013 | ||
7636c8c6 | 1014 | // FIXME remove the following 2 lines they shall be replaced by the bitstream filters |
36ef5369 AK |
1015 | if ( ost->st->codec->codec_id != AV_CODEC_ID_H264 |
1016 | && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO | |
1017 | && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO | |
1018 | && ost->st->codec->codec_id != AV_CODEC_ID_VC1 | |
7204ec1a | 1019 | ) { |
c872d310 AK |
1020 | if (av_parser_change(ost->parser, ost->st->codec, |
1021 | &opkt.data, &opkt.size, | |
1022 | pkt->data, pkt->size, | |
1023 | pkt->flags & AV_PKT_FLAG_KEY)) { | |
9b2dc295 AK |
1024 | opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0); |
1025 | if (!opkt.buf) | |
636ced8e | 1026 | exit_program(1); |
9b2dc295 | 1027 | } |
7204ec1a AK |
1028 | } else { |
1029 | opkt.data = pkt->data; | |
1030 | opkt.size = pkt->size; | |
1031 | } | |
1032 | ||
f15f02c2 | 1033 | write_frame(of->ctx, &opkt, ost); |
7204ec1a | 1034 | ost->st->codec->frame_number++; |
7204ec1a AK |
1035 | } |
1036 | ||
f5e66827 | 1037 | int guess_input_channel_layout(InputStream *ist) |
369cb092 AK |
1038 | { |
1039 | AVCodecContext *dec = ist->st->codec; | |
1040 | ||
1041 | if (!dec->channel_layout) { | |
1042 | char layout_name[256]; | |
1043 | ||
1044 | dec->channel_layout = av_get_default_channel_layout(dec->channels); | |
1045 | if (!dec->channel_layout) | |
1046 | return 0; | |
1047 | av_get_channel_layout_string(layout_name, sizeof(layout_name), | |
1048 | dec->channels, dec->channel_layout); | |
1049 | av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream " | |
1050 | "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name); | |
1051 | } | |
1052 | return 1; | |
1053 | } | |
1054 | ||
0629f612 | 1055 | static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output) |
ded28ba3 | 1056 | { |
9b2dc295 | 1057 | AVFrame *decoded_frame, *f; |
d1241ff3 | 1058 | AVCodecContext *avctx = ist->st->codec; |
9b2dc295 | 1059 | int i, ret, err = 0, resample_changed; |
ded28ba3 | 1060 | |
5b9c3b45 | 1061 | if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc())) |
d1241ff3 | 1062 | return AVERROR(ENOMEM); |
9b2dc295 AK |
1063 | if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc())) |
1064 | return AVERROR(ENOMEM); | |
9179f27c | 1065 | decoded_frame = ist->decoded_frame; |
ded28ba3 | 1066 | |
d1241ff3 | 1067 | ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt); |
f154ef1a AK |
1068 | if (!*got_output || ret < 0) { |
1069 | if (!pkt->size) { | |
369cb092 | 1070 | for (i = 0; i < ist->nb_filters; i++) |
9b2dc295 | 1071 | av_buffersrc_add_frame(ist->filters[i]->filter, NULL); |
f154ef1a | 1072 | } |
af8ad892 | 1073 | return ret; |
ded28ba3 AK |
1074 | } |
1075 | ||
d1241ff3 JR |
1076 | /* if the decoder provides a pts, use it instead of the last packet pts. |
1077 | the decoder could be delaying output by a packet or more. */ | |
1078 | if (decoded_frame->pts != AV_NOPTS_VALUE) | |
3101bb66 | 1079 | ist->next_dts = decoded_frame->pts; |
369cb092 AK |
1080 | else if (pkt->pts != AV_NOPTS_VALUE) { |
1081 | decoded_frame->pts = pkt->pts; | |
1082 | pkt->pts = AV_NOPTS_VALUE; | |
1083 | } | |
ded28ba3 | 1084 | |
369cb092 AK |
1085 | resample_changed = ist->resample_sample_fmt != decoded_frame->format || |
1086 | ist->resample_channels != avctx->channels || | |
1087 | ist->resample_channel_layout != decoded_frame->channel_layout || | |
1088 | ist->resample_sample_rate != decoded_frame->sample_rate; | |
1089 | if (resample_changed) { | |
1090 | char layout1[64], layout2[64]; | |
ded28ba3 | 1091 | |
369cb092 AK |
1092 | if (!guess_input_channel_layout(ist)) { |
1093 | av_log(NULL, AV_LOG_FATAL, "Unable to find default channel " | |
1094 | "layout for Input Stream #%d.%d\n", ist->file_index, | |
1095 | ist->st->index); | |
636ced8e | 1096 | exit_program(1); |
369cb092 AK |
1097 | } |
1098 | decoded_frame->channel_layout = avctx->channel_layout; | |
1099 | ||
1100 | av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels, | |
1101 | ist->resample_channel_layout); | |
1102 | av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels, | |
1103 | decoded_frame->channel_layout); | |
1104 | ||
1105 | av_log(NULL, AV_LOG_INFO, | |
1106 | "Input stream #%d:%d frame changed from rate:%d fmt:%s ch:%d chl:%s to rate:%d fmt:%s ch:%d chl:%s\n", | |
1107 | ist->file_index, ist->st->index, | |
1108 | ist->resample_sample_rate, av_get_sample_fmt_name(ist->resample_sample_fmt), | |
1109 | ist->resample_channels, layout1, | |
1110 | decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format), | |
1111 | avctx->channels, layout2); | |
1112 | ||
1113 | ist->resample_sample_fmt = decoded_frame->format; | |
1114 | ist->resample_sample_rate = decoded_frame->sample_rate; | |
1115 | ist->resample_channel_layout = decoded_frame->channel_layout; | |
1116 | ist->resample_channels = avctx->channels; | |
1117 | ||
1118 | for (i = 0; i < nb_filtergraphs; i++) | |
1119 | if (ist_in_filtergraph(filtergraphs[i], ist) && | |
1120 | configure_filtergraph(filtergraphs[i]) < 0) { | |
1121 | av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n"); | |
636ced8e | 1122 | exit_program(1); |
369cb092 | 1123 | } |
ded28ba3 | 1124 | } |
110d2af2 | 1125 | |
715129cd MS |
1126 | if (decoded_frame->pts != AV_NOPTS_VALUE) |
1127 | decoded_frame->pts = av_rescale_q(decoded_frame->pts, | |
1128 | ist->st->time_base, | |
1129 | (AVRational){1, ist->st->codec->sample_rate}); | |
9b2dc295 AK |
1130 | for (i = 0; i < ist->nb_filters; i++) { |
1131 | if (i < ist->nb_filters - 1) { | |
1132 | f = ist->filter_frame; | |
1133 | err = av_frame_ref(f, decoded_frame); | |
1134 | if (err < 0) | |
1135 | break; | |
1136 | } else | |
1137 | f = decoded_frame; | |
369cb092 | 1138 | |
9b2dc295 AK |
1139 | err = av_buffersrc_add_frame(ist->filters[i]->filter, f); |
1140 | if (err < 0) | |
1141 | break; | |
1142 | } | |
1143 | ||
1144 | av_frame_unref(ist->filter_frame); | |
1145 | av_frame_unref(decoded_frame); | |
1146 | return err < 0 ? err : ret; | |
ded28ba3 AK |
1147 | } |
1148 | ||
0629f612 | 1149 | static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output) |
45d4b66f | 1150 | { |
9b2dc295 | 1151 | AVFrame *decoded_frame, *f; |
9b2dc295 | 1152 | int i, ret = 0, err = 0, resample_changed; |
45d4b66f | 1153 | |
9b2dc295 AK |
1154 | if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc())) |
1155 | return AVERROR(ENOMEM); | |
1156 | if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc())) | |
45d4b66f | 1157 | return AVERROR(ENOMEM); |
9179f27c | 1158 | decoded_frame = ist->decoded_frame; |
45d4b66f AK |
1159 | |
1160 | ret = avcodec_decode_video2(ist->st->codec, | |
1161 | decoded_frame, got_output, pkt); | |
f154ef1a AK |
1162 | if (!*got_output || ret < 0) { |
1163 | if (!pkt->size) { | |
89605e4a | 1164 | for (i = 0; i < ist->nb_filters; i++) |
9b2dc295 | 1165 | av_buffersrc_add_frame(ist->filters[i]->filter, NULL); |
f154ef1a | 1166 | } |
af8ad892 | 1167 | return ret; |
45d4b66f | 1168 | } |
f154ef1a | 1169 | |
07fd0a22 AK |
1170 | if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) { |
1171 | err = ist->hwaccel_retrieve_data(ist->st->codec, decoded_frame); | |
1172 | if (err < 0) | |
1173 | goto fail; | |
1174 | } | |
1175 | ist->hwaccel_retrieved_pix_fmt = decoded_frame->format; | |
1176 | ||
b34856a1 AK |
1177 | decoded_frame->pts = guess_correct_pts(&ist->pts_ctx, decoded_frame->pkt_pts, |
1178 | decoded_frame->pkt_dts); | |
45d4b66f | 1179 | pkt->size = 0; |
45d4b66f | 1180 | |
695ec04e AK |
1181 | if (ist->st->sample_aspect_ratio.num) |
1182 | decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio; | |
1183 | ||
e77c8662 AK |
1184 | resample_changed = ist->resample_width != decoded_frame->width || |
1185 | ist->resample_height != decoded_frame->height || | |
1186 | ist->resample_pix_fmt != decoded_frame->format; | |
1187 | if (resample_changed) { | |
1188 | av_log(NULL, AV_LOG_INFO, | |
1189 | "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n", | |
1190 | ist->file_index, ist->st->index, | |
1191 | ist->resample_width, ist->resample_height, av_get_pix_fmt_name(ist->resample_pix_fmt), | |
1192 | decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format)); | |
1193 | ||
2f34021d JG |
1194 | ret = poll_filters(); |
1195 | if (ret < 0 && (ret != AVERROR_EOF && ret != AVERROR(EAGAIN))) | |
1196 | av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n"); | |
1197 | ||
e77c8662 AK |
1198 | ist->resample_width = decoded_frame->width; |
1199 | ist->resample_height = decoded_frame->height; | |
1200 | ist->resample_pix_fmt = decoded_frame->format; | |
e77c8662 | 1201 | |
3b266da3 AK |
1202 | for (i = 0; i < nb_filtergraphs; i++) |
1203 | if (ist_in_filtergraph(filtergraphs[i], ist) && | |
1204 | configure_filtergraph(filtergraphs[i]) < 0) { | |
ac646076 | 1205 | av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n"); |
636ced8e | 1206 | exit_program(1); |
3b266da3 AK |
1207 | } |
1208 | } | |
ac646076 | 1209 | |
3b266da3 | 1210 | for (i = 0; i < ist->nb_filters; i++) { |
9b2dc295 AK |
1211 | if (i < ist->nb_filters - 1) { |
1212 | f = ist->filter_frame; | |
1213 | err = av_frame_ref(f, decoded_frame); | |
1214 | if (err < 0) | |
1215 | break; | |
04a14d4d | 1216 | } else |
9b2dc295 AK |
1217 | f = decoded_frame; |
1218 | ||
1219 | err = av_buffersrc_add_frame(ist->filters[i]->filter, f); | |
1220 | if (err < 0) | |
1221 | break; | |
45d4b66f AK |
1222 | } |
1223 | ||
07fd0a22 | 1224 | fail: |
9b2dc295 AK |
1225 | av_frame_unref(ist->filter_frame); |
1226 | av_frame_unref(decoded_frame); | |
9b2dc295 | 1227 | return err < 0 ? err : ret; |
45d4b66f AK |
1228 | } |
1229 | ||
9595234c AK |
1230 | static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output) |
1231 | { | |
1232 | AVSubtitle subtitle; | |
1233 | int i, ret = avcodec_decode_subtitle2(ist->st->codec, | |
1234 | &subtitle, got_output, pkt); | |
1235 | if (ret < 0) | |
1236 | return ret; | |
1237 | if (!*got_output) | |
af8ad892 | 1238 | return ret; |
9595234c | 1239 | |
9595234c | 1240 | for (i = 0; i < nb_output_streams; i++) { |
2e215267 | 1241 | OutputStream *ost = output_streams[i]; |
9595234c AK |
1242 | |
1243 | if (!check_output_constraints(ist, ost) || !ost->encoding_needed) | |
1244 | continue; | |
1245 | ||
2e215267 | 1246 | do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle, pkt->pts); |
9595234c AK |
1247 | } |
1248 | ||
1249 | avsubtitle_free(&subtitle); | |
af8ad892 | 1250 | return ret; |
9595234c AK |
1251 | } |
1252 | ||
6291d7e4 | 1253 | /* pkt = NULL means EOF (needed to flush decoder buffers) */ |
ea9367e9 | 1254 | static int output_packet(InputStream *ist, const AVPacket *pkt) |
6291d7e4 | 1255 | { |
ffa0674e | 1256 | int i; |
6291d7e4 | 1257 | int got_output; |
6291d7e4 | 1258 | AVPacket avpkt; |
6291d7e4 | 1259 | |
3101bb66 | 1260 | if (ist->next_dts == AV_NOPTS_VALUE) |
23576b3f | 1261 | ist->next_dts = ist->last_dts; |
6291d7e4 AK |
1262 | |
1263 | if (pkt == NULL) { | |
1264 | /* EOF handling */ | |
1265 | av_init_packet(&avpkt); | |
1266 | avpkt.data = NULL; | |
1267 | avpkt.size = 0; | |
1268 | goto handle_eof; | |
1269 | } else { | |
1270 | avpkt = *pkt; | |
1271 | } | |
1272 | ||
7636c8c6 | 1273 | if (pkt->dts != AV_NOPTS_VALUE) |
23576b3f | 1274 | ist->next_dts = ist->last_dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q); |
6291d7e4 | 1275 | |
7636c8c6 | 1276 | // while we have more to decode or while the decoder did output something on EOF |
2a651b71 | 1277 | while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) { |
ffa0674e | 1278 | int ret = 0; |
6291d7e4 | 1279 | handle_eof: |
6291d7e4 | 1280 | |
23576b3f | 1281 | ist->last_dts = ist->next_dts; |
8b0268a8 AK |
1282 | |
1283 | if (avpkt.size && avpkt.size != pkt->size) { | |
e3245b26 AK |
1284 | av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING, |
1285 | "Multiple frames in a packet from stream %d\n", pkt->stream_index); | |
8b0268a8 AK |
1286 | ist->showed_multi_packet_warning = 1; |
1287 | } | |
6291d7e4 | 1288 | |
7636c8c6 | 1289 | switch (ist->st->codec->codec_type) { |
82963f8f | 1290 | case AVMEDIA_TYPE_AUDIO: |
0629f612 | 1291 | ret = decode_audio (ist, &avpkt, &got_output); |
82963f8f AK |
1292 | break; |
1293 | case AVMEDIA_TYPE_VIDEO: | |
0629f612 | 1294 | ret = decode_video (ist, &avpkt, &got_output); |
b34856a1 AK |
1295 | if (avpkt.duration) |
1296 | ist->next_dts += av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q); | |
aba232cf | 1297 | else if (ist->st->avg_frame_rate.num) |
82494835 | 1298 | ist->next_dts += av_rescale_q(1, av_inv_q(ist->st->avg_frame_rate), |
722410ad | 1299 | AV_TIME_BASE_Q); |
b34856a1 AK |
1300 | else if (ist->st->codec->time_base.num != 0) { |
1301 | int ticks = ist->st->parser ? ist->st->parser->repeat_pict + 1 : | |
1302 | ist->st->codec->ticks_per_frame; | |
1303 | ist->next_dts += av_rescale_q(ticks, ist->st->codec->time_base, AV_TIME_BASE_Q); | |
1304 | } | |
82963f8f AK |
1305 | break; |
1306 | case AVMEDIA_TYPE_SUBTITLE: | |
1307 | ret = transcode_subtitles(ist, &avpkt, &got_output); | |
1308 | break; | |
78162b4e AK |
1309 | default: |
1310 | return -1; | |
1311 | } | |
6291d7e4 | 1312 | |
d3c1d37a AK |
1313 | if (ret < 0) |
1314 | return ret; | |
aa38cff2 JG |
1315 | // touch data and size only if not EOF |
1316 | if (pkt) { | |
1317 | avpkt.data += ret; | |
1318 | avpkt.size -= ret; | |
1319 | } | |
82963f8f | 1320 | if (!got_output) { |
af8ad892 | 1321 | continue; |
82963f8f | 1322 | } |
6291d7e4 | 1323 | } |
6291d7e4 | 1324 | |
7204ec1a | 1325 | /* handle stream copy */ |
2a651b71 | 1326 | if (!ist->decoding_needed) { |
23576b3f | 1327 | ist->last_dts = ist->next_dts; |
2a651b71 AK |
1328 | switch (ist->st->codec->codec_type) { |
1329 | case AVMEDIA_TYPE_AUDIO: | |
3101bb66 | 1330 | ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) / |
2a651b71 AK |
1331 | ist->st->codec->sample_rate; |
1332 | break; | |
1333 | case AVMEDIA_TYPE_VIDEO: | |
1334 | if (ist->st->codec->time_base.num != 0) { | |
7636c8c6 | 1335 | int ticks = ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame; |
3101bb66 | 1336 | ist->next_dts += ((int64_t)AV_TIME_BASE * |
2a651b71 AK |
1337 | ist->st->codec->time_base.num * ticks) / |
1338 | ist->st->codec->time_base.den; | |
1339 | } | |
1340 | break; | |
1341 | } | |
1342 | } | |
ea9367e9 | 1343 | for (i = 0; pkt && i < nb_output_streams; i++) { |
2e215267 | 1344 | OutputStream *ost = output_streams[i]; |
7204ec1a AK |
1345 | |
1346 | if (!check_output_constraints(ist, ost) || ost->encoding_needed) | |
1347 | continue; | |
1348 | ||
1349 | do_streamcopy(ist, ost, pkt); | |
1350 | } | |
1351 | ||
6291d7e4 AK |
1352 | return 0; |
1353 | } | |
1354 | ||
ea9367e9 | 1355 | static void print_sdp(void) |
6291d7e4 | 1356 | { |
a23abaf3 | 1357 | char sdp[16384]; |
af70aa45 | 1358 | int i; |
ea9367e9 | 1359 | AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files); |
af70aa45 AK |
1360 | |
1361 | if (!avc) | |
636ced8e | 1362 | exit_program(1); |
ea9367e9 | 1363 | for (i = 0; i < nb_output_files; i++) |
2e215267 | 1364 | avc[i] = output_files[i]->ctx; |
6291d7e4 | 1365 | |
ea9367e9 | 1366 | av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp)); |
6291d7e4 AK |
1367 | printf("SDP:\n%s\n", sdp); |
1368 | fflush(stdout); | |
af70aa45 | 1369 | av_freep(&avc); |
6291d7e4 AK |
1370 | } |
1371 | ||
07fd0a22 AK |
1372 | static const HWAccel *get_hwaccel(enum AVPixelFormat pix_fmt) |
1373 | { | |
1374 | int i; | |
1375 | for (i = 0; hwaccels[i].name; i++) | |
1376 | if (hwaccels[i].pix_fmt == pix_fmt) | |
1377 | return &hwaccels[i]; | |
1378 | return NULL; | |
1379 | } | |
1380 | ||
1381 | static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts) | |
1382 | { | |
1383 | InputStream *ist = s->opaque; | |
1384 | const enum AVPixelFormat *p; | |
1385 | int ret; | |
1386 | ||
1387 | for (p = pix_fmts; *p != -1; p++) { | |
1388 | const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p); | |
1389 | const HWAccel *hwaccel; | |
1390 | ||
1391 | if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL)) | |
1392 | break; | |
1393 | ||
1394 | hwaccel = get_hwaccel(*p); | |
1395 | if (!hwaccel || | |
1396 | (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) || | |
1397 | (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id)) | |
1398 | continue; | |
1399 | ||
1400 | ret = hwaccel->init(s); | |
1401 | if (ret < 0) { | |
1402 | if (ist->hwaccel_id == hwaccel->id) { | |
1403 | av_log(NULL, AV_LOG_FATAL, | |
1404 | "%s hwaccel requested for input stream #%d:%d, " | |
1405 | "but cannot be initialized.\n", hwaccel->name, | |
1406 | ist->file_index, ist->st->index); | |
1407 | exit_program(1); | |
1408 | } | |
1409 | continue; | |
1410 | } | |
1411 | ist->active_hwaccel_id = hwaccel->id; | |
1412 | ist->hwaccel_pix_fmt = *p; | |
1413 | break; | |
1414 | } | |
1415 | ||
1416 | return *p; | |
1417 | } | |
1418 | ||
1419 | static int get_buffer(AVCodecContext *s, AVFrame *frame, int flags) | |
1420 | { | |
1421 | InputStream *ist = s->opaque; | |
1422 | ||
1423 | if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt) | |
1424 | return ist->hwaccel_get_buffer(s, frame, flags); | |
1425 | ||
1426 | return avcodec_default_get_buffer2(s, frame, flags); | |
1427 | } | |
1428 | ||
ea9367e9 | 1429 | static int init_input_stream(int ist_index, char *error, int error_len) |
630902a1 | 1430 | { |
c854102d | 1431 | int i, ret; |
2e215267 | 1432 | InputStream *ist = input_streams[ist_index]; |
630902a1 AK |
1433 | if (ist->decoding_needed) { |
1434 | AVCodec *codec = ist->dec; | |
630902a1 | 1435 | if (!codec) { |
9a414d89 | 1436 | snprintf(error, error_len, "Decoder (codec id %d) not found for input stream #%d:%d", |
630902a1 AK |
1437 | ist->st->codec->codec_id, ist->file_index, ist->st->index); |
1438 | return AVERROR(EINVAL); | |
1439 | } | |
1440 | ||
1441 | /* update requested sample format for the decoder based on the | |
1442 | corresponding encoder sample format */ | |
1443 | for (i = 0; i < nb_output_streams; i++) { | |
2e215267 | 1444 | OutputStream *ost = output_streams[i]; |
630902a1 AK |
1445 | if (ost->source_index == ist_index) { |
1446 | update_sample_fmt(ist->st->codec, codec, ost->st->codec); | |
1447 | break; | |
1448 | } | |
1449 | } | |
1450 | ||
07fd0a22 AK |
1451 | ist->st->codec->opaque = ist; |
1452 | ist->st->codec->get_format = get_format; | |
1453 | ist->st->codec->get_buffer2 = get_buffer; | |
1454 | ist->st->codec->thread_safe_callbacks = 1; | |
1455 | ||
9b2dc295 | 1456 | av_opt_set_int(ist->st->codec, "refcounted_frames", 1, 0); |
64dca32c | 1457 | |
2473a45c JG |
1458 | if (!av_dict_get(ist->opts, "threads", NULL, 0)) |
1459 | av_dict_set(&ist->opts, "threads", "auto", 0); | |
c854102d | 1460 | if ((ret = avcodec_open2(ist->st->codec, codec, &ist->opts)) < 0) { |
42cc6cef | 1461 | char errbuf[128]; |
c854102d NC |
1462 | if (ret == AVERROR_EXPERIMENTAL) |
1463 | abort_codec_experimental(codec, 0); | |
42cc6cef LB |
1464 | |
1465 | av_strerror(ret, errbuf, sizeof(errbuf)); | |
1466 | ||
1467 | snprintf(error, error_len, | |
1468 | "Error while opening decoder for input stream " | |
1469 | "#%d:%d : %s", | |
1470 | ist->file_index, ist->st->index, errbuf); | |
c854102d | 1471 | return ret; |
630902a1 | 1472 | } |
630902a1 AK |
1473 | assert_avoptions(ist->opts); |
1474 | } | |
1475 | ||
23576b3f | 1476 | ist->last_dts = ist->st->avg_frame_rate.num ? - ist->st->codec->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0; |
3101bb66 | 1477 | ist->next_dts = AV_NOPTS_VALUE; |
630902a1 AK |
1478 | init_pts_correction(&ist->pts_ctx); |
1479 | ist->is_start = 1; | |
1480 | ||
1481 | return 0; | |
1482 | } | |
1483 | ||
3b266da3 AK |
1484 | static InputStream *get_input_stream(OutputStream *ost) |
1485 | { | |
1486 | if (ost->source_index >= 0) | |
1487 | return input_streams[ost->source_index]; | |
1488 | ||
1489 | if (ost->filter) { | |
1490 | FilterGraph *fg = ost->filter->graph; | |
1491 | int i; | |
1492 | ||
1493 | for (i = 0; i < fg->nb_inputs; i++) | |
1494 | if (fg->inputs[i]->ist->st->codec->codec_type == ost->st->codec->codec_type) | |
1495 | return fg->inputs[i]->ist; | |
1496 | } | |
1497 | ||
1498 | return NULL; | |
1499 | } | |
1500 | ||
19ad5673 AK |
1501 | static void parse_forced_key_frames(char *kf, OutputStream *ost, |
1502 | AVCodecContext *avctx) | |
1503 | { | |
1504 | char *p; | |
1505 | int n = 1, i; | |
1506 | int64_t t; | |
1507 | ||
1508 | for (p = kf; *p; p++) | |
1509 | if (*p == ',') | |
1510 | n++; | |
1511 | ost->forced_kf_count = n; | |
1512 | ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n); | |
1513 | if (!ost->forced_kf_pts) { | |
1514 | av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n"); | |
636ced8e | 1515 | exit_program(1); |
19ad5673 | 1516 | } |
4c679750 RD |
1517 | |
1518 | p = kf; | |
19ad5673 | 1519 | for (i = 0; i < n; i++) { |
4c679750 RD |
1520 | char *next = strchr(p, ','); |
1521 | ||
1522 | if (next) | |
1523 | *next++ = 0; | |
1524 | ||
19ad5673 AK |
1525 | t = parse_time_or_die("force_key_frames", p, 1); |
1526 | ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base); | |
4c679750 RD |
1527 | |
1528 | p = next; | |
19ad5673 AK |
1529 | } |
1530 | } | |
1531 | ||
ea9367e9 | 1532 | static int transcode_init(void) |
6291d7e4 | 1533 | { |
2c474ddb | 1534 | int ret = 0, i, j, k; |
1bb77e51 | 1535 | AVFormatContext *oc; |
a5fd7c60 | 1536 | AVCodecContext *codec; |
4288e031 | 1537 | OutputStream *ost; |
6291d7e4 AK |
1538 | InputStream *ist; |
1539 | char error[1024]; | |
1540 | int want_sdp = 1; | |
b0c9e8e0 | 1541 | |
f4805328 AK |
1542 | /* init framerate emulation */ |
1543 | for (i = 0; i < nb_input_files; i++) { | |
2e215267 | 1544 | InputFile *ifile = input_files[i]; |
f4805328 AK |
1545 | if (ifile->rate_emu) |
1546 | for (j = 0; j < ifile->nb_streams; j++) | |
2e215267 | 1547 | input_streams[j + ifile->ist_index]->start = av_gettime(); |
f4805328 | 1548 | } |
6291d7e4 AK |
1549 | |
1550 | /* output stream init */ | |
03f30c83 | 1551 | for (i = 0; i < nb_output_files; i++) { |
2e215267 | 1552 | oc = output_files[i]->ctx; |
1bb77e51 AK |
1553 | if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) { |
1554 | av_dump_format(oc, i, oc->filename, 1); | |
e3245b26 | 1555 | av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i); |
eaf2d37a | 1556 | return AVERROR(EINVAL); |
6291d7e4 | 1557 | } |
6291d7e4 AK |
1558 | } |
1559 | ||
3b266da3 AK |
1560 | /* init complex filtergraphs */ |
1561 | for (i = 0; i < nb_filtergraphs; i++) | |
1562 | if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0) | |
1563 | return ret; | |
1564 | ||
6291d7e4 | 1565 | /* for each output stream, we compute the right encoding parameters */ |
4288e031 | 1566 | for (i = 0; i < nb_output_streams; i++) { |
a5fd7c60 | 1567 | AVCodecContext *icodec = NULL; |
2e215267 AK |
1568 | ost = output_streams[i]; |
1569 | oc = output_files[ost->file_index]->ctx; | |
3b266da3 | 1570 | ist = get_input_stream(ost); |
6291d7e4 | 1571 | |
4dbc6cee AK |
1572 | if (ost->attachment_filename) |
1573 | continue; | |
1574 | ||
03f30c83 | 1575 | codec = ost->st->codec; |
6291d7e4 | 1576 | |
3b266da3 AK |
1577 | if (ist) { |
1578 | icodec = ist->st->codec; | |
1579 | ||
1580 | ost->st->disposition = ist->st->disposition; | |
1581 | codec->bits_per_raw_sample = icodec->bits_per_raw_sample; | |
1582 | codec->chroma_sample_location = icodec->chroma_sample_location; | |
1583 | } | |
6291d7e4 | 1584 | |
3d813e4c | 1585 | if (ost->stream_copy) { |
538bf767 | 1586 | AVRational sar; |
8c4022ac AK |
1587 | uint64_t extra_size; |
1588 | ||
1589 | av_assert0(ist && !ost->filter); | |
1590 | ||
1591 | extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE; | |
6291d7e4 | 1592 | |
e6d2b737 | 1593 | if (extra_size > INT_MAX) { |
eaf2d37a | 1594 | return AVERROR(EINVAL); |
e6d2b737 | 1595 | } |
6291d7e4 AK |
1596 | |
1597 | /* if stream_copy is selected, no need to decode or encode */ | |
03f30c83 | 1598 | codec->codec_id = icodec->codec_id; |
6291d7e4 AK |
1599 | codec->codec_type = icodec->codec_type; |
1600 | ||
03f30c83 AK |
1601 | if (!codec->codec_tag) { |
1602 | if (!oc->oformat->codec_tag || | |
1603 | av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == codec->codec_id || | |
1604 | av_codec_get_tag(oc->oformat->codec_tag, icodec->codec_id) <= 0) | |
6291d7e4 AK |
1605 | codec->codec_tag = icodec->codec_tag; |
1606 | } | |
1607 | ||
03f30c83 | 1608 | codec->bit_rate = icodec->bit_rate; |
6291d7e4 AK |
1609 | codec->rc_max_rate = icodec->rc_max_rate; |
1610 | codec->rc_buffer_size = icodec->rc_buffer_size; | |
4bf3c8f2 | 1611 | codec->field_order = icodec->field_order; |
03f30c83 | 1612 | codec->extradata = av_mallocz(extra_size); |
e6d2b737 | 1613 | if (!codec->extradata) { |
eaf2d37a | 1614 | return AVERROR(ENOMEM); |
e6d2b737 | 1615 | } |
6291d7e4 | 1616 | memcpy(codec->extradata, icodec->extradata, icodec->extradata_size); |
03f30c83 | 1617 | codec->extradata_size = icodec->extradata_size; |
7bb3e625 | 1618 | if (!copy_tb) { |
03f30c83 | 1619 | codec->time_base = icodec->time_base; |
6291d7e4 AK |
1620 | codec->time_base.num *= icodec->ticks_per_frame; |
1621 | av_reduce(&codec->time_base.num, &codec->time_base.den, | |
1622 | codec->time_base.num, codec->time_base.den, INT_MAX); | |
03f30c83 | 1623 | } else |
6291d7e4 | 1624 | codec->time_base = ist->st->time_base; |
03f30c83 | 1625 | |
c872d310 AK |
1626 | ost->parser = av_parser_init(codec->codec_id); |
1627 | ||
7636c8c6 | 1628 | switch (codec->codec_type) { |
6291d7e4 | 1629 | case AVMEDIA_TYPE_AUDIO: |
7636c8c6 | 1630 | if (audio_volume != 256) { |
e3245b26 | 1631 | av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n"); |
636ced8e | 1632 | exit_program(1); |
6291d7e4 | 1633 | } |
03f30c83 AK |
1634 | codec->channel_layout = icodec->channel_layout; |
1635 | codec->sample_rate = icodec->sample_rate; | |
1636 | codec->channels = icodec->channels; | |
1637 | codec->frame_size = icodec->frame_size; | |
6291d7e4 | 1638 | codec->audio_service_type = icodec->audio_service_type; |
03f30c83 | 1639 | codec->block_align = icodec->block_align; |
6291d7e4 AK |
1640 | break; |
1641 | case AVMEDIA_TYPE_VIDEO: | |
03f30c83 AK |
1642 | codec->pix_fmt = icodec->pix_fmt; |
1643 | codec->width = icodec->width; | |
1644 | codec->height = icodec->height; | |
1645 | codec->has_b_frames = icodec->has_b_frames; | |
538bf767 AK |
1646 | if (ost->frame_aspect_ratio) |
1647 | sar = av_d2q(ost->frame_aspect_ratio * codec->height / codec->width, 255); | |
1648 | else if (ist->st->sample_aspect_ratio.num) | |
1649 | sar = ist->st->sample_aspect_ratio; | |
1650 | else | |
1651 | sar = icodec->sample_aspect_ratio; | |
1652 | ost->st->sample_aspect_ratio = codec->sample_aspect_ratio = sar; | |
6291d7e4 AK |
1653 | break; |
1654 | case AVMEDIA_TYPE_SUBTITLE: | |
03f30c83 | 1655 | codec->width = icodec->width; |
6291d7e4 AK |
1656 | codec->height = icodec->height; |
1657 | break; | |
1658 | case AVMEDIA_TYPE_DATA: | |
3ccd1580 | 1659 | case AVMEDIA_TYPE_ATTACHMENT: |
6291d7e4 AK |
1660 | break; |
1661 | default: | |
1662 | abort(); | |
1663 | } | |
1664 | } else { | |
2994913d AK |
1665 | if (!ost->enc) { |
1666 | /* should only happen when a default codec is not present. */ | |
1667 | snprintf(error, sizeof(error), "Automatic encoder selection " | |
1668 | "failed for output stream #%d:%d. Default encoder for " | |
1669 | "format %s is probably disabled. Please choose an " | |
1670 | "encoder manually.\n", ost->file_index, ost->index, | |
1671 | oc->oformat->name); | |
1672 | ret = AVERROR(EINVAL); | |
1673 | goto dump_format; | |
1674 | } | |
03f30c83 | 1675 | |
3b266da3 AK |
1676 | if (ist) |
1677 | ist->decoding_needed = 1; | |
11fdb7e1 | 1678 | ost->encoding_needed = 1; |
03f30c83 | 1679 | |
74b961db AK |
1680 | /* |
1681 | * We want CFR output if and only if one of those is true: | |
1682 | * 1) user specified output framerate with -r | |
1683 | * 2) user specified -vsync cfr | |
1684 | * 3) output format is CFR and the user didn't force vsync to | |
1685 | * something else than CFR | |
1686 | * | |
1687 | * in such a case, set ost->frame_rate | |
1688 | */ | |
1689 | if (codec->codec_type == AVMEDIA_TYPE_VIDEO && | |
1690 | !ost->frame_rate.num && ist && | |
1691 | (video_sync_method == VSYNC_CFR || | |
1692 | (video_sync_method == VSYNC_AUTO && | |
1693 | !(oc->oformat->flags & (AVFMT_NOTIMESTAMPS | AVFMT_VARIABLE_FPS))))) { | |
2ce8bca5 AK |
1694 | if (ist->framerate.num) |
1695 | ost->frame_rate = ist->framerate; | |
1696 | else if (ist->st->avg_frame_rate.num) | |
1697 | ost->frame_rate = ist->st->avg_frame_rate; | |
1698 | else { | |
1699 | av_log(NULL, AV_LOG_WARNING, "Constant framerate requested " | |
1700 | "for the output stream #%d:%d, but no information " | |
1701 | "about the input framerate is available. Falling " | |
1702 | "back to a default value of 25fps. Use the -r option " | |
1703 | "if you want a different framerate.\n", | |
1704 | ost->file_index, ost->index); | |
1705 | ost->frame_rate = (AVRational){ 25, 1 }; | |
1706 | } | |
44b0b85f | 1707 | |
74b961db AK |
1708 | if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) { |
1709 | int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates); | |
1710 | ost->frame_rate = ost->enc->supported_framerates[idx]; | |
1711 | } | |
1712 | } | |
1713 | ||
369cb092 AK |
1714 | if (!ost->filter && |
1715 | (codec->codec_type == AVMEDIA_TYPE_VIDEO || | |
1716 | codec->codec_type == AVMEDIA_TYPE_AUDIO)) { | |
3b266da3 AK |
1717 | FilterGraph *fg; |
1718 | fg = init_simple_filtergraph(ist, ost); | |
8daf21d5 | 1719 | if (configure_filtergraph(fg)) { |
3b266da3 | 1720 | av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n"); |
636ced8e | 1721 | exit_program(1); |
3b266da3 | 1722 | } |
369cb092 | 1723 | } |
3b266da3 | 1724 | |
369cb092 AK |
1725 | switch (codec->codec_type) { |
1726 | case AVMEDIA_TYPE_AUDIO: | |
1727 | codec->sample_fmt = ost->filter->filter->inputs[0]->format; | |
1728 | codec->sample_rate = ost->filter->filter->inputs[0]->sample_rate; | |
1729 | codec->channel_layout = ost->filter->filter->inputs[0]->channel_layout; | |
1730 | codec->channels = av_get_channel_layout_nb_channels(codec->channel_layout); | |
1731 | codec->time_base = (AVRational){ 1, codec->sample_rate }; | |
1732 | break; | |
1733 | case AVMEDIA_TYPE_VIDEO: | |
74b961db | 1734 | codec->time_base = ost->filter->filter->inputs[0]->time_base; |
6291d7e4 | 1735 | |
3b266da3 AK |
1736 | codec->width = ost->filter->filter->inputs[0]->w; |
1737 | codec->height = ost->filter->filter->inputs[0]->h; | |
1738 | codec->sample_aspect_ratio = ost->st->sample_aspect_ratio = | |
1739 | ost->frame_aspect_ratio ? // overridden by the -aspect cli option | |
1740 | av_d2q(ost->frame_aspect_ratio * codec->height/codec->width, 255) : | |
1741 | ost->filter->filter->inputs[0]->sample_aspect_ratio; | |
1742 | codec->pix_fmt = ost->filter->filter->inputs[0]->format; | |
b7327887 | 1743 | |
a5fd7c60 AK |
1744 | if (icodec && |
1745 | (codec->width != icodec->width || | |
1746 | codec->height != icodec->height || | |
1747 | codec->pix_fmt != icodec->pix_fmt)) { | |
b7327887 AK |
1748 | codec->bits_per_raw_sample = 0; |
1749 | } | |
1750 | ||
19ad5673 AK |
1751 | if (ost->forced_keyframes) |
1752 | parse_forced_key_frames(ost->forced_keyframes, ost, | |
1753 | ost->st->codec); | |
6291d7e4 AK |
1754 | break; |
1755 | case AVMEDIA_TYPE_SUBTITLE: | |
c9af8326 | 1756 | codec->time_base = (AVRational){1, 1000}; |
6291d7e4 AK |
1757 | break; |
1758 | default: | |
1759 | abort(); | |
1760 | break; | |
1761 | } | |
1762 | /* two pass mode */ | |
515901fa | 1763 | if ((codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) { |
6291d7e4 AK |
1764 | char logfilename[1024]; |
1765 | FILE *f; | |
1766 | ||
1767 | snprintf(logfilename, sizeof(logfilename), "%s-%d.log", | |
bbcedade AK |
1768 | ost->logfile_prefix ? ost->logfile_prefix : |
1769 | DEFAULT_PASS_LOGFILENAME_PREFIX, | |
6291d7e4 | 1770 | i); |
6e8be949 AK |
1771 | if (!strcmp(ost->enc->name, "libx264")) { |
1772 | av_dict_set(&ost->opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE); | |
1773 | } else { | |
64334ddb AK |
1774 | if (codec->flags & CODEC_FLAG_PASS1) { |
1775 | f = fopen(logfilename, "wb"); | |
1776 | if (!f) { | |
1777 | av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n", | |
1778 | logfilename, strerror(errno)); | |
636ced8e | 1779 | exit_program(1); |
64334ddb AK |
1780 | } |
1781 | ost->logfile = f; | |
1782 | } else { | |
1783 | char *logbuffer; | |
1784 | size_t logbuffer_size; | |
1785 | if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) { | |
1786 | av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n", | |
1787 | logfilename); | |
636ced8e | 1788 | exit_program(1); |
64334ddb AK |
1789 | } |
1790 | codec->stats_in = logbuffer; | |
6291d7e4 | 1791 | } |
6e8be949 | 1792 | } |
6291d7e4 AK |
1793 | } |
1794 | } | |
6291d7e4 AK |
1795 | } |
1796 | ||
1797 | /* open each encoder */ | |
4288e031 | 1798 | for (i = 0; i < nb_output_streams; i++) { |
2e215267 | 1799 | ost = output_streams[i]; |
6291d7e4 | 1800 | if (ost->encoding_needed) { |
03f30c83 | 1801 | AVCodec *codec = ost->enc; |
3b266da3 | 1802 | AVCodecContext *dec = NULL; |
3b266da3 AK |
1803 | |
1804 | if ((ist = get_input_stream(ost))) | |
1805 | dec = ist->st->codec; | |
1806 | if (dec && dec->subtitle_header) { | |
6291d7e4 AK |
1807 | ost->st->codec->subtitle_header = av_malloc(dec->subtitle_header_size); |
1808 | if (!ost->st->codec->subtitle_header) { | |
1809 | ret = AVERROR(ENOMEM); | |
1810 | goto dump_format; | |
1811 | } | |
1812 | memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size); | |
1813 | ost->st->codec->subtitle_header_size = dec->subtitle_header_size; | |
1814 | } | |
2473a45c JG |
1815 | if (!av_dict_get(ost->opts, "threads", NULL, 0)) |
1816 | av_dict_set(&ost->opts, "threads", "auto", 0); | |
c854102d NC |
1817 | if ((ret = avcodec_open2(ost->st->codec, codec, &ost->opts)) < 0) { |
1818 | if (ret == AVERROR_EXPERIMENTAL) | |
1819 | abort_codec_experimental(codec, 1); | |
9a414d89 | 1820 | snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height", |
6291d7e4 | 1821 | ost->file_index, ost->index); |
6291d7e4 AK |
1822 | goto dump_format; |
1823 | } | |
6291d7e4 AK |
1824 | assert_avoptions(ost->opts); |
1825 | if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000) | |
1826 | av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low." | |
1827 | "It takes bits/s as argument, not kbits/s\n"); | |
1828 | extra_size += ost->st->codec->extradata_size; | |
df0229a7 MS |
1829 | } else { |
1830 | av_opt_set_dict(ost->st->codec, &ost->opts); | |
6291d7e4 AK |
1831 | } |
1832 | } | |
1833 | ||
630902a1 AK |
1834 | /* init input streams */ |
1835 | for (i = 0; i < nb_input_streams; i++) | |
ea9367e9 | 1836 | if ((ret = init_input_stream(i, error, sizeof(error))) < 0) |
630902a1 | 1837 | goto dump_format; |
6291d7e4 | 1838 | |
2c474ddb AK |
1839 | /* discard unused programs */ |
1840 | for (i = 0; i < nb_input_files; i++) { | |
2e215267 | 1841 | InputFile *ifile = input_files[i]; |
2c474ddb AK |
1842 | for (j = 0; j < ifile->ctx->nb_programs; j++) { |
1843 | AVProgram *p = ifile->ctx->programs[j]; | |
1844 | int discard = AVDISCARD_ALL; | |
1845 | ||
1846 | for (k = 0; k < p->nb_stream_indexes; k++) | |
2e215267 | 1847 | if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) { |
2c474ddb AK |
1848 | discard = AVDISCARD_DEFAULT; |
1849 | break; | |
1850 | } | |
1851 | p->discard = discard; | |
1852 | } | |
1853 | } | |
1854 | ||
6291d7e4 | 1855 | /* open files and write file headers */ |
af70aa45 | 1856 | for (i = 0; i < nb_output_files; i++) { |
2e215267 | 1857 | oc = output_files[i]->ctx; |
1bb77e51 | 1858 | oc->interrupt_callback = int_cb; |
a1a6cdc2 MS |
1859 | if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) { |
1860 | char errbuf[128]; | |
1e340af8 LB |
1861 | av_strerror(ret, errbuf, sizeof(errbuf)); |
1862 | snprintf(error, sizeof(error), | |
1863 | "Could not write header for output file #%d " | |
1864 | "(incorrect codec parameters ?): %s", | |
1865 | i, errbuf); | |
6291d7e4 AK |
1866 | ret = AVERROR(EINVAL); |
1867 | goto dump_format; | |
1868 | } | |
2e215267 | 1869 | assert_avoptions(output_files[i]->opts); |
1bb77e51 | 1870 | if (strcmp(oc->oformat->name, "rtp")) { |
6291d7e4 AK |
1871 | want_sdp = 0; |
1872 | } | |
1873 | } | |
1874 | ||
1875 | dump_format: | |
1876 | /* dump the file output parameters - cannot be done before in case | |
1877 | of stream copy */ | |
03f30c83 | 1878 | for (i = 0; i < nb_output_files; i++) { |
2e215267 | 1879 | av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1); |
6291d7e4 AK |
1880 | } |
1881 | ||
1882 | /* dump the stream mapping */ | |
e3245b26 | 1883 | av_log(NULL, AV_LOG_INFO, "Stream mapping:\n"); |
3b266da3 AK |
1884 | for (i = 0; i < nb_input_streams; i++) { |
1885 | ist = input_streams[i]; | |
1886 | ||
1887 | for (j = 0; j < ist->nb_filters; j++) { | |
3b266da3 AK |
1888 | if (ist->filters[j]->graph->graph_desc) { |
1889 | av_log(NULL, AV_LOG_INFO, " Stream #%d:%d (%s) -> %s", | |
1890 | ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?", | |
cf6c38c6 | 1891 | ist->filters[j]->name); |
3b266da3 AK |
1892 | if (nb_filtergraphs > 1) |
1893 | av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index); | |
1894 | av_log(NULL, AV_LOG_INFO, "\n"); | |
1895 | } | |
1896 | } | |
1897 | } | |
1898 | ||
e3245b26 | 1899 | for (i = 0; i < nb_output_streams; i++) { |
2e215267 | 1900 | ost = output_streams[i]; |
4dbc6cee AK |
1901 | |
1902 | if (ost->attachment_filename) { | |
1903 | /* an attached file */ | |
1904 | av_log(NULL, AV_LOG_INFO, " File %s -> Stream #%d:%d\n", | |
1905 | ost->attachment_filename, ost->file_index, ost->index); | |
1906 | continue; | |
1907 | } | |
3b266da3 AK |
1908 | |
1909 | if (ost->filter && ost->filter->graph->graph_desc) { | |
1910 | /* output from a complex graph */ | |
cf6c38c6 | 1911 | av_log(NULL, AV_LOG_INFO, " %s", ost->filter->name); |
3b266da3 AK |
1912 | if (nb_filtergraphs > 1) |
1913 | av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index); | |
1914 | ||
1915 | av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index, | |
1916 | ost->index, ost->enc ? ost->enc->name : "?"); | |
1917 | continue; | |
1918 | } | |
1919 | ||
9a414d89 | 1920 | av_log(NULL, AV_LOG_INFO, " Stream #%d:%d -> #%d:%d", |
2e215267 AK |
1921 | input_streams[ost->source_index]->file_index, |
1922 | input_streams[ost->source_index]->st->index, | |
e3245b26 AK |
1923 | ost->file_index, |
1924 | ost->index); | |
2e215267 | 1925 | if (ost->sync_ist != input_streams[ost->source_index]) |
9a414d89 | 1926 | av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]", |
e3245b26 AK |
1927 | ost->sync_ist->file_index, |
1928 | ost->sync_ist->st->index); | |
3d813e4c | 1929 | if (ost->stream_copy) |
e3245b26 AK |
1930 | av_log(NULL, AV_LOG_INFO, " (copy)"); |
1931 | else | |
2e215267 AK |
1932 | av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ? |
1933 | input_streams[ost->source_index]->dec->name : "?", | |
e3245b26 AK |
1934 | ost->enc ? ost->enc->name : "?"); |
1935 | av_log(NULL, AV_LOG_INFO, "\n"); | |
6291d7e4 AK |
1936 | } |
1937 | ||
1938 | if (ret) { | |
e3245b26 | 1939 | av_log(NULL, AV_LOG_ERROR, "%s\n", error); |
eaf2d37a | 1940 | return ret; |
6291d7e4 AK |
1941 | } |
1942 | ||
1943 | if (want_sdp) { | |
ea9367e9 | 1944 | print_sdp(); |
6291d7e4 AK |
1945 | } |
1946 | ||
eaf2d37a AC |
1947 | return 0; |
1948 | } | |
1949 | ||
c1ef30a6 | 1950 | /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */ |
2f51ec2b AK |
1951 | static int need_output(void) |
1952 | { | |
1953 | int i; | |
1954 | ||
1955 | for (i = 0; i < nb_output_streams; i++) { | |
1956 | OutputStream *ost = output_streams[i]; | |
1957 | OutputFile *of = output_files[ost->file_index]; | |
1958 | AVFormatContext *os = output_files[ost->file_index]->ctx; | |
1959 | ||
57d24225 | 1960 | if (ost->finished || |
2f51ec2b AK |
1961 | (os->pb && avio_tell(os->pb) >= of->limit_filesize)) |
1962 | continue; | |
e58b75f7 | 1963 | if (ost->frame_number >= ost->max_frames) { |
2f51ec2b AK |
1964 | int j; |
1965 | for (j = 0; j < of->ctx->nb_streams; j++) | |
57d24225 | 1966 | output_streams[of->ost_index + j]->finished = 1; |
2f51ec2b AK |
1967 | continue; |
1968 | } | |
1969 | ||
1970 | return 1; | |
1971 | } | |
1972 | ||
1973 | return 0; | |
1974 | } | |
1975 | ||
83916029 | 1976 | static InputFile *select_input_file(void) |
a508e7a1 | 1977 | { |
83916029 | 1978 | InputFile *ifile = NULL; |
a508e7a1 | 1979 | int64_t ipts_min = INT64_MAX; |
83916029 | 1980 | int i; |
a508e7a1 AK |
1981 | |
1982 | for (i = 0; i < nb_input_streams; i++) { | |
1983 | InputStream *ist = input_streams[i]; | |
1984 | int64_t ipts = ist->last_dts; | |
1985 | ||
0b26ef42 | 1986 | if (ist->discard || input_files[ist->file_index]->eagain) |
a508e7a1 AK |
1987 | continue; |
1988 | if (!input_files[ist->file_index]->eof_reached) { | |
1989 | if (ipts < ipts_min) { | |
1990 | ipts_min = ipts; | |
83916029 | 1991 | ifile = input_files[ist->file_index]; |
a508e7a1 AK |
1992 | } |
1993 | } | |
1994 | } | |
1995 | ||
83916029 | 1996 | return ifile; |
a508e7a1 AK |
1997 | } |
1998 | ||
47b812e9 | 1999 | #if HAVE_PTHREADS |
5db5169e AK |
2000 | static void *input_thread(void *arg) |
2001 | { | |
2002 | InputFile *f = arg; | |
2003 | int ret = 0; | |
2004 | ||
2005 | while (!transcoding_finished && ret >= 0) { | |
2006 | AVPacket pkt; | |
2007 | ret = av_read_frame(f->ctx, &pkt); | |
2008 | ||
2009 | if (ret == AVERROR(EAGAIN)) { | |
896bb0d7 | 2010 | av_usleep(10000); |
5db5169e AK |
2011 | ret = 0; |
2012 | continue; | |
2013 | } else if (ret < 0) | |
2014 | break; | |
2015 | ||
2016 | pthread_mutex_lock(&f->fifo_lock); | |
2017 | while (!av_fifo_space(f->fifo)) | |
2018 | pthread_cond_wait(&f->fifo_cond, &f->fifo_lock); | |
2019 | ||
2020 | av_dup_packet(&pkt); | |
2021 | av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL); | |
2022 | ||
2023 | pthread_mutex_unlock(&f->fifo_lock); | |
2024 | } | |
2025 | ||
2026 | f->finished = 1; | |
2027 | return NULL; | |
2028 | } | |
2029 | ||
2030 | static void free_input_threads(void) | |
2031 | { | |
2032 | int i; | |
2033 | ||
2034 | if (nb_input_files == 1) | |
2035 | return; | |
2036 | ||
2037 | transcoding_finished = 1; | |
2038 | ||
2039 | for (i = 0; i < nb_input_files; i++) { | |
2040 | InputFile *f = input_files[i]; | |
2041 | AVPacket pkt; | |
2042 | ||
9034b0ed | 2043 | if (!f->fifo || f->joined) |
5db5169e AK |
2044 | continue; |
2045 | ||
2046 | pthread_mutex_lock(&f->fifo_lock); | |
2047 | while (av_fifo_size(f->fifo)) { | |
2048 | av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL); | |
2049 | av_free_packet(&pkt); | |
2050 | } | |
2051 | pthread_cond_signal(&f->fifo_cond); | |
2052 | pthread_mutex_unlock(&f->fifo_lock); | |
2053 | ||
2054 | pthread_join(f->thread, NULL); | |
2055 | f->joined = 1; | |
2056 | ||
2057 | while (av_fifo_size(f->fifo)) { | |
2058 | av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL); | |
2059 | av_free_packet(&pkt); | |
2060 | } | |
2061 | av_fifo_free(f->fifo); | |
2062 | } | |
2063 | } | |
2064 | ||
2065 | static int init_input_threads(void) | |
2066 | { | |
2067 | int i, ret; | |
2068 | ||
2069 | if (nb_input_files == 1) | |
2070 | return 0; | |
2071 | ||
2072 | for (i = 0; i < nb_input_files; i++) { | |
2073 | InputFile *f = input_files[i]; | |
2074 | ||
2075 | if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket)))) | |
2076 | return AVERROR(ENOMEM); | |
2077 | ||
2078 | pthread_mutex_init(&f->fifo_lock, NULL); | |
2079 | pthread_cond_init (&f->fifo_cond, NULL); | |
2080 | ||
2081 | if ((ret = pthread_create(&f->thread, NULL, input_thread, f))) | |
2082 | return AVERROR(ret); | |
2083 | } | |
2084 | return 0; | |
2085 | } | |
2086 | ||
2087 | static int get_input_packet_mt(InputFile *f, AVPacket *pkt) | |
2088 | { | |
2089 | int ret = 0; | |
2090 | ||
2091 | pthread_mutex_lock(&f->fifo_lock); | |
2092 | ||
2093 | if (av_fifo_size(f->fifo)) { | |
2094 | av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL); | |
2095 | pthread_cond_signal(&f->fifo_cond); | |
2096 | } else { | |
2097 | if (f->finished) | |
2098 | ret = AVERROR_EOF; | |
2099 | else | |
2100 | ret = AVERROR(EAGAIN); | |
2101 | } | |
2102 | ||
2103 | pthread_mutex_unlock(&f->fifo_lock); | |
2104 | ||
2105 | return ret; | |
2106 | } | |
2107 | #endif | |
2108 | ||
2109 | static int get_input_packet(InputFile *f, AVPacket *pkt) | |
2110 | { | |
b4a5a292 AK |
2111 | if (f->rate_emu) { |
2112 | int i; | |
2113 | for (i = 0; i < f->nb_streams; i++) { | |
2114 | InputStream *ist = input_streams[f->ist_index + i]; | |
2115 | int64_t pts = av_rescale(ist->last_dts, 1000000, AV_TIME_BASE); | |
2116 | int64_t now = av_gettime() - ist->start; | |
2117 | if (pts > now) | |
2118 | return AVERROR(EAGAIN); | |
2119 | } | |
2120 | } | |
2121 | ||
47b812e9 | 2122 | #if HAVE_PTHREADS |
5db5169e AK |
2123 | if (nb_input_files > 1) |
2124 | return get_input_packet_mt(f, pkt); | |
2125 | #endif | |
2126 | return av_read_frame(f->ctx, pkt); | |
2127 | } | |
2128 | ||
0b26ef42 AK |
2129 | static int got_eagain(void) |
2130 | { | |
2131 | int i; | |
2132 | for (i = 0; i < nb_input_files; i++) | |
2133 | if (input_files[i]->eagain) | |
2134 | return 1; | |
2135 | return 0; | |
2136 | } | |
2137 | ||
2138 | static void reset_eagain(void) | |
2139 | { | |
2140 | int i; | |
2141 | for (i = 0; i < nb_input_files; i++) | |
2142 | input_files[i]->eagain = 0; | |
2143 | } | |
2144 | ||
c1ef30a6 | 2145 | /* |
0c00fd80 AK |
2146 | * Read one packet from an input file and send it for |
2147 | * - decoding -> lavfi (audio/video) | |
2148 | * - decoding -> encoding -> muxing (subtitles) | |
2149 | * - muxing (streamcopy) | |
2150 | * | |
c1ef30a6 | 2151 | * Return |
0c00fd80 AK |
2152 | * - 0 -- one packet was read and processed |
2153 | * - AVERROR(EAGAIN) -- no packets were available for selected file, | |
2154 | * this function should be called again | |
2155 | * - AVERROR_EOF -- this function should not be called again | |
2156 | */ | |
2157 | static int process_input(void) | |
2158 | { | |
2159 | InputFile *ifile; | |
2160 | AVFormatContext *is; | |
2161 | InputStream *ist; | |
2162 | AVPacket pkt; | |
2163 | int ret, i, j; | |
2164 | ||
2165 | /* select the stream that we must read now */ | |
2166 | ifile = select_input_file(); | |
2167 | /* if none, if is finished */ | |
2168 | if (!ifile) { | |
2169 | if (got_eagain()) { | |
2170 | reset_eagain(); | |
2171 | av_usleep(10000); | |
2172 | return AVERROR(EAGAIN); | |
2173 | } | |
2174 | av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from.\n"); | |
2175 | return AVERROR_EOF; | |
2176 | } | |
2177 | ||
2178 | is = ifile->ctx; | |
2179 | ret = get_input_packet(ifile, &pkt); | |
2180 | ||
2181 | if (ret == AVERROR(EAGAIN)) { | |
2182 | ifile->eagain = 1; | |
2183 | return ret; | |
2184 | } | |
2185 | if (ret < 0) { | |
2186 | if (ret != AVERROR_EOF) { | |
2187 | print_error(is->filename, ret); | |
2188 | if (exit_on_error) | |
636ced8e | 2189 | exit_program(1); |
0c00fd80 AK |
2190 | } |
2191 | ifile->eof_reached = 1; | |
2192 | ||
2193 | for (i = 0; i < ifile->nb_streams; i++) { | |
2194 | ist = input_streams[ifile->ist_index + i]; | |
2195 | if (ist->decoding_needed) | |
2196 | output_packet(ist, NULL); | |
2197 | ||
2198 | /* mark all outputs that don't go through lavfi as finished */ | |
2199 | for (j = 0; j < nb_output_streams; j++) { | |
2200 | OutputStream *ost = output_streams[j]; | |
2201 | ||
2202 | if (ost->source_index == ifile->ist_index + i && | |
2203 | (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE)) | |
57d24225 | 2204 | ost->finished= 1; |
0c00fd80 AK |
2205 | } |
2206 | } | |
2207 | ||
3c0df905 | 2208 | return AVERROR(EAGAIN); |
0c00fd80 AK |
2209 | } |
2210 | ||
2211 | reset_eagain(); | |
2212 | ||
2213 | if (do_pkt_dump) { | |
2214 | av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump, | |
2215 | is->streams[pkt.stream_index]); | |
2216 | } | |
2217 | /* the following test is needed in case new streams appear | |
2218 | dynamically in stream : we ignore them */ | |
2219 | if (pkt.stream_index >= ifile->nb_streams) | |
2220 | goto discard_packet; | |
2221 | ||
2222 | ist = input_streams[ifile->ist_index + pkt.stream_index]; | |
2223 | if (ist->discard) | |
2224 | goto discard_packet; | |
2225 | ||
2226 | if (pkt.dts != AV_NOPTS_VALUE) | |
2227 | pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base); | |
2228 | if (pkt.pts != AV_NOPTS_VALUE) | |
2229 | pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base); | |
2230 | ||
2231 | if (pkt.pts != AV_NOPTS_VALUE) | |
2232 | pkt.pts *= ist->ts_scale; | |
2233 | if (pkt.dts != AV_NOPTS_VALUE) | |
2234 | pkt.dts *= ist->ts_scale; | |
2235 | ||
2236 | if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE && | |
2237 | (is->iformat->flags & AVFMT_TS_DISCONT)) { | |
2238 | int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q); | |
2239 | int64_t delta = pkt_dts - ist->next_dts; | |
2240 | ||
2241 | if ((FFABS(delta) > 1LL * dts_delta_threshold * AV_TIME_BASE || pkt_dts + 1 < ist->last_dts) && !copy_ts) { | |
2242 | ifile->ts_offset -= delta; | |
2243 | av_log(NULL, AV_LOG_DEBUG, | |
2244 | "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n", | |
2245 | delta, ifile->ts_offset); | |
2246 | pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base); | |
2247 | if (pkt.pts != AV_NOPTS_VALUE) | |
2248 | pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base); | |
2249 | } | |
2250 | } | |
2251 | ||
2252 | ret = output_packet(ist, &pkt); | |
2253 | if (ret < 0) { | |
2254 | av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d\n", | |
2255 | ist->file_index, ist->st->index); | |
2256 | if (exit_on_error) | |
636ced8e | 2257 | exit_program(1); |
0c00fd80 AK |
2258 | } |
2259 | ||
2260 | discard_packet: | |
2261 | av_free_packet(&pkt); | |
2262 | ||
2263 | return 0; | |
2264 | } | |
2265 | ||
eaf2d37a AC |
2266 | /* |
2267 | * The following code is the main loop of the file converter | |
2268 | */ | |
ea9367e9 | 2269 | static int transcode(void) |
eaf2d37a | 2270 | { |
0c00fd80 AK |
2271 | int ret, i, need_input = 1; |
2272 | AVFormatContext *os; | |
eaf2d37a AC |
2273 | OutputStream *ost; |
2274 | InputStream *ist; | |
eaf2d37a AC |
2275 | int64_t timer_start; |
2276 | ||
ea9367e9 | 2277 | ret = transcode_init(); |
eaf2d37a AC |
2278 | if (ret < 0) |
2279 | goto fail; | |
2280 | ||
e3245b26 | 2281 | av_log(NULL, AV_LOG_INFO, "Press ctrl-c to stop encoding\n"); |
6291d7e4 AK |
2282 | term_init(); |
2283 | ||
2284 | timer_start = av_gettime(); | |
2285 | ||
47b812e9 | 2286 | #if HAVE_PTHREADS |
5db5169e AK |
2287 | if ((ret = init_input_threads()) < 0) |
2288 | goto fail; | |
2289 | #endif | |
2290 | ||
c0fbf971 | 2291 | while (!received_sigterm) { |
3b266da3 | 2292 | /* check if there's any stream where output is still needed */ |
2f51ec2b AK |
2293 | if (!need_output()) { |
2294 | av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n"); | |
3b266da3 | 2295 | break; |
2f51ec2b | 2296 | } |
3b266da3 | 2297 | |
0c00fd80 AK |
2298 | /* read and process one input packet if needed */ |
2299 | if (need_input) { | |
2300 | ret = process_input(); | |
2301 | if (ret == AVERROR_EOF) | |
2302 | need_input = 0; | |
6291d7e4 AK |
2303 | } |
2304 | ||
0c00fd80 | 2305 | ret = poll_filters(); |
6291d7e4 | 2306 | if (ret < 0) { |
0c00fd80 | 2307 | if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN)) |
6291d7e4 | 2308 | continue; |
6291d7e4 | 2309 | |
0c00fd80 AK |
2310 | av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n"); |
2311 | break; | |
6291d7e4 AK |
2312 | } |
2313 | ||
6291d7e4 | 2314 | /* dump report by using the output first video and audio streams */ |
ea9367e9 | 2315 | print_report(0, timer_start); |
6291d7e4 | 2316 | } |
47b812e9 | 2317 | #if HAVE_PTHREADS |
5db5169e AK |
2318 | free_input_threads(); |
2319 | #endif | |
6291d7e4 AK |
2320 | |
2321 | /* at the end of stream, we must flush the decoder buffers */ | |
2322 | for (i = 0; i < nb_input_streams; i++) { | |
2e215267 | 2323 | ist = input_streams[i]; |
9e8aae44 | 2324 | if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) { |
ea9367e9 | 2325 | output_packet(ist, NULL); |
6291d7e4 AK |
2326 | } |
2327 | } | |
560f7774 | 2328 | poll_filters(); |
ea9367e9 | 2329 | flush_encoders(); |
6291d7e4 AK |
2330 | |
2331 | term_exit(); | |
2332 | ||
2333 | /* write the trailer if needed and close file */ | |
7636c8c6 | 2334 | for (i = 0; i < nb_output_files; i++) { |
2e215267 | 2335 | os = output_files[i]->ctx; |
6291d7e4 AK |
2336 | av_write_trailer(os); |
2337 | } | |
2338 | ||
2339 | /* dump report by using the first video and audio streams */ | |
ea9367e9 | 2340 | print_report(1, timer_start); |
6291d7e4 AK |
2341 | |
2342 | /* close each encoder */ | |
4288e031 | 2343 | for (i = 0; i < nb_output_streams; i++) { |
2e215267 | 2344 | ost = output_streams[i]; |
6291d7e4 AK |
2345 | if (ost->encoding_needed) { |
2346 | av_freep(&ost->st->codec->stats_in); | |
2347 | avcodec_close(ost->st->codec); | |
2348 | } | |
6291d7e4 AK |
2349 | } |
2350 | ||
2351 | /* close each decoder */ | |
2352 | for (i = 0; i < nb_input_streams; i++) { | |
2e215267 | 2353 | ist = input_streams[i]; |
6291d7e4 AK |
2354 | if (ist->decoding_needed) { |
2355 | avcodec_close(ist->st->codec); | |
07fd0a22 AK |
2356 | if (ist->hwaccel_uninit) |
2357 | ist->hwaccel_uninit(ist->st->codec); | |
6291d7e4 AK |
2358 | } |
2359 | } | |
2360 | ||
2361 | /* finished ! */ | |
2362 | ret = 0; | |
2363 | ||
2364 | fail: | |
47b812e9 | 2365 | #if HAVE_PTHREADS |
5db5169e AK |
2366 | free_input_threads(); |
2367 | #endif | |
6291d7e4 | 2368 | |
4288e031 AK |
2369 | if (output_streams) { |
2370 | for (i = 0; i < nb_output_streams; i++) { | |
2e215267 | 2371 | ost = output_streams[i]; |
6291d7e4 | 2372 | if (ost) { |
3d813e4c | 2373 | if (ost->stream_copy) |
6291d7e4 AK |
2374 | av_freep(&ost->st->codec->extradata); |
2375 | if (ost->logfile) { | |
2376 | fclose(ost->logfile); | |
2377 | ost->logfile = NULL; | |
2378 | } | |
6291d7e4 | 2379 | av_freep(&ost->st->codec->subtitle_header); |
6291d7e4 | 2380 | av_free(ost->forced_kf_pts); |
6291d7e4 | 2381 | av_dict_free(&ost->opts); |
5c7db097 | 2382 | av_dict_free(&ost->resample_opts); |
6291d7e4 AK |
2383 | } |
2384 | } | |
6291d7e4 AK |
2385 | } |
2386 | return ret; | |
2387 | } | |
2388 | ||
f5e66827 | 2389 | static int64_t getutime(void) |
a2c0b830 | 2390 | { |
f5e66827 AK |
2391 | #if HAVE_GETRUSAGE |
2392 | struct rusage rusage; | |
a2c0b830 | 2393 | |
f5e66827 AK |
2394 | getrusage(RUSAGE_SELF, &rusage); |
2395 | return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec; | |
2396 | #elif HAVE_GETPROCESSTIMES | |
2397 | HANDLE proc; | |
2398 | FILETIME c, e, k, u; | |
2399 | proc = GetCurrentProcess(); | |
2400 | GetProcessTimes(proc, &c, &e, &k, &u); | |
2401 | return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10; | |
2402 | #else | |
2403 | return av_gettime(); | |
2404 | #endif | |
a2c0b830 AK |
2405 | } |
2406 | ||
f5e66827 | 2407 | static int64_t getmaxrss(void) |
6291d7e4 | 2408 | { |
f5e66827 AK |
2409 | #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS |
2410 | struct rusage rusage; | |
2411 | getrusage(RUSAGE_SELF, &rusage); | |
2412 | return (int64_t)rusage.ru_maxrss * 1024; | |
2413 | #elif HAVE_GETPROCESSMEMORYINFO | |
2414 | HANDLE proc; | |
2415 | PROCESS_MEMORY_COUNTERS memcounters; | |
2416 | proc = GetCurrentProcess(); | |
2417 | memcounters.cb = sizeof(memcounters); | |
2418 | GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters)); | |
2419 | return memcounters.PeakPagefileUsage; | |
2420 | #else | |
6291d7e4 | 2421 | return 0; |
f5e66827 | 2422 | #endif |
6291d7e4 AK |
2423 | } |
2424 | ||
6291d7e4 AK |
2425 | int main(int argc, char **argv) |
2426 | { | |
77bd1bc7 | 2427 | int ret; |
6291d7e4 AK |
2428 | int64_t ti; |
2429 | ||
636ced8e | 2430 | register_exit(avconv_cleanup); |
5e3f9979 | 2431 | |
6291d7e4 | 2432 | av_log_set_flags(AV_LOG_SKIP_REPEATED); |
182cbe43 | 2433 | parse_loglevel(argc, argv, options); |
6291d7e4 AK |
2434 | |
2435 | avcodec_register_all(); | |
2436 | #if CONFIG_AVDEVICE | |
2437 | avdevice_register_all(); | |
2438 | #endif | |
6291d7e4 | 2439 | avfilter_register_all(); |
6291d7e4 | 2440 | av_register_all(); |
776f2bb9 | 2441 | avformat_network_init(); |
6291d7e4 | 2442 | |
6291d7e4 AK |
2443 | show_banner(); |
2444 | ||
77bd1bc7 AK |
2445 | /* parse options and open all input/output files */ |
2446 | ret = avconv_parse_options(argc, argv); | |
2447 | if (ret < 0) | |
636ced8e | 2448 | exit_program(1); |
6291d7e4 | 2449 | |
7636c8c6 | 2450 | if (nb_output_files <= 0 && nb_input_files == 0) { |
6291d7e4 | 2451 | show_usage(); |
e3245b26 | 2452 | av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name); |
636ced8e | 2453 | exit_program(1); |
6291d7e4 AK |
2454 | } |
2455 | ||
2456 | /* file converter / grab */ | |
2457 | if (nb_output_files <= 0) { | |
2458 | fprintf(stderr, "At least one output file must be specified\n"); | |
636ced8e | 2459 | exit_program(1); |
6291d7e4 AK |
2460 | } |
2461 | ||
6291d7e4 | 2462 | ti = getutime(); |
ea9367e9 | 2463 | if (transcode() < 0) |
636ced8e | 2464 | exit_program(1); |
6291d7e4 AK |
2465 | ti = getutime() - ti; |
2466 | if (do_benchmark) { | |
2467 | int maxrss = getmaxrss() / 1024; | |
2468 | printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss); | |
2469 | } | |
2470 | ||
636ced8e | 2471 | exit_program(0); |
dad09ff9 | 2472 | return 0; |
6291d7e4 | 2473 | } |