FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ffmpeg.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2000-2003 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * multimedia converter based on the FFmpeg libraries
24  */
25 
26 #include "config.h"
27 #include <ctype.h>
28 #include <string.h>
29 #include <math.h>
30 #include <stdlib.h>
31 #include <errno.h>
32 #include <limits.h>
33 #include <stdint.h>
34 
35 #if HAVE_ISATTY
36 #if HAVE_IO_H
37 #include <io.h>
38 #endif
39 #if HAVE_UNISTD_H
40 #include <unistd.h>
41 #endif
42 #endif
43 
44 #include "libavformat/avformat.h"
45 #include "libavdevice/avdevice.h"
47 #include "libavutil/opt.h"
49 #include "libavutil/parseutils.h"
50 #include "libavutil/samplefmt.h"
51 #include "libavutil/fifo.h"
52 #include "libavutil/intreadwrite.h"
53 #include "libavutil/dict.h"
54 #include "libavutil/mathematics.h"
55 #include "libavutil/pixdesc.h"
56 #include "libavutil/avstring.h"
57 #include "libavutil/libm.h"
58 #include "libavutil/imgutils.h"
59 #include "libavutil/timestamp.h"
60 #include "libavutil/bprint.h"
61 #include "libavutil/time.h"
63 #include "libavformat/os_support.h"
64 
65 # include "libavfilter/avcodec.h"
66 # include "libavfilter/avfilter.h"
67 # include "libavfilter/buffersrc.h"
68 # include "libavfilter/buffersink.h"
69 
70 #if HAVE_SYS_RESOURCE_H
71 #include <sys/time.h>
72 #include <sys/types.h>
73 #include <sys/resource.h>
74 #elif HAVE_GETPROCESSTIMES
75 #include <windows.h>
76 #endif
77 #if HAVE_GETPROCESSMEMORYINFO
78 #include <windows.h>
79 #include <psapi.h>
80 #endif
81 
82 #if HAVE_SYS_SELECT_H
83 #include <sys/select.h>
84 #endif
85 
86 #if HAVE_TERMIOS_H
87 #include <fcntl.h>
88 #include <sys/ioctl.h>
89 #include <sys/time.h>
90 #include <termios.h>
91 #elif HAVE_KBHIT
92 #include <conio.h>
93 #endif
94 
95 #if HAVE_PTHREADS
96 #include <pthread.h>
97 #endif
98 
99 #include <time.h>
100 
101 #include "ffmpeg.h"
102 #include "cmdutils.h"
103 
104 #include "libavutil/avassert.h"
105 
106 const char program_name[] = "ffmpeg";
107 const int program_birth_year = 2000;
108 
109 static FILE *vstats_file;
110 
111 const char *const forced_keyframes_const_names[] = {
112  "n",
113  "n_forced",
114  "prev_forced_n",
115  "prev_forced_t",
116  "t",
117  NULL
118 };
119 
120 static void do_video_stats(OutputStream *ost, int frame_size);
121 static int64_t getutime(void);
122 static int64_t getmaxrss(void);
123 
124 static int run_as_daemon = 0;
125 static int nb_frames_dup = 0;
126 static int nb_frames_drop = 0;
127 static int64_t decode_error_stat[2];
128 
129 static int current_time;
131 
133 
134 #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
135 
140 
145 
148 
149 #if HAVE_TERMIOS_H
150 
151 /* init terminal so that we can grab keys */
152 static struct termios oldtty;
153 static int restore_tty;
154 #endif
155 
156 #if HAVE_PTHREADS
157 static void free_input_threads(void);
158 #endif
159 
160 /* sub2video hack:
161  Convert subtitles to video with alpha to insert them in filter graphs.
162  This is a temporary solution until libavfilter gets real subtitles support.
163  */
164 
166 {
167  int ret;
168  AVFrame *frame = ist->sub2video.frame;
169 
170  av_frame_unref(frame);
171  ist->sub2video.frame->width = ist->sub2video.w;
172  ist->sub2video.frame->height = ist->sub2video.h;
174  if ((ret = av_frame_get_buffer(frame, 32)) < 0)
175  return ret;
176  memset(frame->data[0], 0, frame->height * frame->linesize[0]);
177  return 0;
178 }
179 
180 static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
181  AVSubtitleRect *r)
182 {
183  uint32_t *pal, *dst2;
184  uint8_t *src, *src2;
185  int x, y;
186 
187  if (r->type != SUBTITLE_BITMAP) {
188  av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
189  return;
190  }
191  if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
192  av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle overflowing\n");
193  return;
194  }
195 
196  dst += r->y * dst_linesize + r->x * 4;
197  src = r->pict.data[0];
198  pal = (uint32_t *)r->pict.data[1];
199  for (y = 0; y < r->h; y++) {
200  dst2 = (uint32_t *)dst;
201  src2 = src;
202  for (x = 0; x < r->w; x++)
203  *(dst2++) = pal[*(src2++)];
204  dst += dst_linesize;
205  src += r->pict.linesize[0];
206  }
207 }
208 
209 static void sub2video_push_ref(InputStream *ist, int64_t pts)
210 {
211  AVFrame *frame = ist->sub2video.frame;
212  int i;
213 
214  av_assert1(frame->data[0]);
215  ist->sub2video.last_pts = frame->pts = pts;
216  for (i = 0; i < ist->nb_filters; i++)
220 }
221 
222 static void sub2video_update(InputStream *ist, AVSubtitle *sub)
223 {
224  int w = ist->sub2video.w, h = ist->sub2video.h;
225  AVFrame *frame = ist->sub2video.frame;
226  int8_t *dst;
227  int dst_linesize;
228  int num_rects, i;
229  int64_t pts, end_pts;
230 
231  if (!frame)
232  return;
233  if (sub) {
234  pts = av_rescale_q(sub->pts + sub->start_display_time * 1000LL,
235  AV_TIME_BASE_Q, ist->st->time_base);
236  end_pts = av_rescale_q(sub->pts + sub->end_display_time * 1000LL,
237  AV_TIME_BASE_Q, ist->st->time_base);
238  num_rects = sub->num_rects;
239  } else {
240  pts = ist->sub2video.end_pts;
241  end_pts = INT64_MAX;
242  num_rects = 0;
243  }
244  if (sub2video_get_blank_frame(ist) < 0) {
246  "Impossible to get a blank canvas.\n");
247  return;
248  }
249  dst = frame->data [0];
250  dst_linesize = frame->linesize[0];
251  for (i = 0; i < num_rects; i++)
252  sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
253  sub2video_push_ref(ist, pts);
254  ist->sub2video.end_pts = end_pts;
255 }
256 
257 static void sub2video_heartbeat(InputStream *ist, int64_t pts)
258 {
259  InputFile *infile = input_files[ist->file_index];
260  int i, j, nb_reqs;
261  int64_t pts2;
262 
263  /* When a frame is read from a file, examine all sub2video streams in
264  the same file and send the sub2video frame again. Otherwise, decoded
265  video frames could be accumulating in the filter graph while a filter
266  (possibly overlay) is desperately waiting for a subtitle frame. */
267  for (i = 0; i < infile->nb_streams; i++) {
268  InputStream *ist2 = input_streams[infile->ist_index + i];
269  if (!ist2->sub2video.frame)
270  continue;
271  /* subtitles seem to be usually muxed ahead of other streams;
272  if not, subtracting a larger time here is necessary */
273  pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
274  /* do not send the heartbeat frame if the subtitle is already ahead */
275  if (pts2 <= ist2->sub2video.last_pts)
276  continue;
277  if (pts2 >= ist2->sub2video.end_pts || !ist2->sub2video.frame->data[0])
278  sub2video_update(ist2, NULL);
279  for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
280  nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
281  if (nb_reqs)
282  sub2video_push_ref(ist2, pts2);
283  }
284 }
285 
286 static void sub2video_flush(InputStream *ist)
287 {
288  int i;
289 
290  if (ist->sub2video.end_pts < INT64_MAX)
291  sub2video_update(ist, NULL);
292  for (i = 0; i < ist->nb_filters; i++)
293  av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
294 }
295 
296 /* end of sub2video hack */
297 
298 static void term_exit_sigsafe(void)
299 {
300 #if HAVE_TERMIOS_H
301  if(restore_tty)
302  tcsetattr (0, TCSANOW, &oldtty);
303 #endif
304 }
305 
306 void term_exit(void)
307 {
308  av_log(NULL, AV_LOG_QUIET, "%s", "");
310 }
311 
312 static volatile int received_sigterm = 0;
313 static volatile int received_nb_signals = 0;
314 static volatile int transcode_init_done = 0;
315 static int main_return_code = 0;
316 
317 static void
319 {
320  received_sigterm = sig;
323  if(received_nb_signals > 3)
324  exit(123);
325 }
326 
327 void term_init(void)
328 {
329 #if HAVE_TERMIOS_H
330  if(!run_as_daemon){
331  struct termios tty;
332  int istty = 1;
333 #if HAVE_ISATTY
334  istty = isatty(0) && isatty(2);
335 #endif
336  if (istty && tcgetattr (0, &tty) == 0) {
337  oldtty = tty;
338  restore_tty = 1;
339 
340  tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
341  |INLCR|IGNCR|ICRNL|IXON);
342  tty.c_oflag |= OPOST;
343  tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
344  tty.c_cflag &= ~(CSIZE|PARENB);
345  tty.c_cflag |= CS8;
346  tty.c_cc[VMIN] = 1;
347  tty.c_cc[VTIME] = 0;
348 
349  tcsetattr (0, TCSANOW, &tty);
350  }
351  signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */
352  }
353 #endif
355 
356  signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
357  signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
358 #ifdef SIGXCPU
359  signal(SIGXCPU, sigterm_handler);
360 #endif
361 }
362 
363 /* read a key without blocking */
364 static int read_key(void)
365 {
366  unsigned char ch;
367 #if HAVE_TERMIOS_H
368  int n = 1;
369  struct timeval tv;
370  fd_set rfds;
371 
372  FD_ZERO(&rfds);
373  FD_SET(0, &rfds);
374  tv.tv_sec = 0;
375  tv.tv_usec = 0;
376  n = select(1, &rfds, NULL, NULL, &tv);
377  if (n > 0) {
378  n = read(0, &ch, 1);
379  if (n == 1)
380  return ch;
381 
382  return n;
383  }
384 #elif HAVE_KBHIT
385 # if HAVE_PEEKNAMEDPIPE
386  static int is_pipe;
387  static HANDLE input_handle;
388  DWORD dw, nchars;
389  if(!input_handle){
390  input_handle = GetStdHandle(STD_INPUT_HANDLE);
391  is_pipe = !GetConsoleMode(input_handle, &dw);
392  }
393 
394  if (stdin->_cnt > 0) {
395  read(0, &ch, 1);
396  return ch;
397  }
398  if (is_pipe) {
399  /* When running under a GUI, you will end here. */
400  if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL)) {
401  // input pipe may have been closed by the program that ran ffmpeg
402  return -1;
403  }
404  //Read it
405  if(nchars != 0) {
406  read(0, &ch, 1);
407  return ch;
408  }else{
409  return -1;
410  }
411  }
412 # endif
413  if(kbhit())
414  return(getch());
415 #endif
416  return -1;
417 }
418 
419 static int decode_interrupt_cb(void *ctx)
420 {
422 }
423 
425 
426 static void ffmpeg_cleanup(int ret)
427 {
428  int i, j;
429 
430  if (do_benchmark) {
431  int maxrss = getmaxrss() / 1024;
432  printf("bench: maxrss=%ikB\n", maxrss);
433  }
434 
435  for (i = 0; i < nb_filtergraphs; i++) {
436  FilterGraph *fg = filtergraphs[i];
438  for (j = 0; j < fg->nb_inputs; j++) {
439  av_freep(&fg->inputs[j]->name);
440  av_freep(&fg->inputs[j]);
441  }
442  av_freep(&fg->inputs);
443  for (j = 0; j < fg->nb_outputs; j++) {
444  av_freep(&fg->outputs[j]->name);
445  av_freep(&fg->outputs[j]);
446  }
447  av_freep(&fg->outputs);
448  av_freep(&fg->graph_desc);
449 
450  av_freep(&filtergraphs[i]);
451  }
452  av_freep(&filtergraphs);
453 
455 
456  /* close files */
457  for (i = 0; i < nb_output_files; i++) {
458  OutputFile *of = output_files[i];
459  AVFormatContext *s = of->ctx;
460  if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE))
461  avio_closep(&s->pb);
463  av_dict_free(&of->opts);
464 
465  av_freep(&output_files[i]);
466  }
467  for (i = 0; i < nb_output_streams; i++) {
468  OutputStream *ost = output_streams[i];
470  while (bsfc) {
471  AVBitStreamFilterContext *next = bsfc->next;
473  bsfc = next;
474  }
475  ost->bitstream_filters = NULL;
477  av_frame_free(&ost->last_frame);
478 
479  av_parser_close(ost->parser);
480 
481  av_freep(&ost->forced_keyframes);
483  av_freep(&ost->avfilter);
484  av_freep(&ost->logfile_prefix);
485 
487  ost->audio_channels_mapped = 0;
488 
490 
491  av_freep(&output_streams[i]);
492  }
493 #if HAVE_PTHREADS
494  free_input_threads();
495 #endif
496  for (i = 0; i < nb_input_files; i++) {
497  avformat_close_input(&input_files[i]->ctx);
498  av_freep(&input_files[i]);
499  }
500  for (i = 0; i < nb_input_streams; i++) {
501  InputStream *ist = input_streams[i];
502 
505  av_dict_free(&ist->decoder_opts);
508  av_freep(&ist->filters);
509  av_freep(&ist->hwaccel_device);
510 
512 
513  av_freep(&input_streams[i]);
514  }
515 
516  if (vstats_file)
517  fclose(vstats_file);
519 
520  av_freep(&input_streams);
521  av_freep(&input_files);
522  av_freep(&output_streams);
523  av_freep(&output_files);
524 
525  uninit_opts();
526 
528 
529  if (received_sigterm) {
530  av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
531  (int) received_sigterm);
532  } else if (ret && transcode_init_done) {
533  av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");
534  }
535  term_exit();
536 }
537 
539 {
540  AVDictionaryEntry *t = NULL;
541 
542  while ((t = av_dict_get(b, "", t, AV_DICT_IGNORE_SUFFIX))) {
544  }
545 }
546 
548 {
550  if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
551  av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
552  exit_program(1);
553  }
554 }
555 
556 static void abort_codec_experimental(AVCodec *c, int encoder)
557 {
558  exit_program(1);
559 }
560 
561 static void update_benchmark(const char *fmt, ...)
562 {
563  if (do_benchmark_all) {
564  int64_t t = getutime();
565  va_list va;
566  char buf[1024];
567 
568  if (fmt) {
569  va_start(va, fmt);
570  vsnprintf(buf, sizeof(buf), fmt, va);
571  va_end(va);
572  printf("bench: %8"PRIu64" %s \n", t - current_time, buf);
573  }
574  current_time = t;
575  }
576 }
577 
578 static void close_all_output_streams(OutputStream *ost, OSTFinished this_stream, OSTFinished others)
579 {
580  int i;
581  for (i = 0; i < nb_output_streams; i++) {
582  OutputStream *ost2 = output_streams[i];
583  ost2->finished |= ost == ost2 ? this_stream : others;
584  }
585 }
586 
588 {
590  AVCodecContext *avctx = ost->st->codec;
591  int ret;
592 
593  if (!ost->st->codec->extradata_size && ost->enc_ctx->extradata_size) {
595  if (ost->st->codec->extradata) {
596  memcpy(ost->st->codec->extradata, ost->enc_ctx->extradata, ost->enc_ctx->extradata_size);
598  }
599  }
600 
603  pkt->pts = pkt->dts = AV_NOPTS_VALUE;
604 
605  /*
606  * Audio encoders may split the packets -- #frames in != #packets out.
607  * But there is no reordering, so we can limit the number of output packets
608  * by simply dropping them here.
609  * Counting encoded video frames needs to be done separately because of
610  * reordering, see do_video_out()
611  */
612  if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
613  if (ost->frame_number >= ost->max_frames) {
614  av_free_packet(pkt);
615  return;
616  }
617  ost->frame_number++;
618  }
619 
620  if (bsfc)
622 
623  while (bsfc) {
624  AVPacket new_pkt = *pkt;
625  AVDictionaryEntry *bsf_arg = av_dict_get(ost->bsf_args,
626  bsfc->filter->name,
627  NULL, 0);
628  int a = av_bitstream_filter_filter(bsfc, avctx,
629  bsf_arg ? bsf_arg->value : NULL,
630  &new_pkt.data, &new_pkt.size,
631  pkt->data, pkt->size,
632  pkt->flags & AV_PKT_FLAG_KEY);
633  if(a == 0 && new_pkt.data != pkt->data && new_pkt.destruct) {
634  uint8_t *t = av_malloc(new_pkt.size + FF_INPUT_BUFFER_PADDING_SIZE); //the new should be a subset of the old so cannot overflow
635  if(t) {
636  memcpy(t, new_pkt.data, new_pkt.size);
637  memset(t + new_pkt.size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
638  new_pkt.data = t;
639  new_pkt.buf = NULL;
640  a = 1;
641  } else
642  a = AVERROR(ENOMEM);
643  }
644  if (a > 0) {
645  pkt->side_data = NULL;
646  pkt->side_data_elems = 0;
647  av_free_packet(pkt);
648  new_pkt.buf = av_buffer_create(new_pkt.data, new_pkt.size,
649  av_buffer_default_free, NULL, 0);
650  if (!new_pkt.buf)
651  exit_program(1);
652  } else if (a < 0) {
653  av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
654  bsfc->filter->name, pkt->stream_index,
655  avctx->codec ? avctx->codec->name : "copy");
656  print_error("", a);
657  if (exit_on_error)
658  exit_program(1);
659  }
660  *pkt = new_pkt;
661 
662  bsfc = bsfc->next;
663  }
664 
665  if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
666  if (pkt->dts != AV_NOPTS_VALUE &&
667  pkt->pts != AV_NOPTS_VALUE &&
668  pkt->dts > pkt->pts) {
669  av_log(s, AV_LOG_WARNING, "Invalid DTS: %"PRId64" PTS: %"PRId64" in output stream %d:%d, replacing by guess\n",
670  pkt->dts, pkt->pts,
671  ost->file_index, ost->st->index);
672  pkt->pts =
673  pkt->dts = pkt->pts + pkt->dts + ost->last_mux_dts + 1
674  - FFMIN3(pkt->pts, pkt->dts, ost->last_mux_dts + 1)
675  - FFMAX3(pkt->pts, pkt->dts, ost->last_mux_dts + 1);
676  }
677  if(
678  (avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) &&
679  pkt->dts != AV_NOPTS_VALUE &&
680  ost->last_mux_dts != AV_NOPTS_VALUE) {
681  int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
682  if (pkt->dts < max) {
683  int loglevel = max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG;
684  av_log(s, loglevel, "Non-monotonous DTS in output stream "
685  "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
686  ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
687  if (exit_on_error) {
688  av_log(NULL, AV_LOG_FATAL, "aborting.\n");
689  exit_program(1);
690  }
691  av_log(s, loglevel, "changing to %"PRId64". This may result "
692  "in incorrect timestamps in the output file.\n",
693  max);
694  if(pkt->pts >= pkt->dts)
695  pkt->pts = FFMAX(pkt->pts, max);
696  pkt->dts = max;
697  }
698  }
699  }
700  ost->last_mux_dts = pkt->dts;
701 
702  ost->data_size += pkt->size;
703  ost->packets_written++;
704 
705  pkt->stream_index = ost->index;
706 
707  if (debug_ts) {
708  av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
709  "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
711  av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
712  av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
713  pkt->size
714  );
715  }
716 
717  ret = av_interleaved_write_frame(s, pkt);
718  if (ret < 0) {
719  print_error("av_interleaved_write_frame()", ret);
720  main_return_code = 1;
722  }
723  av_free_packet(pkt);
724 }
725 
727 {
728  OutputFile *of = output_files[ost->file_index];
729 
730  ost->finished |= ENCODER_FINISHED;
731  if (of->shortest) {
732  int64_t end = av_rescale_q(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, AV_TIME_BASE_Q);
733  of->recording_time = FFMIN(of->recording_time, end);
734  }
735 }
736 
738 {
739  OutputFile *of = output_files[ost->file_index];
740 
741  if (of->recording_time != INT64_MAX &&
743  AV_TIME_BASE_Q) >= 0) {
744  close_output_stream(ost);
745  return 0;
746  }
747  return 1;
748 }
749 
751  AVFrame *frame)
752 {
753  AVCodecContext *enc = ost->enc_ctx;
754  AVPacket pkt;
755  int got_packet = 0;
756 
757  av_init_packet(&pkt);
758  pkt.data = NULL;
759  pkt.size = 0;
760 
761  if (!check_recording_time(ost))
762  return;
763 
764  if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
765  frame->pts = ost->sync_opts;
766  ost->sync_opts = frame->pts + frame->nb_samples;
767  ost->samples_encoded += frame->nb_samples;
768  ost->frames_encoded++;
769 
770  av_assert0(pkt.size || !pkt.data);
772  if (debug_ts) {
773  av_log(NULL, AV_LOG_INFO, "encoder <- type:audio "
774  "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
775  av_ts2str(frame->pts), av_ts2timestr(frame->pts, &enc->time_base),
776  enc->time_base.num, enc->time_base.den);
777  }
778 
779  if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
780  av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
781  exit_program(1);
782  }
783  update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
784 
785  if (got_packet) {
786  av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
787 
788  if (debug_ts) {
789  av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
790  "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
791  av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
792  av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
793  }
794 
795  write_frame(s, &pkt, ost);
796  }
797 }
798 
800  OutputStream *ost,
801  InputStream *ist,
802  AVSubtitle *sub)
803 {
804  int subtitle_out_max_size = 1024 * 1024;
805  int subtitle_out_size, nb, i;
806  AVCodecContext *enc;
807  AVPacket pkt;
808  int64_t pts;
809 
810  if (sub->pts == AV_NOPTS_VALUE) {
811  av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
812  if (exit_on_error)
813  exit_program(1);
814  return;
815  }
816 
817  enc = ost->enc_ctx;
818 
819  if (!subtitle_out) {
820  subtitle_out = av_malloc(subtitle_out_max_size);
821  if (!subtitle_out) {
822  av_log(NULL, AV_LOG_FATAL, "Failed to allocate subtitle_out\n");
823  exit_program(1);
824  }
825  }
826 
827  /* Note: DVB subtitle need one packet to draw them and one other
828  packet to clear them */
829  /* XXX: signal it in the codec context ? */
831  nb = 2;
832  else
833  nb = 1;
834 
835  /* shift timestamp to honor -ss and make check_recording_time() work with -t */
836  pts = sub->pts;
837  if (output_files[ost->file_index]->start_time != AV_NOPTS_VALUE)
838  pts -= output_files[ost->file_index]->start_time;
839  for (i = 0; i < nb; i++) {
840  unsigned save_num_rects = sub->num_rects;
841 
842  ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
843  if (!check_recording_time(ost))
844  return;
845 
846  sub->pts = pts;
847  // start_display_time is required to be 0
848  sub->pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
850  sub->start_display_time = 0;
851  if (i == 1)
852  sub->num_rects = 0;
853 
854  ost->frames_encoded++;
855 
856  subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
857  subtitle_out_max_size, sub);
858  if (i == 1)
859  sub->num_rects = save_num_rects;
860  if (subtitle_out_size < 0) {
861  av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
862  exit_program(1);
863  }
864 
865  av_init_packet(&pkt);
866  pkt.data = subtitle_out;
867  pkt.size = subtitle_out_size;
868  pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
869  pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->st->time_base);
870  if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
871  /* XXX: the pts correction is handled here. Maybe handling
872  it in the codec would be better */
873  if (i == 0)
874  pkt.pts += 90 * sub->start_display_time;
875  else
876  pkt.pts += 90 * sub->end_display_time;
877  }
878  pkt.dts = pkt.pts;
879  write_frame(s, &pkt, ost);
880  }
881 }
882 
884  OutputStream *ost,
885  AVFrame *next_picture,
886  double sync_ipts)
887 {
888  int ret, format_video_sync;
889  AVPacket pkt;
890  AVCodecContext *enc = ost->enc_ctx;
891  AVCodecContext *mux_enc = ost->st->codec;
892  int nb_frames, nb0_frames, i;
893  double delta, delta0;
894  double duration = 0;
895  int frame_size = 0;
896  InputStream *ist = NULL;
898 
899  if (ost->source_index >= 0)
900  ist = input_streams[ost->source_index];
901 
902  if (filter->inputs[0]->frame_rate.num > 0 &&
903  filter->inputs[0]->frame_rate.den > 0)
904  duration = 1/(av_q2d(filter->inputs[0]->frame_rate) * av_q2d(enc->time_base));
905 
906  if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
907  duration = FFMIN(duration, 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base)));
908 
909  if (!ost->filters_script &&
910  !ost->filters &&
911  next_picture &&
912  ist &&
913  lrintf(av_frame_get_pkt_duration(next_picture) * av_q2d(ist->st->time_base) / av_q2d(enc->time_base)) > 0) {
914  duration = lrintf(av_frame_get_pkt_duration(next_picture) * av_q2d(ist->st->time_base) / av_q2d(enc->time_base));
915  }
916 
917  delta0 = sync_ipts - ost->sync_opts;
918  delta = delta0 + duration;
919 
920  /* by default, we output a single frame */
921  nb0_frames = 0;
922  nb_frames = 1;
923 
924  format_video_sync = video_sync_method;
925  if (format_video_sync == VSYNC_AUTO) {
926  if(!strcmp(s->oformat->name, "avi")) {
927  format_video_sync = VSYNC_VFR;
928  } else
930  if ( ist
931  && format_video_sync == VSYNC_CFR
932  && input_files[ist->file_index]->ctx->nb_streams == 1
933  && input_files[ist->file_index]->input_ts_offset == 0) {
934  format_video_sync = VSYNC_VSCFR;
935  }
936  if (format_video_sync == VSYNC_CFR && copy_ts) {
937  format_video_sync = VSYNC_VSCFR;
938  }
939  }
940 
941  if (delta0 < 0 &&
942  delta > 0 &&
943  format_video_sync != VSYNC_PASSTHROUGH &&
944  format_video_sync != VSYNC_DROP) {
945  double cor = FFMIN(-delta0, duration);
946  if (delta0 < -0.6) {
947  av_log(NULL, AV_LOG_WARNING, "Past duration %f too large\n", -delta0);
948  } else
949  av_log(NULL, AV_LOG_DEBUG, "Cliping frame in rate conversion by %f\n", -delta0);
950  sync_ipts += cor;
951  duration -= cor;
952  delta0 += cor;
953  }
954 
955  switch (format_video_sync) {
956  case VSYNC_VSCFR:
957  if (ost->frame_number == 0 && delta - duration >= 0.5) {
958  av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta - duration));
959  delta = duration;
960  delta0 = 0;
961  ost->sync_opts = lrint(sync_ipts);
962  }
963  case VSYNC_CFR:
964  // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
965  if (frame_drop_threshold && delta < frame_drop_threshold && ost->frame_number) {
966  nb_frames = 0;
967  } else if (delta < -1.1)
968  nb_frames = 0;
969  else if (delta > 1.1) {
970  nb_frames = lrintf(delta);
971  if (delta0 > 1.1)
972  nb0_frames = lrintf(delta0 - 0.6);
973  }
974  break;
975  case VSYNC_VFR:
976  if (delta <= -0.6)
977  nb_frames = 0;
978  else if (delta > 0.6)
979  ost->sync_opts = lrint(sync_ipts);
980  break;
981  case VSYNC_DROP:
982  case VSYNC_PASSTHROUGH:
983  ost->sync_opts = lrint(sync_ipts);
984  break;
985  default:
986  av_assert0(0);
987  }
988 
989  nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
990  nb0_frames = FFMIN(nb0_frames, nb_frames);
991  if (nb0_frames == 0 && ost->last_droped) {
992  nb_frames_drop++;
994  "*** dropping frame %d from stream %d at ts %"PRId64"\n",
995  ost->frame_number, ost->st->index, ost->last_frame->pts);
996  }
997  if (nb_frames > (nb0_frames && ost->last_droped) + (nb_frames > nb0_frames)) {
998  if (nb_frames > dts_error_threshold * 30) {
999  av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
1000  nb_frames_drop++;
1001  return;
1002  }
1003  nb_frames_dup += nb_frames - (nb0_frames && ost->last_droped) - (nb_frames > nb0_frames);
1004  av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
1005  }
1006  ost->last_droped = nb_frames == nb0_frames;
1007 
1008  /* duplicates frame if needed */
1009  for (i = 0; i < nb_frames; i++) {
1010  AVFrame *in_picture;
1011  av_init_packet(&pkt);
1012  pkt.data = NULL;
1013  pkt.size = 0;
1014 
1015  if (i < nb0_frames && ost->last_frame) {
1016  in_picture = ost->last_frame;
1017  } else
1018  in_picture = next_picture;
1019 
1020  in_picture->pts = ost->sync_opts;
1021 
1022 #if 1
1023  if (!check_recording_time(ost))
1024 #else
1025  if (ost->frame_number >= ost->max_frames)
1026 #endif
1027  return;
1028 
1029  if (s->oformat->flags & AVFMT_RAWPICTURE &&
1030  enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
1031  /* raw pictures are written as AVPicture structure to
1032  avoid any copies. We support temporarily the older
1033  method. */
1034  if (in_picture->interlaced_frame)
1035  mux_enc->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
1036  else
1037  mux_enc->field_order = AV_FIELD_PROGRESSIVE;
1038  pkt.data = (uint8_t *)in_picture;
1039  pkt.size = sizeof(AVPicture);
1040  pkt.pts = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
1041  pkt.flags |= AV_PKT_FLAG_KEY;
1042 
1043  write_frame(s, &pkt, ost);
1044  } else {
1045  int got_packet, forced_keyframe = 0;
1046  double pts_time;
1047 
1049  ost->top_field_first >= 0)
1050  in_picture->top_field_first = !!ost->top_field_first;
1051 
1052  if (in_picture->interlaced_frame) {
1053  if (enc->codec->id == AV_CODEC_ID_MJPEG)
1054  mux_enc->field_order = in_picture->top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
1055  else
1056  mux_enc->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
1057  } else
1058  mux_enc->field_order = AV_FIELD_PROGRESSIVE;
1059 
1060  in_picture->quality = enc->global_quality;
1061  in_picture->pict_type = 0;
1062 
1063  pts_time = in_picture->pts != AV_NOPTS_VALUE ?
1064  in_picture->pts * av_q2d(enc->time_base) : NAN;
1065  if (ost->forced_kf_index < ost->forced_kf_count &&
1066  in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
1067  ost->forced_kf_index++;
1068  forced_keyframe = 1;
1069  } else if (ost->forced_keyframes_pexpr) {
1070  double res;
1071  ost->forced_keyframes_expr_const_values[FKF_T] = pts_time;
1074  av_dlog(NULL, "force_key_frame: n:%f n_forced:%f prev_forced_n:%f t:%f prev_forced_t:%f -> res:%f\n",
1080  res);
1081  if (res) {
1082  forced_keyframe = 1;
1088  }
1089 
1091  }
1092 
1093  if (forced_keyframe) {
1094  in_picture->pict_type = AV_PICTURE_TYPE_I;
1095  av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time %f\n", pts_time);
1096  }
1097 
1099  if (debug_ts) {
1100  av_log(NULL, AV_LOG_INFO, "encoder <- type:video "
1101  "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
1102  av_ts2str(in_picture->pts), av_ts2timestr(in_picture->pts, &enc->time_base),
1103  enc->time_base.num, enc->time_base.den);
1104  }
1105 
1106  ost->frames_encoded++;
1107 
1108  ret = avcodec_encode_video2(enc, &pkt, in_picture, &got_packet);
1109  update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
1110  if (ret < 0) {
1111  av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
1112  exit_program(1);
1113  }
1114 
1115  if (got_packet) {
1116  if (debug_ts) {
1117  av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
1118  "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1119  av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &enc->time_base),
1120  av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &enc->time_base));
1121  }
1122 
1123  if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
1124  pkt.pts = ost->sync_opts;
1125 
1126  av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
1127 
1128  if (debug_ts) {
1129  av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
1130  "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1131  av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
1132  av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
1133  }
1134 
1135  frame_size = pkt.size;
1136  write_frame(s, &pkt, ost);
1137 
1138  /* if two pass, output log */
1139  if (ost->logfile && enc->stats_out) {
1140  fprintf(ost->logfile, "%s", enc->stats_out);
1141  }
1142  }
1143  }
1144  ost->sync_opts++;
1145  /*
1146  * For video, number of frames in == number of packets out.
1147  * But there may be reordering, so we can't throw away frames on encoder
1148  * flush, we need to limit them here, before they go into encoder.
1149  */
1150  ost->frame_number++;
1151 
1152  if (vstats_filename && frame_size)
1153  do_video_stats(ost, frame_size);
1154  }
1155 
1156  if (!ost->last_frame)
1157  ost->last_frame = av_frame_alloc();
1158  av_frame_unref(ost->last_frame);
1159  av_frame_ref(ost->last_frame, next_picture);
1160 }
1161 
1162 static double psnr(double d)
1163 {
1164  return -10.0 * log(d) / log(10.0);
1165 }
1166 
1168 {
1169  AVCodecContext *enc;
1170  int frame_number;
1171  double ti1, bitrate, avg_bitrate;
1172 
1173  /* this is executed just the first time do_video_stats is called */
1174  if (!vstats_file) {
1175  vstats_file = fopen(vstats_filename, "w");
1176  if (!vstats_file) {
1177  perror("fopen");
1178  exit_program(1);
1179  }
1180  }
1181 
1182  enc = ost->enc_ctx;
1183  if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1184  frame_number = ost->st->nb_frames;
1185  fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame ? enc->coded_frame->quality / (float)FF_QP2LAMBDA : 0);
1186  if (enc->coded_frame && (enc->flags&CODEC_FLAG_PSNR))
1187  fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
1188 
1189  fprintf(vstats_file,"f_size= %6d ", frame_size);
1190  /* compute pts value */
1191  ti1 = av_stream_get_end_pts(ost->st) * av_q2d(ost->st->time_base);
1192  if (ti1 < 0.01)
1193  ti1 = 0.01;
1194 
1195  bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
1196  avg_bitrate = (double)(ost->data_size * 8) / ti1 / 1000.0;
1197  fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
1198  (double)ost->data_size / 1024, ti1, bitrate, avg_bitrate);
1199  fprintf(vstats_file, "type= %c\n", enc->coded_frame ? av_get_picture_type_char(enc->coded_frame->pict_type) : 'I');
1200  }
1201 }
1202 
1204 {
1205  OutputFile *of = output_files[ost->file_index];
1206  int i;
1207 
1209 
1210  if (of->shortest) {
1211  for (i = 0; i < of->ctx->nb_streams; i++)
1212  output_streams[of->ost_index + i]->finished = ENCODER_FINISHED | MUXER_FINISHED;
1213  }
1214 }
1215 
1216 /**
1217  * Get and encode new output from any of the filtergraphs, without causing
1218  * activity.
1219  *
1220  * @return 0 for success, <0 for severe errors
1221  */
1222 static int reap_filters(void)
1223 {
1224  AVFrame *filtered_frame = NULL;
1225  int i;
1226 
1227  /* Reap all buffers present in the buffer sinks */
1228  for (i = 0; i < nb_output_streams; i++) {
1229  OutputStream *ost = output_streams[i];
1230  OutputFile *of = output_files[ost->file_index];
1232  AVCodecContext *enc = ost->enc_ctx;
1233  int ret = 0;
1234 
1235  if (!ost->filter)
1236  continue;
1237  filter = ost->filter->filter;
1238 
1239  if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
1240  return AVERROR(ENOMEM);
1241  }
1242  filtered_frame = ost->filtered_frame;
1243 
1244  while (1) {
1245  double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precision
1246  ret = av_buffersink_get_frame_flags(filter, filtered_frame,
1248  if (ret < 0) {
1249  if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
1251  "Error in av_buffersink_get_frame_flags(): %s\n", av_err2str(ret));
1252  }
1253  break;
1254  }
1255  if (ost->finished) {
1256  av_frame_unref(filtered_frame);
1257  continue;
1258  }
1259  if (filtered_frame->pts != AV_NOPTS_VALUE) {
1260  int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1261  AVRational tb = enc->time_base;
1262  int extra_bits = av_clip(29 - av_log2(tb.den), 0, 16);
1263 
1264  tb.den <<= extra_bits;
1265  float_pts =
1266  av_rescale_q(filtered_frame->pts, filter->inputs[0]->time_base, tb) -
1267  av_rescale_q(start_time, AV_TIME_BASE_Q, tb);
1268  float_pts /= 1 << extra_bits;
1269  // avoid exact midoints to reduce the chance of rounding differences, this can be removed in case the fps code is changed to work with integers
1270  float_pts += FFSIGN(float_pts) * 1.0 / (1<<17);
1271 
1272  filtered_frame->pts =
1273  av_rescale_q(filtered_frame->pts, filter->inputs[0]->time_base, enc->time_base) -
1274  av_rescale_q(start_time, AV_TIME_BASE_Q, enc->time_base);
1275  }
1276  //if (ost->source_index >= 0)
1277  // *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
1278 
1279  switch (filter->inputs[0]->type) {
1280  case AVMEDIA_TYPE_VIDEO:
1281  if (!ost->frame_aspect_ratio.num)
1282  enc->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
1283 
1284  if (debug_ts) {
1285  av_log(NULL, AV_LOG_INFO, "filter -> pts:%s pts_time:%s exact:%f time_base:%d/%d\n",
1286  av_ts2str(filtered_frame->pts), av_ts2timestr(filtered_frame->pts, &enc->time_base),
1287  float_pts,
1288  enc->time_base.num, enc->time_base.den);
1289  }
1290 
1291  do_video_out(of->ctx, ost, filtered_frame, float_pts);
1292  break;
1293  case AVMEDIA_TYPE_AUDIO:
1294  if (!(enc->codec->capabilities & CODEC_CAP_PARAM_CHANGE) &&
1295  enc->channels != av_frame_get_channels(filtered_frame)) {
1297  "Audio filter graph output is not normalized and encoder does not support parameter changes\n");
1298  break;
1299  }
1300  do_audio_out(of->ctx, ost, filtered_frame);
1301  break;
1302  default:
1303  // TODO support subtitle filters
1304  av_assert0(0);
1305  }
1306 
1307  av_frame_unref(filtered_frame);
1308  }
1309  }
1310 
1311  return 0;
1312 }
1313 
1314 static void print_final_stats(int64_t total_size)
1315 {
1316  uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0;
1317  uint64_t subtitle_size = 0;
1318  uint64_t data_size = 0;
1319  float percent = -1.0;
1320  int i, j;
1321 
1322  for (i = 0; i < nb_output_streams; i++) {
1323  OutputStream *ost = output_streams[i];
1324  switch (ost->enc_ctx->codec_type) {
1325  case AVMEDIA_TYPE_VIDEO: video_size += ost->data_size; break;
1326  case AVMEDIA_TYPE_AUDIO: audio_size += ost->data_size; break;
1327  case AVMEDIA_TYPE_SUBTITLE: subtitle_size += ost->data_size; break;
1328  default: other_size += ost->data_size; break;
1329  }
1330  extra_size += ost->enc_ctx->extradata_size;
1331  data_size += ost->data_size;
1332  }
1333 
1334  if (data_size && total_size>0 && total_size >= data_size)
1335  percent = 100.0 * (total_size - data_size) / data_size;
1336 
1337  av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0fkB other streams:%1.0fkB global headers:%1.0fkB muxing overhead: ",
1338  video_size / 1024.0,
1339  audio_size / 1024.0,
1340  subtitle_size / 1024.0,
1341  other_size / 1024.0,
1342  extra_size / 1024.0);
1343  if (percent >= 0.0)
1344  av_log(NULL, AV_LOG_INFO, "%f%%", percent);
1345  else
1346  av_log(NULL, AV_LOG_INFO, "unknown");
1347  av_log(NULL, AV_LOG_INFO, "\n");
1348 
1349  /* print verbose per-stream stats */
1350  for (i = 0; i < nb_input_files; i++) {
1351  InputFile *f = input_files[i];
1352  uint64_t total_packets = 0, total_size = 0;
1353 
1354  av_log(NULL, AV_LOG_VERBOSE, "Input file #%d (%s):\n",
1355  i, f->ctx->filename);
1356 
1357  for (j = 0; j < f->nb_streams; j++) {
1358  InputStream *ist = input_streams[f->ist_index + j];
1359  enum AVMediaType type = ist->dec_ctx->codec_type;
1360 
1361  total_size += ist->data_size;
1362  total_packets += ist->nb_packets;
1363 
1364  av_log(NULL, AV_LOG_VERBOSE, " Input stream #%d:%d (%s): ",
1365  i, j, media_type_string(type));
1366  av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets read (%"PRIu64" bytes); ",
1367  ist->nb_packets, ist->data_size);
1368 
1369  if (ist->decoding_needed) {
1370  av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
1371  ist->frames_decoded);
1372  if (type == AVMEDIA_TYPE_AUDIO)
1373  av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
1374  av_log(NULL, AV_LOG_VERBOSE, "; ");
1375  }
1376 
1377  av_log(NULL, AV_LOG_VERBOSE, "\n");
1378  }
1379 
1380  av_log(NULL, AV_LOG_VERBOSE, " Total: %"PRIu64" packets (%"PRIu64" bytes) demuxed\n",
1381  total_packets, total_size);
1382  }
1383 
1384  for (i = 0; i < nb_output_files; i++) {
1385  OutputFile *of = output_files[i];
1386  uint64_t total_packets = 0, total_size = 0;
1387 
1388  av_log(NULL, AV_LOG_VERBOSE, "Output file #%d (%s):\n",
1389  i, of->ctx->filename);
1390 
1391  for (j = 0; j < of->ctx->nb_streams; j++) {
1392  OutputStream *ost = output_streams[of->ost_index + j];
1393  enum AVMediaType type = ost->enc_ctx->codec_type;
1394 
1395  total_size += ost->data_size;
1396  total_packets += ost->packets_written;
1397 
1398  av_log(NULL, AV_LOG_VERBOSE, " Output stream #%d:%d (%s): ",
1399  i, j, media_type_string(type));
1400  if (ost->encoding_needed) {
1401  av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames encoded",
1402  ost->frames_encoded);
1403  if (type == AVMEDIA_TYPE_AUDIO)
1404  av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ost->samples_encoded);
1405  av_log(NULL, AV_LOG_VERBOSE, "; ");
1406  }
1407 
1408  av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets muxed (%"PRIu64" bytes); ",
1409  ost->packets_written, ost->data_size);
1410 
1411  av_log(NULL, AV_LOG_VERBOSE, "\n");
1412  }
1413 
1414  av_log(NULL, AV_LOG_VERBOSE, " Total: %"PRIu64" packets (%"PRIu64" bytes) muxed\n",
1415  total_packets, total_size);
1416  }
1417  if(video_size + data_size + audio_size + subtitle_size + extra_size == 0){
1418  av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
1419  }
1420 }
1421 
1422 static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1423 {
1424  char buf[1024];
1425  AVBPrint buf_script;
1426  OutputStream *ost;
1427  AVFormatContext *oc;
1428  int64_t total_size;
1429  AVCodecContext *enc;
1430  int frame_number, vid, i;
1431  double bitrate;
1432  int64_t pts = INT64_MIN;
1433  static int64_t last_time = -1;
1434  static int qp_histogram[52];
1435  int hours, mins, secs, us;
1436 
1437  if (!print_stats && !is_last_report && !progress_avio)
1438  return;
1439 
1440  if (!is_last_report) {
1441  if (last_time == -1) {
1442  last_time = cur_time;
1443  return;
1444  }
1445  if ((cur_time - last_time) < 500000)
1446  return;
1447  last_time = cur_time;
1448  }
1449 
1450 
1451  oc = output_files[0]->ctx;
1452 
1453  total_size = avio_size(oc->pb);
1454  if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
1455  total_size = avio_tell(oc->pb);
1456 
1457  buf[0] = '\0';
1458  vid = 0;
1459  av_bprint_init(&buf_script, 0, 1);
1460  for (i = 0; i < nb_output_streams; i++) {
1461  float q = -1;
1462  ost = output_streams[i];
1463  enc = ost->enc_ctx;
1464  if (!ost->stream_copy && enc->coded_frame)
1465  q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
1466  if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1467  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
1468  av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1469  ost->file_index, ost->index, q);
1470  }
1471  if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1472  float fps, t = (cur_time-timer_start) / 1000000.0;
1473 
1474  frame_number = ost->frame_number;
1475  fps = t > 1 ? frame_number / t : 0;
1476  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
1477  frame_number, fps < 9.95, fps, q);
1478  av_bprintf(&buf_script, "frame=%d\n", frame_number);
1479  av_bprintf(&buf_script, "fps=%.1f\n", fps);
1480  av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
1481  ost->file_index, ost->index, q);
1482  if (is_last_report)
1483  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
1484  if (qp_hist) {
1485  int j;
1486  int qp = lrintf(q);
1487  if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1488  qp_histogram[qp]++;
1489  for (j = 0; j < 32; j++)
1490  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
1491  }
1492  if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
1493  int j;
1494  double error, error_sum = 0;
1495  double scale, scale_sum = 0;
1496  double p;
1497  char type[3] = { 'Y','U','V' };
1498  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
1499  for (j = 0; j < 3; j++) {
1500  if (is_last_report) {
1501  error = enc->error[j];
1502  scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
1503  } else {
1504  error = enc->coded_frame->error[j];
1505  scale = enc->width * enc->height * 255.0 * 255.0;
1506  }
1507  if (j)
1508  scale /= 4;
1509  error_sum += error;
1510  scale_sum += scale;
1511  p = psnr(error / scale);
1512  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
1513  av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1514  ost->file_index, ost->index, type[j] | 32, p);
1515  }
1516  p = psnr(error_sum / scale_sum);
1517  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
1518  av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
1519  ost->file_index, ost->index, p);
1520  }
1521  vid = 1;
1522  }
1523  /* compute min output value */
1525  pts = FFMAX(pts, av_rescale_q(av_stream_get_end_pts(ost->st),
1526  ost->st->time_base, AV_TIME_BASE_Q));
1527  if (is_last_report)
1528  nb_frames_drop += ost->last_droped;
1529  }
1530 
1531  secs = FFABS(pts) / AV_TIME_BASE;
1532  us = FFABS(pts) % AV_TIME_BASE;
1533  mins = secs / 60;
1534  secs %= 60;
1535  hours = mins / 60;
1536  mins %= 60;
1537 
1538  bitrate = pts && total_size >= 0 ? total_size * 8 / (pts / 1000.0) : -1;
1539 
1540  if (total_size < 0) snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1541  "size=N/A time=");
1542  else snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1543  "size=%8.0fkB time=", total_size / 1024.0);
1544  if (pts < 0)
1545  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "-");
1546  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1547  "%02d:%02d:%02d.%02d ", hours, mins, secs,
1548  (100 * us) / AV_TIME_BASE);
1549 
1550  if (bitrate < 0) {
1551  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),"bitrate=N/A");
1552  av_bprintf(&buf_script, "bitrate=N/A\n");
1553  }else{
1554  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),"bitrate=%6.1fkbits/s", bitrate);
1555  av_bprintf(&buf_script, "bitrate=%6.1fkbits/s\n", bitrate);
1556  }
1557 
1558  if (total_size < 0) av_bprintf(&buf_script, "total_size=N/A\n");
1559  else av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1560  av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
1561  av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
1562  hours, mins, secs, us);
1563 
1565  snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
1567  av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
1568  av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1569 
1570  if (print_stats || is_last_report) {
1571  const char end = is_last_report ? '\n' : '\r';
1572  if (print_stats==1 && AV_LOG_INFO > av_log_get_level()) {
1573  fprintf(stderr, "%s %c", buf, end);
1574  } else
1575  av_log(NULL, AV_LOG_INFO, "%s %c", buf, end);
1576 
1577  fflush(stderr);
1578  }
1579 
1580  if (progress_avio) {
1581  av_bprintf(&buf_script, "progress=%s\n",
1582  is_last_report ? "end" : "continue");
1583  avio_write(progress_avio, buf_script.str,
1584  FFMIN(buf_script.len, buf_script.size - 1));
1585  avio_flush(progress_avio);
1586  av_bprint_finalize(&buf_script, NULL);
1587  if (is_last_report) {
1588  avio_closep(&progress_avio);
1589  }
1590  }
1591 
1592  if (is_last_report)
1593  print_final_stats(total_size);
1594 }
1595 
1596 static void flush_encoders(void)
1597 {
1598  int i, ret;
1599 
1600  for (i = 0; i < nb_output_streams; i++) {
1601  OutputStream *ost = output_streams[i];
1602  AVCodecContext *enc = ost->enc_ctx;
1603  AVFormatContext *os = output_files[ost->file_index]->ctx;
1604  int stop_encoding = 0;
1605 
1606  if (!ost->encoding_needed)
1607  continue;
1608 
1609  if (enc->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1610  continue;
1612  continue;
1613 
1614  for (;;) {
1615  int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
1616  const char *desc;
1617 
1618  switch (enc->codec_type) {
1619  case AVMEDIA_TYPE_AUDIO:
1620  encode = avcodec_encode_audio2;
1621  desc = "Audio";
1622  break;
1623  case AVMEDIA_TYPE_VIDEO:
1624  encode = avcodec_encode_video2;
1625  desc = "Video";
1626  break;
1627  default:
1628  stop_encoding = 1;
1629  }
1630 
1631  if (encode) {
1632  AVPacket pkt;
1633  int pkt_size;
1634  int got_packet;
1635  av_init_packet(&pkt);
1636  pkt.data = NULL;
1637  pkt.size = 0;
1638 
1640  ret = encode(enc, &pkt, NULL, &got_packet);
1641  update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
1642  if (ret < 0) {
1643  av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
1644  exit_program(1);
1645  }
1646  if (ost->logfile && enc->stats_out) {
1647  fprintf(ost->logfile, "%s", enc->stats_out);
1648  }
1649  if (!got_packet) {
1650  stop_encoding = 1;
1651  break;
1652  }
1653  if (ost->finished & MUXER_FINISHED) {
1654  av_free_packet(&pkt);
1655  continue;
1656  }
1657  av_packet_rescale_ts(&pkt, enc->time_base, ost->st->time_base);
1658  pkt_size = pkt.size;
1659  write_frame(os, &pkt, ost);
1661  do_video_stats(ost, pkt_size);
1662  }
1663  }
1664 
1665  if (stop_encoding)
1666  break;
1667  }
1668  }
1669 }
1670 
1671 /*
1672  * Check whether a packet from ist should be written into ost at this time
1673  */
1675 {
1676  OutputFile *of = output_files[ost->file_index];
1677  int ist_index = input_files[ist->file_index]->ist_index + ist->st->index;
1678 
1679  if (ost->source_index != ist_index)
1680  return 0;
1681 
1682  if (ost->finished)
1683  return 0;
1684 
1685  if (of->start_time != AV_NOPTS_VALUE && ist->pts < of->start_time)
1686  return 0;
1687 
1688  return 1;
1689 }
1690 
1691 static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
1692 {
1693  OutputFile *of = output_files[ost->file_index];
1694  InputFile *f = input_files [ist->file_index];
1695  int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1696  int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base);
1697  int64_t ist_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ist->st->time_base);
1698  AVPicture pict;
1699  AVPacket opkt;
1700 
1701  av_init_packet(&opkt);
1702 
1703  if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
1705  return;
1706 
1707  if (pkt->pts == AV_NOPTS_VALUE) {
1708  if (!ost->frame_number && ist->pts < start_time &&
1709  !ost->copy_prior_start)
1710  return;
1711  } else {
1712  if (!ost->frame_number && pkt->pts < ist_tb_start_time &&
1713  !ost->copy_prior_start)
1714  return;
1715  }
1716 
1717  if (of->recording_time != INT64_MAX &&
1718  ist->pts >= of->recording_time + start_time) {
1719  close_output_stream(ost);
1720  return;
1721  }
1722 
1723  if (f->recording_time != INT64_MAX) {
1724  start_time = f->ctx->start_time;
1725  if (f->start_time != AV_NOPTS_VALUE)
1726  start_time += f->start_time;
1727  if (ist->pts >= f->recording_time + start_time) {
1728  close_output_stream(ost);
1729  return;
1730  }
1731  }
1732 
1733  /* force the input stream PTS */
1734  if (ost->enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
1735  ost->sync_opts++;
1736 
1737  if (pkt->pts != AV_NOPTS_VALUE)
1738  opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
1739  else
1740  opkt.pts = AV_NOPTS_VALUE;
1741 
1742  if (pkt->dts == AV_NOPTS_VALUE)
1743  opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
1744  else
1745  opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1746  opkt.dts -= ost_tb_start_time;
1747 
1748  if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
1750  if(!duration)
1751  duration = ist->dec_ctx->frame_size;
1752  opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
1754  ost->st->time_base) - ost_tb_start_time;
1755  }
1756 
1757  opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1758  opkt.flags = pkt->flags;
1759 
1760  // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
1761  if ( ost->enc_ctx->codec_id != AV_CODEC_ID_H264
1762  && ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG1VIDEO
1763  && ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG2VIDEO
1764  && ost->enc_ctx->codec_id != AV_CODEC_ID_VC1
1765  ) {
1766  if (av_parser_change(ost->parser, ost->st->codec,
1767  &opkt.data, &opkt.size,
1768  pkt->data, pkt->size,
1769  pkt->flags & AV_PKT_FLAG_KEY)) {
1770  opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
1771  if (!opkt.buf)
1772  exit_program(1);
1773  }
1774  } else {
1775  opkt.data = pkt->data;
1776  opkt.size = pkt->size;
1777  }
1778  av_copy_packet_side_data(&opkt, pkt);
1779 
1780  if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
1781  /* store AVPicture in AVPacket, as expected by the output format */
1782  avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
1783  opkt.data = (uint8_t *)&pict;
1784  opkt.size = sizeof(AVPicture);
1785  opkt.flags |= AV_PKT_FLAG_KEY;
1786  }
1787 
1788  write_frame(of->ctx, &opkt, ost);
1789 }
1790 
1792 {
1793  AVCodecContext *dec = ist->dec_ctx;
1794 
1795  if (!dec->channel_layout) {
1796  char layout_name[256];
1797 
1798  if (dec->channels > ist->guess_layout_max)
1799  return 0;
1801  if (!dec->channel_layout)
1802  return 0;
1803  av_get_channel_layout_string(layout_name, sizeof(layout_name),
1804  dec->channels, dec->channel_layout);
1805  av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
1806  "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
1807  }
1808  return 1;
1809 }
1810 
1811 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
1812 {
1813  AVFrame *decoded_frame, *f;
1814  AVCodecContext *avctx = ist->dec_ctx;
1815  int i, ret, err = 0, resample_changed;
1816  AVRational decoded_frame_tb;
1817 
1818  if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1819  return AVERROR(ENOMEM);
1820  if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1821  return AVERROR(ENOMEM);
1822  decoded_frame = ist->decoded_frame;
1823 
1825  ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1826  update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
1827 
1828  if (ret >= 0 && avctx->sample_rate <= 0) {
1829  av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
1830  ret = AVERROR_INVALIDDATA;
1831  }
1832 
1833  if (*got_output || ret<0 || pkt->size)
1834  decode_error_stat[ret<0] ++;
1835 
1836  if (!*got_output || ret < 0) {
1837  if (!pkt->size) {
1838  for (i = 0; i < ist->nb_filters; i++)
1839 #if 1
1840  av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
1841 #else
1843 #endif
1844  }
1845  return ret;
1846  }
1847 
1848  ist->samples_decoded += decoded_frame->nb_samples;
1849  ist->frames_decoded++;
1850 
1851 #if 1
1852  /* increment next_dts to use for the case where the input stream does not
1853  have timestamps or there are multiple frames in the packet */
1854  ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1855  avctx->sample_rate;
1856  ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1857  avctx->sample_rate;
1858 #endif
1859 
1860  resample_changed = ist->resample_sample_fmt != decoded_frame->format ||
1861  ist->resample_channels != avctx->channels ||
1862  ist->resample_channel_layout != decoded_frame->channel_layout ||
1863  ist->resample_sample_rate != decoded_frame->sample_rate;
1864  if (resample_changed) {
1865  char layout1[64], layout2[64];
1866 
1867  if (!guess_input_channel_layout(ist)) {
1868  av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
1869  "layout for Input Stream #%d.%d\n", ist->file_index,
1870  ist->st->index);
1871  exit_program(1);
1872  }
1873  decoded_frame->channel_layout = avctx->channel_layout;
1874 
1875  av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
1877  av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
1878  decoded_frame->channel_layout);
1879 
1881  "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",
1882  ist->file_index, ist->st->index,
1884  ist->resample_channels, layout1,
1885  decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
1886  avctx->channels, layout2);
1887 
1888  ist->resample_sample_fmt = decoded_frame->format;
1889  ist->resample_sample_rate = decoded_frame->sample_rate;
1890  ist->resample_channel_layout = decoded_frame->channel_layout;
1891  ist->resample_channels = avctx->channels;
1892 
1893  for (i = 0; i < nb_filtergraphs; i++)
1894  if (ist_in_filtergraph(filtergraphs[i], ist)) {
1895  FilterGraph *fg = filtergraphs[i];
1896  if (configure_filtergraph(fg) < 0) {
1897  av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
1898  exit_program(1);
1899  }
1900  }
1901  }
1902 
1903  /* if the decoder provides a pts, use it instead of the last packet pts.
1904  the decoder could be delaying output by a packet or more. */
1905  if (decoded_frame->pts != AV_NOPTS_VALUE) {
1906  ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
1907  decoded_frame_tb = avctx->time_base;
1908  } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
1909  decoded_frame->pts = decoded_frame->pkt_pts;
1910  decoded_frame_tb = ist->st->time_base;
1911  } else if (pkt->pts != AV_NOPTS_VALUE) {
1912  decoded_frame->pts = pkt->pts;
1913  decoded_frame_tb = ist->st->time_base;
1914  }else {
1915  decoded_frame->pts = ist->dts;
1916  decoded_frame_tb = AV_TIME_BASE_Q;
1917  }
1918  pkt->pts = AV_NOPTS_VALUE;
1919  if (decoded_frame->pts != AV_NOPTS_VALUE)
1920  decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
1921  (AVRational){1, avctx->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
1922  (AVRational){1, avctx->sample_rate});
1923  for (i = 0; i < ist->nb_filters; i++) {
1924  if (i < ist->nb_filters - 1) {
1925  f = ist->filter_frame;
1926  err = av_frame_ref(f, decoded_frame);
1927  if (err < 0)
1928  break;
1929  } else
1930  f = decoded_frame;
1931  err = av_buffersrc_add_frame_flags(ist->filters[i]->filter, f,
1933  if (err == AVERROR_EOF)
1934  err = 0; /* ignore */
1935  if (err < 0)
1936  break;
1937  }
1938  decoded_frame->pts = AV_NOPTS_VALUE;
1939 
1940  av_frame_unref(ist->filter_frame);
1941  av_frame_unref(decoded_frame);
1942  return err < 0 ? err : ret;
1943 }
1944 
1945 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
1946 {
1947  AVFrame *decoded_frame, *f;
1948  int i, ret = 0, err = 0, resample_changed;
1949  int64_t best_effort_timestamp;
1950  AVRational *frame_sample_aspect;
1951 
1952  if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
1953  return AVERROR(ENOMEM);
1954  if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
1955  return AVERROR(ENOMEM);
1956  decoded_frame = ist->decoded_frame;
1957  pkt->dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
1958 
1960  ret = avcodec_decode_video2(ist->dec_ctx,
1961  decoded_frame, got_output, pkt);
1962  update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
1963 
1964  // The following line may be required in some cases where there is no parser
1965  // or the parser does not has_b_frames correctly
1966  if (ist->st->codec->has_b_frames < ist->dec_ctx->has_b_frames) {
1967  if (ist->dec_ctx->codec_id == AV_CODEC_ID_H264) {
1968  ist->st->codec->has_b_frames = ist->dec_ctx->has_b_frames;
1969  } else
1971  ist->dec_ctx,
1972  "has_b_frames is larger in decoder than demuxer %d > %d ",
1973  ist->dec_ctx->has_b_frames,
1974  ist->st->codec->has_b_frames
1975  );
1976  }
1977 
1978  if (*got_output || ret<0 || pkt->size)
1979  decode_error_stat[ret<0] ++;
1980 
1981  if (*got_output && ret >= 0) {
1982  if (ist->dec_ctx->width != decoded_frame->width ||
1983  ist->dec_ctx->height != decoded_frame->height ||
1984  ist->dec_ctx->pix_fmt != decoded_frame->format) {
1985  av_log(NULL, AV_LOG_DEBUG, "Frame parameters mismatch context %d,%d,%d != %d,%d,%d\n",
1986  decoded_frame->width,
1987  decoded_frame->height,
1988  decoded_frame->format,
1989  ist->dec_ctx->width,
1990  ist->dec_ctx->height,
1991  ist->dec_ctx->pix_fmt);
1992  }
1993  }
1994 
1995  if (!*got_output || ret < 0) {
1996  if (!pkt->size) {
1997  for (i = 0; i < ist->nb_filters; i++)
1998 #if 1
1999  av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
2000 #else
2002 #endif
2003  }
2004  return ret;
2005  }
2006 
2007  if(ist->top_field_first>=0)
2008  decoded_frame->top_field_first = ist->top_field_first;
2009 
2010  ist->frames_decoded++;
2011 
2012  if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) {
2013  err = ist->hwaccel_retrieve_data(ist->dec_ctx, decoded_frame);
2014  if (err < 0)
2015  goto fail;
2016  }
2017  ist->hwaccel_retrieved_pix_fmt = decoded_frame->format;
2018 
2019  best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
2020  if(best_effort_timestamp != AV_NOPTS_VALUE)
2021  ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
2022 
2023  if (debug_ts) {
2024  av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
2025  "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d time_base:%d/%d\n",
2026  ist->st->index, av_ts2str(decoded_frame->pts),
2027  av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
2028  best_effort_timestamp,
2029  av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
2030  decoded_frame->key_frame, decoded_frame->pict_type,
2031  ist->st->time_base.num, ist->st->time_base.den);
2032  }
2033 
2034  pkt->size = 0;
2035 
2036  if (ist->st->sample_aspect_ratio.num)
2037  decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
2038 
2039  resample_changed = ist->resample_width != decoded_frame->width ||
2040  ist->resample_height != decoded_frame->height ||
2041  ist->resample_pix_fmt != decoded_frame->format;
2042  if (resample_changed) {
2044  "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
2045  ist->file_index, ist->st->index,
2047  decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
2048 
2049  ist->resample_width = decoded_frame->width;
2050  ist->resample_height = decoded_frame->height;
2051  ist->resample_pix_fmt = decoded_frame->format;
2052 
2053  for (i = 0; i < nb_filtergraphs; i++) {
2054  if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
2055  configure_filtergraph(filtergraphs[i]) < 0) {
2056  av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
2057  exit_program(1);
2058  }
2059  }
2060  }
2061 
2062  frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
2063  for (i = 0; i < ist->nb_filters; i++) {
2064  if (!frame_sample_aspect->num)
2065  *frame_sample_aspect = ist->st->sample_aspect_ratio;
2066 
2067  if (i < ist->nb_filters - 1) {
2068  f = ist->filter_frame;
2069  err = av_frame_ref(f, decoded_frame);
2070  if (err < 0)
2071  break;
2072  } else
2073  f = decoded_frame;
2075  if (ret == AVERROR_EOF) {
2076  ret = 0; /* ignore */
2077  } else if (ret < 0) {
2079  "Failed to inject frame into filter network: %s\n", av_err2str(ret));
2080  exit_program(1);
2081  }
2082  }
2083 
2084 fail:
2086  av_frame_unref(decoded_frame);
2087  return err < 0 ? err : ret;
2088 }
2089 
2090 static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
2091 {
2092  AVSubtitle subtitle;
2093  int i, ret = avcodec_decode_subtitle2(ist->dec_ctx,
2094  &subtitle, got_output, pkt);
2095 
2096  if (*got_output || ret<0 || pkt->size)
2097  decode_error_stat[ret<0] ++;
2098 
2099  if (ret < 0 || !*got_output) {
2100  if (!pkt->size)
2101  sub2video_flush(ist);
2102  return ret;
2103  }
2104 
2105  if (ist->fix_sub_duration) {
2106  int end = 1;
2107  if (ist->prev_sub.got_output) {
2108  end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
2109  1000, AV_TIME_BASE);
2110  if (end < ist->prev_sub.subtitle.end_display_time) {
2111  av_log(ist->dec_ctx, AV_LOG_DEBUG,
2112  "Subtitle duration reduced from %d to %d%s\n",
2114  end <= 0 ? ", dropping it" : "");
2116  }
2117  }
2118  FFSWAP(int, *got_output, ist->prev_sub.got_output);
2119  FFSWAP(int, ret, ist->prev_sub.ret);
2120  FFSWAP(AVSubtitle, subtitle, ist->prev_sub.subtitle);
2121  if (end <= 0)
2122  goto out;
2123  }
2124 
2125  if (!*got_output)
2126  return ret;
2127 
2128  sub2video_update(ist, &subtitle);
2129 
2130  if (!subtitle.num_rects)
2131  goto out;
2132 
2133  ist->frames_decoded++;
2134 
2135  for (i = 0; i < nb_output_streams; i++) {
2136  OutputStream *ost = output_streams[i];
2137 
2138  if (!check_output_constraints(ist, ost) || !ost->encoding_needed
2139  || ost->enc->type != AVMEDIA_TYPE_SUBTITLE)
2140  continue;
2141 
2142  do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
2143  }
2144 
2145 out:
2146  avsubtitle_free(&subtitle);
2147  return ret;
2148 }
2149 
2150 /* pkt = NULL means EOF (needed to flush decoder buffers) */
2152 {
2153  int ret = 0, i;
2154  int got_output = 0;
2155 
2156  AVPacket avpkt;
2157  if (!ist->saw_first_ts) {
2158  ist->dts = ist->st->avg_frame_rate.num ? - ist->dec_ctx->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
2159  ist->pts = 0;
2160  if (pkt && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
2161  ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
2162  ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
2163  }
2164  ist->saw_first_ts = 1;
2165  }
2166 
2167  if (ist->next_dts == AV_NOPTS_VALUE)
2168  ist->next_dts = ist->dts;
2169  if (ist->next_pts == AV_NOPTS_VALUE)
2170  ist->next_pts = ist->pts;
2171 
2172  if (!pkt) {
2173  /* EOF handling */
2174  av_init_packet(&avpkt);
2175  avpkt.data = NULL;
2176  avpkt.size = 0;
2177  goto handle_eof;
2178  } else {
2179  avpkt = *pkt;
2180  }
2181 
2182  if (pkt->dts != AV_NOPTS_VALUE) {
2183  ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
2184  if (ist->dec_ctx->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
2185  ist->next_pts = ist->pts = ist->dts;
2186  }
2187 
2188  // while we have more to decode or while the decoder did output something on EOF
2189  while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
2190  int duration;
2191  handle_eof:
2192 
2193  ist->pts = ist->next_pts;
2194  ist->dts = ist->next_dts;
2195 
2196  if (avpkt.size && avpkt.size != pkt->size &&
2197  !(ist->dec->capabilities & CODEC_CAP_SUBFRAMES)) {
2199  "Multiple frames in a packet from stream %d\n", pkt->stream_index);
2200  ist->showed_multi_packet_warning = 1;
2201  }
2202 
2203  switch (ist->dec_ctx->codec_type) {
2204  case AVMEDIA_TYPE_AUDIO:
2205  ret = decode_audio (ist, &avpkt, &got_output);
2206  break;
2207  case AVMEDIA_TYPE_VIDEO:
2208  ret = decode_video (ist, &avpkt, &got_output);
2209  if (avpkt.duration) {
2210  duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
2211  } else if(ist->dec_ctx->framerate.num != 0 && ist->dec_ctx->framerate.den != 0) {
2213  duration = ((int64_t)AV_TIME_BASE *
2214  ist->dec_ctx->framerate.den * ticks) /
2216  } else
2217  duration = 0;
2218 
2219  if(ist->dts != AV_NOPTS_VALUE && duration) {
2220  ist->next_dts += duration;
2221  }else
2222  ist->next_dts = AV_NOPTS_VALUE;
2223 
2224  if (got_output)
2225  ist->next_pts += duration; //FIXME the duration is not correct in some cases
2226  break;
2227  case AVMEDIA_TYPE_SUBTITLE:
2228  ret = transcode_subtitles(ist, &avpkt, &got_output);
2229  break;
2230  default:
2231  return -1;
2232  }
2233 
2234  if (ret < 0)
2235  return ret;
2236 
2237  avpkt.dts=
2238  avpkt.pts= AV_NOPTS_VALUE;
2239 
2240  // touch data and size only if not EOF
2241  if (pkt) {
2243  ret = avpkt.size;
2244  avpkt.data += ret;
2245  avpkt.size -= ret;
2246  }
2247  if (!got_output) {
2248  continue;
2249  }
2250  if (got_output && !pkt)
2251  break;
2252  }
2253 
2254  /* handle stream copy */
2255  if (!ist->decoding_needed) {
2256  ist->dts = ist->next_dts;
2257  switch (ist->dec_ctx->codec_type) {
2258  case AVMEDIA_TYPE_AUDIO:
2259  ist->next_dts += ((int64_t)AV_TIME_BASE * ist->dec_ctx->frame_size) /
2260  ist->dec_ctx->sample_rate;
2261  break;
2262  case AVMEDIA_TYPE_VIDEO:
2263  if (ist->framerate.num) {
2264  // TODO: Remove work-around for c99-to-c89 issue 7
2265  AVRational time_base_q = AV_TIME_BASE_Q;
2266  int64_t next_dts = av_rescale_q(ist->next_dts, time_base_q, av_inv_q(ist->framerate));
2267  ist->next_dts = av_rescale_q(next_dts + 1, av_inv_q(ist->framerate), time_base_q);
2268  } else if (pkt->duration) {
2269  ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
2270  } else if(ist->dec_ctx->framerate.num != 0) {
2271  int ticks= av_stream_get_parser(ist->st) ? av_stream_get_parser(ist->st)->repeat_pict + 1 : ist->dec_ctx->ticks_per_frame;
2272  ist->next_dts += ((int64_t)AV_TIME_BASE *
2273  ist->dec_ctx->framerate.den * ticks) /
2275  }
2276  break;
2277  }
2278  ist->pts = ist->dts;
2279  ist->next_pts = ist->next_dts;
2280  }
2281  for (i = 0; pkt && i < nb_output_streams; i++) {
2282  OutputStream *ost = output_streams[i];
2283 
2284  if (!check_output_constraints(ist, ost) || ost->encoding_needed)
2285  continue;
2286 
2287  do_streamcopy(ist, ost, pkt);
2288  }
2289 
2290  return got_output;
2291 }
2292 
2293 static void print_sdp(void)
2294 {
2295  char sdp[16384];
2296  int i;
2297  int j;
2298  AVIOContext *sdp_pb;
2299  AVFormatContext **avc = av_malloc_array(nb_output_files, sizeof(*avc));
2300 
2301  if (!avc)
2302  exit_program(1);
2303  for (i = 0, j = 0; i < nb_output_files; i++) {
2304  if (!strcmp(output_files[i]->ctx->oformat->name, "rtp")) {
2305  avc[j] = output_files[i]->ctx;
2306  j++;
2307  }
2308  }
2309 
2310  av_sdp_create(avc, j, sdp, sizeof(sdp));
2311 
2312  if (!sdp_filename) {
2313  printf("SDP:\n%s\n", sdp);
2314  fflush(stdout);
2315  } else {
2316  if (avio_open2(&sdp_pb, sdp_filename, AVIO_FLAG_WRITE, &int_cb, NULL) < 0) {
2317  av_log(NULL, AV_LOG_ERROR, "Failed to open sdp file '%s'\n", sdp_filename);
2318  } else {
2319  avio_printf(sdp_pb, "SDP:\n%s", sdp);
2320  avio_closep(&sdp_pb);
2322  }
2323  }
2324 
2325  av_freep(&avc);
2326 }
2327 
2329 {
2330  int i;
2331  for (i = 0; hwaccels[i].name; i++)
2332  if (hwaccels[i].pix_fmt == pix_fmt)
2333  return &hwaccels[i];
2334  return NULL;
2335 }
2336 
2337 static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
2338 {
2339  InputStream *ist = s->opaque;
2340  const enum AVPixelFormat *p;
2341  int ret;
2342 
2343  for (p = pix_fmts; *p != -1; p++) {
2344  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p);
2345  const HWAccel *hwaccel;
2346 
2347  if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
2348  break;
2349 
2350  hwaccel = get_hwaccel(*p);
2351  if (!hwaccel ||
2352  (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) ||
2353  (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id))
2354  continue;
2355 
2356  ret = hwaccel->init(s);
2357  if (ret < 0) {
2358  if (ist->hwaccel_id == hwaccel->id) {
2360  "%s hwaccel requested for input stream #%d:%d, "
2361  "but cannot be initialized.\n", hwaccel->name,
2362  ist->file_index, ist->st->index);
2363  exit_program(1);
2364  }
2365  continue;
2366  }
2367  ist->active_hwaccel_id = hwaccel->id;
2368  ist->hwaccel_pix_fmt = *p;
2369  break;
2370  }
2371 
2372  return *p;
2373 }
2374 
2376 {
2377  InputStream *ist = s->opaque;
2378 
2379  if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt)
2380  return ist->hwaccel_get_buffer(s, frame, flags);
2381 
2382  return avcodec_default_get_buffer2(s, frame, flags);
2383 }
2384 
2385 static int init_input_stream(int ist_index, char *error, int error_len)
2386 {
2387  int ret;
2388  InputStream *ist = input_streams[ist_index];
2389 
2390  if (ist->decoding_needed) {
2391  AVCodec *codec = ist->dec;
2392  if (!codec) {
2393  snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
2394  avcodec_get_name(ist->dec_ctx->codec_id), ist->file_index, ist->st->index);
2395  return AVERROR(EINVAL);
2396  }
2397 
2398  ist->dec_ctx->opaque = ist;
2399  ist->dec_ctx->get_format = get_format;
2400  ist->dec_ctx->get_buffer2 = get_buffer;
2401  ist->dec_ctx->thread_safe_callbacks = 1;
2402 
2403  av_opt_set_int(ist->dec_ctx, "refcounted_frames", 1, 0);
2404  if (ist->dec_ctx->codec_id == AV_CODEC_ID_DVB_SUBTITLE &&
2405  (ist->decoding_needed & DECODING_FOR_OST)) {
2406  av_dict_set(&ist->decoder_opts, "compute_edt", "1", AV_DICT_DONT_OVERWRITE);
2408  av_log(NULL, AV_LOG_WARNING, "Warning using DVB subtitles for filtering and output at the same time is not fully supported, also see -compute_edt [0|1]\n");
2409  }
2410 
2411  if (!av_dict_get(ist->decoder_opts, "threads", NULL, 0))
2412  av_dict_set(&ist->decoder_opts, "threads", "auto", 0);
2413  if ((ret = avcodec_open2(ist->dec_ctx, codec, &ist->decoder_opts)) < 0) {
2414  if (ret == AVERROR_EXPERIMENTAL)
2415  abort_codec_experimental(codec, 0);
2416 
2417  snprintf(error, error_len,
2418  "Error while opening decoder for input stream "
2419  "#%d:%d : %s",
2420  ist->file_index, ist->st->index, av_err2str(ret));
2421  return ret;
2422  }
2424  }
2425 
2426  ist->next_pts = AV_NOPTS_VALUE;
2427  ist->next_dts = AV_NOPTS_VALUE;
2428 
2429  return 0;
2430 }
2431 
2433 {
2434  if (ost->source_index >= 0)
2435  return input_streams[ost->source_index];
2436  return NULL;
2437 }
2438 
2439 static int compare_int64(const void *a, const void *b)
2440 {
2441  int64_t va = *(int64_t *)a, vb = *(int64_t *)b;
2442  return va < vb ? -1 : va > vb ? +1 : 0;
2443 }
2444 
2445 static void parse_forced_key_frames(char *kf, OutputStream *ost,
2446  AVCodecContext *avctx)
2447 {
2448  char *p;
2449  int n = 1, i, size, index = 0;
2450  int64_t t, *pts;
2451 
2452  for (p = kf; *p; p++)
2453  if (*p == ',')
2454  n++;
2455  size = n;
2456  pts = av_malloc_array(size, sizeof(*pts));
2457  if (!pts) {
2458  av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
2459  exit_program(1);
2460  }
2461 
2462  p = kf;
2463  for (i = 0; i < n; i++) {
2464  char *next = strchr(p, ',');
2465 
2466  if (next)
2467  *next++ = 0;
2468 
2469  if (!memcmp(p, "chapters", 8)) {
2470 
2471  AVFormatContext *avf = output_files[ost->file_index]->ctx;
2472  int j;
2473 
2474  if (avf->nb_chapters > INT_MAX - size ||
2475  !(pts = av_realloc_f(pts, size += avf->nb_chapters - 1,
2476  sizeof(*pts)))) {
2478  "Could not allocate forced key frames array.\n");
2479  exit_program(1);
2480  }
2481  t = p[8] ? parse_time_or_die("force_key_frames", p + 8, 1) : 0;
2482  t = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2483 
2484  for (j = 0; j < avf->nb_chapters; j++) {
2485  AVChapter *c = avf->chapters[j];
2486  av_assert1(index < size);
2487  pts[index++] = av_rescale_q(c->start, c->time_base,
2488  avctx->time_base) + t;
2489  }
2490 
2491  } else {
2492 
2493  t = parse_time_or_die("force_key_frames", p, 1);
2494  av_assert1(index < size);
2495  pts[index++] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
2496 
2497  }
2498 
2499  p = next;
2500  }
2501 
2502  av_assert0(index == size);
2503  qsort(pts, size, sizeof(*pts), compare_int64);
2504  ost->forced_kf_count = size;
2505  ost->forced_kf_pts = pts;
2506 }
2507 
2508 static void report_new_stream(int input_index, AVPacket *pkt)
2509 {
2510  InputFile *file = input_files[input_index];
2511  AVStream *st = file->ctx->streams[pkt->stream_index];
2512 
2513  if (pkt->stream_index < file->nb_streams_warn)
2514  return;
2515  av_log(file->ctx, AV_LOG_WARNING,
2516  "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
2518  input_index, pkt->stream_index,
2519  pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
2520  file->nb_streams_warn = pkt->stream_index + 1;
2521 }
2522 
2524 {
2525  AVDictionaryEntry *e;
2526 
2527  uint8_t *encoder_string;
2528  int encoder_string_len;
2529  int format_flags = 0;
2530  int codec_flags = 0;
2531 
2532  if (av_dict_get(ost->st->metadata, "encoder", NULL, 0))
2533  return;
2534 
2535  e = av_dict_get(of->opts, "fflags", NULL, 0);
2536  if (e) {
2537  const AVOption *o = av_opt_find(of->ctx, "fflags", NULL, 0, 0);
2538  if (!o)
2539  return;
2540  av_opt_eval_flags(of->ctx, o, e->value, &format_flags);
2541  }
2542  e = av_dict_get(ost->encoder_opts, "flags", NULL, 0);
2543  if (e) {
2544  const AVOption *o = av_opt_find(ost->enc_ctx, "flags", NULL, 0, 0);
2545  if (!o)
2546  return;
2547  av_opt_eval_flags(ost->enc_ctx, o, e->value, &codec_flags);
2548  }
2549 
2550  encoder_string_len = sizeof(LIBAVCODEC_IDENT) + strlen(ost->enc->name) + 2;
2551  encoder_string = av_mallocz(encoder_string_len);
2552  if (!encoder_string)
2553  exit_program(1);
2554 
2555  if (!(format_flags & AVFMT_FLAG_BITEXACT) && !(codec_flags & CODEC_FLAG_BITEXACT))
2556  av_strlcpy(encoder_string, LIBAVCODEC_IDENT " ", encoder_string_len);
2557  else
2558  av_strlcpy(encoder_string, "Lavc ", encoder_string_len);
2559  av_strlcat(encoder_string, ost->enc->name, encoder_string_len);
2560  av_dict_set(&ost->st->metadata, "encoder", encoder_string,
2562 }
2563 
2564 static int transcode_init(void)
2565 {
2566  int ret = 0, i, j, k;
2567  AVFormatContext *oc;
2568  OutputStream *ost;
2569  InputStream *ist;
2570  char error[1024] = {0};
2571  int want_sdp = 1;
2572 
2573  for (i = 0; i < nb_filtergraphs; i++) {
2574  FilterGraph *fg = filtergraphs[i];
2575  for (j = 0; j < fg->nb_outputs; j++) {
2576  OutputFilter *ofilter = fg->outputs[j];
2577  if (!ofilter->ost || ofilter->ost->source_index >= 0)
2578  continue;
2579  if (fg->nb_inputs != 1)
2580  continue;
2581  for (k = nb_input_streams-1; k >= 0 ; k--)
2582  if (fg->inputs[0]->ist == input_streams[k])
2583  break;
2584  ofilter->ost->source_index = k;
2585  }
2586  }
2587 
2588  /* init framerate emulation */
2589  for (i = 0; i < nb_input_files; i++) {
2590  InputFile *ifile = input_files[i];
2591  if (ifile->rate_emu)
2592  for (j = 0; j < ifile->nb_streams; j++)
2593  input_streams[j + ifile->ist_index]->start = av_gettime_relative();
2594  }
2595 
2596  /* output stream init */
2597  for (i = 0; i < nb_output_files; i++) {
2598  oc = output_files[i]->ctx;
2599  if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
2600  av_dump_format(oc, i, oc->filename, 1);
2601  av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
2602  return AVERROR(EINVAL);
2603  }
2604  }
2605 
2606  /* init complex filtergraphs */
2607  for (i = 0; i < nb_filtergraphs; i++)
2608  if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
2609  return ret;
2610 
2611  /* for each output stream, we compute the right encoding parameters */
2612  for (i = 0; i < nb_output_streams; i++) {
2613  AVCodecContext *enc_ctx;
2615  ost = output_streams[i];
2616  oc = output_files[ost->file_index]->ctx;
2617  ist = get_input_stream(ost);
2618 
2619  if (ost->attachment_filename)
2620  continue;
2621 
2622  enc_ctx = ost->enc_ctx;
2623 
2624  if (ist) {
2625  dec_ctx = ist->dec_ctx;
2626 
2627  ost->st->disposition = ist->st->disposition;
2628  enc_ctx->bits_per_raw_sample = dec_ctx->bits_per_raw_sample;
2629  enc_ctx->chroma_sample_location = dec_ctx->chroma_sample_location;
2630  } else {
2631  for (j=0; j<oc->nb_streams; j++) {
2632  AVStream *st = oc->streams[j];
2633  if (st != ost->st && st->codec->codec_type == enc_ctx->codec_type)
2634  break;
2635  }
2636  if (j == oc->nb_streams)
2637  if (enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO || enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
2639  }
2640 
2641  if (ost->stream_copy) {
2642  AVRational sar;
2643  uint64_t extra_size;
2644 
2645  av_assert0(ist && !ost->filter);
2646 
2647  extra_size = (uint64_t)dec_ctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
2648 
2649  if (extra_size > INT_MAX) {
2650  return AVERROR(EINVAL);
2651  }
2652 
2653  /* if stream_copy is selected, no need to decode or encode */
2654  enc_ctx->codec_id = dec_ctx->codec_id;
2655  enc_ctx->codec_type = dec_ctx->codec_type;
2656 
2657  if (!enc_ctx->codec_tag) {
2658  unsigned int codec_tag;
2659  if (!oc->oformat->codec_tag ||
2660  av_codec_get_id (oc->oformat->codec_tag, dec_ctx->codec_tag) == enc_ctx->codec_id ||
2661  !av_codec_get_tag2(oc->oformat->codec_tag, dec_ctx->codec_id, &codec_tag))
2662  enc_ctx->codec_tag = dec_ctx->codec_tag;
2663  }
2664 
2665  enc_ctx->bit_rate = dec_ctx->bit_rate;
2666  enc_ctx->rc_max_rate = dec_ctx->rc_max_rate;
2667  enc_ctx->rc_buffer_size = dec_ctx->rc_buffer_size;
2668  enc_ctx->field_order = dec_ctx->field_order;
2669  enc_ctx->extradata = av_mallocz(extra_size);
2670  if (!enc_ctx->extradata) {
2671  return AVERROR(ENOMEM);
2672  }
2673  memcpy(enc_ctx->extradata, dec_ctx->extradata, dec_ctx->extradata_size);
2674  enc_ctx->extradata_size= dec_ctx->extradata_size;
2675  enc_ctx->bits_per_coded_sample = dec_ctx->bits_per_coded_sample;
2676 
2677  enc_ctx->time_base = ist->st->time_base;
2678  /*
2679  * Avi is a special case here because it supports variable fps but
2680  * having the fps and timebase differe significantly adds quite some
2681  * overhead
2682  */
2683  if(!strcmp(oc->oformat->name, "avi")) {
2684  if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
2685  && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
2686  && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(dec_ctx->time_base)
2687  && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(dec_ctx->time_base) < 1.0/500
2688  || copy_tb==2){
2689  enc_ctx->time_base.num = ist->st->r_frame_rate.den;
2690  enc_ctx->time_base.den = 2*ist->st->r_frame_rate.num;
2691  enc_ctx->ticks_per_frame = 2;
2692  } else if ( copy_tb<0 && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > 2*av_q2d(ist->st->time_base)
2693  && av_q2d(ist->st->time_base) < 1.0/500
2694  || copy_tb==0){
2695  enc_ctx->time_base = dec_ctx->time_base;
2696  enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2697  enc_ctx->time_base.den *= 2;
2698  enc_ctx->ticks_per_frame = 2;
2699  }
2700  } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
2701  && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
2702  && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
2703  && strcmp(oc->oformat->name, "f4v")
2704  ) {
2705  if( copy_tb<0 && dec_ctx->time_base.den
2706  && av_q2d(dec_ctx->time_base)*dec_ctx->ticks_per_frame > av_q2d(ist->st->time_base)
2707  && av_q2d(ist->st->time_base) < 1.0/500
2708  || copy_tb==0){
2709  enc_ctx->time_base = dec_ctx->time_base;
2710  enc_ctx->time_base.num *= dec_ctx->ticks_per_frame;
2711  }
2712  }
2713  if ( enc_ctx->codec_tag == AV_RL32("tmcd")
2714  && dec_ctx->time_base.num < dec_ctx->time_base.den
2715  && dec_ctx->time_base.num > 0
2716  && 121LL*dec_ctx->time_base.num > dec_ctx->time_base.den) {
2717  enc_ctx->time_base = dec_ctx->time_base;
2718  }
2719 
2720  if (ist && !ost->frame_rate.num)
2721  ost->frame_rate = ist->framerate;
2722  if(ost->frame_rate.num)
2723  enc_ctx->time_base = av_inv_q(ost->frame_rate);
2724 
2725  av_reduce(&enc_ctx->time_base.num, &enc_ctx->time_base.den,
2726  enc_ctx->time_base.num, enc_ctx->time_base.den, INT_MAX);
2727 
2728  if (ist->st->nb_side_data) {
2730  sizeof(*ist->st->side_data));
2731  if (!ost->st->side_data)
2732  return AVERROR(ENOMEM);
2733 
2734  for (j = 0; j < ist->st->nb_side_data; j++) {
2735  const AVPacketSideData *sd_src = &ist->st->side_data[j];
2736  AVPacketSideData *sd_dst = &ost->st->side_data[j];
2737 
2738  sd_dst->data = av_malloc(sd_src->size);
2739  if (!sd_dst->data)
2740  return AVERROR(ENOMEM);
2741  memcpy(sd_dst->data, sd_src->data, sd_src->size);
2742  sd_dst->size = sd_src->size;
2743  sd_dst->type = sd_src->type;
2744  ost->st->nb_side_data++;
2745  }
2746  }
2747 
2748  ost->parser = av_parser_init(enc_ctx->codec_id);
2749 
2750  switch (enc_ctx->codec_type) {
2751  case AVMEDIA_TYPE_AUDIO:
2752  if (audio_volume != 256) {
2753  av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
2754  exit_program(1);
2755  }
2756  enc_ctx->channel_layout = dec_ctx->channel_layout;
2757  enc_ctx->sample_rate = dec_ctx->sample_rate;
2758  enc_ctx->channels = dec_ctx->channels;
2759  enc_ctx->frame_size = dec_ctx->frame_size;
2760  enc_ctx->audio_service_type = dec_ctx->audio_service_type;
2761  enc_ctx->block_align = dec_ctx->block_align;
2762  enc_ctx->initial_padding = dec_ctx->delay;
2763 #if FF_API_AUDIOENC_DELAY
2764  enc_ctx->delay = dec_ctx->delay;
2765 #endif
2766  if((enc_ctx->block_align == 1 || enc_ctx->block_align == 1152 || enc_ctx->block_align == 576) && enc_ctx->codec_id == AV_CODEC_ID_MP3)
2767  enc_ctx->block_align= 0;
2768  if(enc_ctx->codec_id == AV_CODEC_ID_AC3)
2769  enc_ctx->block_align= 0;
2770  break;
2771  case AVMEDIA_TYPE_VIDEO:
2772  enc_ctx->pix_fmt = dec_ctx->pix_fmt;
2773  enc_ctx->width = dec_ctx->width;
2774  enc_ctx->height = dec_ctx->height;
2775  enc_ctx->has_b_frames = dec_ctx->has_b_frames;
2776  if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
2777  sar =
2779  (AVRational){ enc_ctx->height, enc_ctx->width });
2780  av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
2781  "with stream copy may produce invalid files\n");
2782  }
2783  else if (ist->st->sample_aspect_ratio.num)
2784  sar = ist->st->sample_aspect_ratio;
2785  else
2786  sar = dec_ctx->sample_aspect_ratio;
2787  ost->st->sample_aspect_ratio = enc_ctx->sample_aspect_ratio = sar;
2788  ost->st->avg_frame_rate = ist->st->avg_frame_rate;
2789  ost->st->r_frame_rate = ist->st->r_frame_rate;
2790  break;
2791  case AVMEDIA_TYPE_SUBTITLE:
2792  enc_ctx->width = dec_ctx->width;
2793  enc_ctx->height = dec_ctx->height;
2794  break;
2795  case AVMEDIA_TYPE_DATA:
2797  break;
2798  default:
2799  abort();
2800  }
2801  } else {
2802  if (!ost->enc)
2803  ost->enc = avcodec_find_encoder(enc_ctx->codec_id);
2804  if (!ost->enc) {
2805  /* should only happen when a default codec is not present. */
2806  snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
2807  avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
2808  ret = AVERROR(EINVAL);
2809  goto dump_format;
2810  }
2811 
2812  if (ist)
2814  ost->encoding_needed = 1;
2815 
2816  set_encoder_id(output_files[ost->file_index], ost);
2817 
2818  if (!ost->filter &&
2819  (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
2820  enc_ctx->codec_type == AVMEDIA_TYPE_AUDIO)) {
2821  FilterGraph *fg;
2822  fg = init_simple_filtergraph(ist, ost);
2823  if (configure_filtergraph(fg)) {
2824  av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
2825  exit_program(1);
2826  }
2827  }
2828 
2829  if (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2830  if (ost->filter && !ost->frame_rate.num)
2832  if (ist && !ost->frame_rate.num)
2833  ost->frame_rate = ist->framerate;
2834  if (ist && !ost->frame_rate.num)
2835  ost->frame_rate = ist->st->r_frame_rate;
2836  if (ist && !ost->frame_rate.num) {
2837  ost->frame_rate = (AVRational){25, 1};
2839  "No information "
2840  "about the input framerate is available. Falling "
2841  "back to a default value of 25fps for output stream #%d:%d. Use the -r option "
2842  "if you want a different framerate.\n",
2843  ost->file_index, ost->index);
2844  }
2845 // ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
2846  if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
2848  ost->frame_rate = ost->enc->supported_framerates[idx];
2849  }
2850  // reduce frame rate for mpeg4 to be within the spec limits
2851  if (enc_ctx->codec_id == AV_CODEC_ID_MPEG4) {
2852  av_reduce(&ost->frame_rate.num, &ost->frame_rate.den,
2853  ost->frame_rate.num, ost->frame_rate.den, 65535);
2854  }
2855  }
2856 
2857  switch (enc_ctx->codec_type) {
2858  case AVMEDIA_TYPE_AUDIO:
2859  enc_ctx->sample_fmt = ost->filter->filter->inputs[0]->format;
2860  enc_ctx->sample_rate = ost->filter->filter->inputs[0]->sample_rate;
2861  enc_ctx->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
2862  enc_ctx->channels = avfilter_link_get_channels(ost->filter->filter->inputs[0]);
2863  enc_ctx->time_base = (AVRational){ 1, enc_ctx->sample_rate };
2864  break;
2865  case AVMEDIA_TYPE_VIDEO:
2866  enc_ctx->time_base = av_inv_q(ost->frame_rate);
2867  if (ost->filter && !(enc_ctx->time_base.num && enc_ctx->time_base.den))
2868  enc_ctx->time_base = ost->filter->filter->inputs[0]->time_base;
2869  if ( av_q2d(enc_ctx->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
2871  av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
2872  "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
2873  }
2874  for (j = 0; j < ost->forced_kf_count; j++)
2875  ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
2877  enc_ctx->time_base);
2878 
2879  enc_ctx->width = ost->filter->filter->inputs[0]->w;
2880  enc_ctx->height = ost->filter->filter->inputs[0]->h;
2881  enc_ctx->sample_aspect_ratio = ost->st->sample_aspect_ratio =
2882  ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option
2883  av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) :
2885  if (!strncmp(ost->enc->name, "libx264", 7) &&
2886  enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2889  "No pixel format specified, %s for H.264 encoding chosen.\n"
2890  "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2892  if (!strncmp(ost->enc->name, "mpeg2video", 10) &&
2893  enc_ctx->pix_fmt == AV_PIX_FMT_NONE &&
2896  "No pixel format specified, %s for MPEG-2 encoding chosen.\n"
2897  "Use -pix_fmt yuv420p for compatibility with outdated media players.\n",
2899  enc_ctx->pix_fmt = ost->filter->filter->inputs[0]->format;
2900 
2901  ost->st->avg_frame_rate = ost->frame_rate;
2902 
2903  if (!dec_ctx ||
2904  enc_ctx->width != dec_ctx->width ||
2905  enc_ctx->height != dec_ctx->height ||
2906  enc_ctx->pix_fmt != dec_ctx->pix_fmt) {
2907  enc_ctx->bits_per_raw_sample = frame_bits_per_raw_sample;
2908  }
2909 
2910  if (ost->forced_keyframes) {
2911  if (!strncmp(ost->forced_keyframes, "expr:", 5)) {
2914  if (ret < 0) {
2916  "Invalid force_key_frames expression '%s'\n", ost->forced_keyframes+5);
2917  return ret;
2918  }
2923  } else {
2925  }
2926  }
2927  break;
2928  case AVMEDIA_TYPE_SUBTITLE:
2929  enc_ctx->time_base = (AVRational){1, 1000};
2930  if (!enc_ctx->width) {
2931  enc_ctx->width = input_streams[ost->source_index]->st->codec->width;
2932  enc_ctx->height = input_streams[ost->source_index]->st->codec->height;
2933  }
2934  break;
2935  case AVMEDIA_TYPE_DATA:
2936  break;
2937  default:
2938  abort();
2939  break;
2940  }
2941  /* two pass mode */
2942  if (enc_ctx->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
2943  char logfilename[1024];
2944  FILE *f;
2945 
2946  snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
2947  ost->logfile_prefix ? ost->logfile_prefix :
2949  i);
2950  if (!strcmp(ost->enc->name, "libx264")) {
2951  av_dict_set(&ost->encoder_opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
2952  } else {
2953  if (enc_ctx->flags & CODEC_FLAG_PASS2) {
2954  char *logbuffer;
2955  size_t logbuffer_size;
2956  if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
2957  av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
2958  logfilename);
2959  exit_program(1);
2960  }
2961  enc_ctx->stats_in = logbuffer;
2962  }
2963  if (enc_ctx->flags & CODEC_FLAG_PASS1) {
2964  f = av_fopen_utf8(logfilename, "wb");
2965  if (!f) {
2966  av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
2967  logfilename, strerror(errno));
2968  exit_program(1);
2969  }
2970  ost->logfile = f;
2971  }
2972  }
2973  }
2974  }
2975 
2976  if (ost->disposition) {
2977  static const AVOption opts[] = {
2978  { "disposition" , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
2979  { "default" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DEFAULT }, .unit = "flags" },
2980  { "dub" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DUB }, .unit = "flags" },
2981  { "original" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ORIGINAL }, .unit = "flags" },
2982  { "comment" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_COMMENT }, .unit = "flags" },
2983  { "lyrics" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_LYRICS }, .unit = "flags" },
2984  { "karaoke" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_KARAOKE }, .unit = "flags" },
2985  { "forced" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_FORCED }, .unit = "flags" },
2986  { "hearing_impaired" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_HEARING_IMPAIRED }, .unit = "flags" },
2987  { "visual_impaired" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_VISUAL_IMPAIRED }, .unit = "flags" },
2988  { "clean_effects" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CLEAN_EFFECTS }, .unit = "flags" },
2989  { "captions" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CAPTIONS }, .unit = "flags" },
2990  { "descriptions" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DESCRIPTIONS }, .unit = "flags" },
2991  { "metadata" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_METADATA }, .unit = "flags" },
2992  { NULL },
2993  };
2994  static const AVClass class = {
2995  .class_name = "",
2996  .item_name = av_default_item_name,
2997  .option = opts,
2998  .version = LIBAVUTIL_VERSION_INT,
2999  };
3000  const AVClass *pclass = &class;
3001 
3002  ret = av_opt_eval_flags(&pclass, &opts[0], ost->disposition, &ost->st->disposition);
3003  if (ret < 0)
3004  goto dump_format;
3005  }
3006  }
3007 
3008  /* open each encoder */
3009  for (i = 0; i < nb_output_streams; i++) {
3010  ost = output_streams[i];
3011  if (ost->encoding_needed) {
3012  AVCodec *codec = ost->enc;
3013  AVCodecContext *dec = NULL;
3014 
3015  if ((ist = get_input_stream(ost)))
3016  dec = ist->dec_ctx;
3017  if (dec && dec->subtitle_header) {
3018  /* ASS code assumes this buffer is null terminated so add extra byte. */
3019  ost->enc_ctx->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
3020  if (!ost->enc_ctx->subtitle_header) {
3021  ret = AVERROR(ENOMEM);
3022  goto dump_format;
3023  }
3024  memcpy(ost->enc_ctx->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
3025  ost->enc_ctx->subtitle_header_size = dec->subtitle_header_size;
3026  }
3027  if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
3028  av_dict_set(&ost->encoder_opts, "threads", "auto", 0);
3029  av_dict_set(&ost->encoder_opts, "side_data_only_packets", "1", 0);
3030 
3031  if ((ret = avcodec_open2(ost->enc_ctx, codec, &ost->encoder_opts)) < 0) {
3032  if (ret == AVERROR_EXPERIMENTAL)
3033  abort_codec_experimental(codec, 1);
3034  snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
3035  ost->file_index, ost->index);
3036  goto dump_format;
3037  }
3038  if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
3039  !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
3040  av_buffersink_set_frame_size(ost->filter->filter,
3041  ost->enc_ctx->frame_size);
3042  assert_avoptions(ost->encoder_opts);
3043  if (ost->enc_ctx->bit_rate && ost->enc_ctx->bit_rate < 1000)
3044  av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
3045  " It takes bits/s as argument, not kbits/s\n");
3046  } else {
3047  ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);
3048  if (ret < 0) {
3050  "Error setting up codec context options.\n");
3051  return ret;
3052  }
3053  }
3054 
3055  ret = avcodec_copy_context(ost->st->codec, ost->enc_ctx);
3056  if (ret < 0) {
3058  "Error initializing the output stream codec context.\n");
3059  exit_program(1);
3060  }
3061  ost->st->codec->codec= ost->enc_ctx->codec;
3062 
3063  // copy timebase while removing common factors
3064  ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0, 1});
3065  }
3066 
3067  /* init input streams */
3068  for (i = 0; i < nb_input_streams; i++)
3069  if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
3070  for (i = 0; i < nb_output_streams; i++) {
3071  ost = output_streams[i];
3072  avcodec_close(ost->enc_ctx);
3073  }
3074  goto dump_format;
3075  }
3076 
3077  /* discard unused programs */
3078  for (i = 0; i < nb_input_files; i++) {
3079  InputFile *ifile = input_files[i];
3080  for (j = 0; j < ifile->ctx->nb_programs; j++) {
3081  AVProgram *p = ifile->ctx->programs[j];
3082  int discard = AVDISCARD_ALL;
3083 
3084  for (k = 0; k < p->nb_stream_indexes; k++)
3085  if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
3086  discard = AVDISCARD_DEFAULT;
3087  break;
3088  }
3089  p->discard = discard;
3090  }
3091  }
3092 
3093  /* open files and write file headers */
3094  for (i = 0; i < nb_output_files; i++) {
3095  oc = output_files[i]->ctx;
3096  oc->interrupt_callback = int_cb;
3097  if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
3098  snprintf(error, sizeof(error),
3099  "Could not write header for output file #%d "
3100  "(incorrect codec parameters ?): %s",
3101  i, av_err2str(ret));
3102  ret = AVERROR(EINVAL);
3103  goto dump_format;
3104  }
3105 // assert_avoptions(output_files[i]->opts);
3106  if (strcmp(oc->oformat->name, "rtp")) {
3107  want_sdp = 0;
3108  }
3109  }
3110 
3111  dump_format:
3112  /* dump the file output parameters - cannot be done before in case
3113  of stream copy */
3114  for (i = 0; i < nb_output_files; i++) {
3115  av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
3116  }
3117 
3118  /* dump the stream mapping */
3119  av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
3120  for (i = 0; i < nb_input_streams; i++) {
3121  ist = input_streams[i];
3122 
3123  for (j = 0; j < ist->nb_filters; j++) {
3124  if (ist->filters[j]->graph->graph_desc) {
3125  av_log(NULL, AV_LOG_INFO, " Stream #%d:%d (%s) -> %s",
3126  ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
3127  ist->filters[j]->name);
3128  if (nb_filtergraphs > 1)
3129  av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
3130  av_log(NULL, AV_LOG_INFO, "\n");
3131  }
3132  }
3133  }
3134 
3135  for (i = 0; i < nb_output_streams; i++) {
3136  ost = output_streams[i];
3137 
3138  if (ost->attachment_filename) {
3139  /* an attached file */
3140  av_log(NULL, AV_LOG_INFO, " File %s -> Stream #%d:%d\n",
3141  ost->attachment_filename, ost->file_index, ost->index);
3142  continue;
3143  }
3144 
3145  if (ost->filter && ost->filter->graph->graph_desc) {
3146  /* output from a complex graph */
3147  av_log(NULL, AV_LOG_INFO, " %s", ost->filter->name);
3148  if (nb_filtergraphs > 1)
3149  av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
3150 
3151  av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
3152  ost->index, ost->enc ? ost->enc->name : "?");
3153  continue;
3154  }
3155 
3156  av_log(NULL, AV_LOG_INFO, " Stream #%d:%d -> #%d:%d",
3157  input_streams[ost->source_index]->file_index,
3158  input_streams[ost->source_index]->st->index,
3159  ost->file_index,
3160  ost->index);
3161  if (ost->sync_ist != input_streams[ost->source_index])
3162  av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
3163  ost->sync_ist->file_index,
3164  ost->sync_ist->st->index);
3165  if (ost->stream_copy)
3166  av_log(NULL, AV_LOG_INFO, " (copy)");
3167  else {
3168  const AVCodec *in_codec = input_streams[ost->source_index]->dec;
3169  const AVCodec *out_codec = ost->enc;
3170  const char *decoder_name = "?";
3171  const char *in_codec_name = "?";
3172  const char *encoder_name = "?";
3173  const char *out_codec_name = "?";
3174 
3175  if (in_codec) {
3176  decoder_name = in_codec->name;
3177  in_codec_name = avcodec_descriptor_get(in_codec->id)->name;
3178  if (!strcmp(decoder_name, in_codec_name))
3179  decoder_name = "native";
3180  }
3181 
3182  if (out_codec) {
3183  encoder_name = out_codec->name;
3184  out_codec_name = avcodec_descriptor_get(out_codec->id)->name;
3185  if (!strcmp(encoder_name, out_codec_name))
3186  encoder_name = "native";
3187  }
3188 
3189  av_log(NULL, AV_LOG_INFO, " (%s (%s) -> %s (%s))",
3190  in_codec_name, decoder_name,
3191  out_codec_name, encoder_name);
3192  }
3193  av_log(NULL, AV_LOG_INFO, "\n");
3194  }
3195 
3196  if (ret) {
3197  av_log(NULL, AV_LOG_ERROR, "%s\n", error);
3198  return ret;
3199  }
3200 
3201  if (sdp_filename || want_sdp) {
3202  print_sdp();
3203  }
3204 
3205  transcode_init_done = 1;
3206 
3207  return 0;
3208 }
3209 
3210 /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
3211 static int need_output(void)
3212 {
3213  int i;
3214 
3215  for (i = 0; i < nb_output_streams; i++) {
3216  OutputStream *ost = output_streams[i];
3217  OutputFile *of = output_files[ost->file_index];
3218  AVFormatContext *os = output_files[ost->file_index]->ctx;
3219 
3220  if (ost->finished ||
3221  (os->pb && avio_tell(os->pb) >= of->limit_filesize))
3222  continue;
3223  if (ost->frame_number >= ost->max_frames) {
3224  int j;
3225  for (j = 0; j < of->ctx->nb_streams; j++)
3226  close_output_stream(output_streams[of->ost_index + j]);
3227  continue;
3228  }
3229 
3230  return 1;
3231  }
3232 
3233  return 0;
3234 }
3235 
3236 /**
3237  * Select the output stream to process.
3238  *
3239  * @return selected output stream, or NULL if none available
3240  */
3242 {
3243  int i;
3244  int64_t opts_min = INT64_MAX;
3245  OutputStream *ost_min = NULL;
3246 
3247  for (i = 0; i < nb_output_streams; i++) {
3248  OutputStream *ost = output_streams[i];
3249  int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
3250  AV_TIME_BASE_Q);
3251  if (!ost->finished && opts < opts_min) {
3252  opts_min = opts;
3253  ost_min = ost->unavailable ? NULL : ost;
3254  }
3255  }
3256  return ost_min;
3257 }
3258 
3260 {
3261  int i, ret, key;
3262  static int64_t last_time;
3263  if (received_nb_signals)
3264  return AVERROR_EXIT;
3265  /* read_key() returns 0 on EOF */
3266  if(cur_time - last_time >= 100000 && !run_as_daemon){
3267  key = read_key();
3268  last_time = cur_time;
3269  }else
3270  key = -1;
3271  if (key == 'q')
3272  return AVERROR_EXIT;
3273  if (key == '+') av_log_set_level(av_log_get_level()+10);
3274  if (key == '-') av_log_set_level(av_log_get_level()-10);
3275  if (key == 's') qp_hist ^= 1;
3276  if (key == 'h'){
3277  if (do_hex_dump){
3278  do_hex_dump = do_pkt_dump = 0;
3279  } else if(do_pkt_dump){
3280  do_hex_dump = 1;
3281  } else
3282  do_pkt_dump = 1;
3284  }
3285  if (key == 'c' || key == 'C'){
3286  char buf[4096], target[64], command[256], arg[256] = {0};
3287  double time;
3288  int k, n = 0;
3289  fprintf(stderr, "\nEnter command: <target>|all <time>|-1 <command>[ <argument>]\n");
3290  i = 0;
3291  while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
3292  if (k > 0)
3293  buf[i++] = k;
3294  buf[i] = 0;
3295  if (k > 0 &&
3296  (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
3297  av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
3298  target, time, command, arg);
3299  for (i = 0; i < nb_filtergraphs; i++) {
3300  FilterGraph *fg = filtergraphs[i];
3301  if (fg->graph) {
3302  if (time < 0) {
3303  ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
3304  key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
3305  fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
3306  } else if (key == 'c') {
3307  fprintf(stderr, "Queing commands only on filters supporting the specific command is unsupported\n");
3308  ret = AVERROR_PATCHWELCOME;
3309  } else {
3310  ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
3311  }
3312  }
3313  }
3314  } else {
3316  "Parse error, at least 3 arguments were expected, "
3317  "only %d given in string '%s'\n", n, buf);
3318  }
3319  }
3320  if (key == 'd' || key == 'D'){
3321  int debug=0;
3322  if(key == 'D') {
3323  debug = input_streams[0]->st->codec->debug<<1;
3324  if(!debug) debug = 1;
3325  while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
3326  debug += debug;
3327  }else
3328  if(scanf("%d", &debug)!=1)
3329  fprintf(stderr,"error parsing debug value\n");
3330  for(i=0;i<nb_input_streams;i++) {
3331  input_streams[i]->st->codec->debug = debug;
3332  }
3333  for(i=0;i<nb_output_streams;i++) {
3334  OutputStream *ost = output_streams[i];
3335  ost->enc_ctx->debug = debug;
3336  }
3337  if(debug) av_log_set_level(AV_LOG_DEBUG);
3338  fprintf(stderr,"debug=%d\n", debug);
3339  }
3340  if (key == '?'){
3341  fprintf(stderr, "key function\n"
3342  "? show this help\n"
3343  "+ increase verbosity\n"
3344  "- decrease verbosity\n"
3345  "c Send command to first matching filter supporting it\n"
3346  "C Send/Que command to all matching filters\n"
3347  "D cycle through available debug modes\n"
3348  "h dump packets/hex press to cycle through the 3 states\n"
3349  "q quit\n"
3350  "s Show QP histogram\n"
3351  );
3352  }
3353  return 0;
3354 }
3355 
3356 #if HAVE_PTHREADS
3357 static void *input_thread(void *arg)
3358 {
3359  InputFile *f = arg;
3360  unsigned flags = f->non_blocking ? AV_THREAD_MESSAGE_NONBLOCK : 0;
3361  int ret = 0;
3362 
3363  while (1) {
3364  AVPacket pkt;
3365  ret = av_read_frame(f->ctx, &pkt);
3366 
3367  if (ret == AVERROR(EAGAIN)) {
3368  av_usleep(10000);
3369  continue;
3370  }
3371  if (ret < 0) {
3372  av_thread_message_queue_set_err_recv(f->in_thread_queue, ret);
3373  break;
3374  }
3375  av_dup_packet(&pkt);
3376  ret = av_thread_message_queue_send(f->in_thread_queue, &pkt, flags);
3377  if (flags && ret == AVERROR(EAGAIN)) {
3378  flags = 0;
3379  ret = av_thread_message_queue_send(f->in_thread_queue, &pkt, flags);
3381  "Thread message queue blocking; consider raising the "
3382  "thread_queue_size option (current value: %d)\n",
3383  f->thread_queue_size);
3384  }
3385  if (ret < 0) {
3386  if (ret != AVERROR_EOF)
3387  av_log(f->ctx, AV_LOG_ERROR,
3388  "Unable to send packet to main thread: %s\n",
3389  av_err2str(ret));
3390  av_free_packet(&pkt);
3391  av_thread_message_queue_set_err_recv(f->in_thread_queue, ret);
3392  break;
3393  }
3394  }
3395 
3396  return NULL;
3397 }
3398 
3399 static void free_input_threads(void)
3400 {
3401  int i;
3402 
3403  for (i = 0; i < nb_input_files; i++) {
3404  InputFile *f = input_files[i];
3405  AVPacket pkt;
3406 
3407  if (!f->in_thread_queue)
3408  continue;
3410  while (av_thread_message_queue_recv(f->in_thread_queue, &pkt, 0) >= 0)
3411  av_free_packet(&pkt);
3412 
3413  pthread_join(f->thread, NULL);
3414  f->joined = 1;
3415  av_thread_message_queue_free(&f->in_thread_queue);
3416  }
3417 }
3418 
3419 static int init_input_threads(void)
3420 {
3421  int i, ret;
3422 
3423  if (nb_input_files == 1)
3424  return 0;
3425 
3426  for (i = 0; i < nb_input_files; i++) {
3427  InputFile *f = input_files[i];
3428 
3429  if (f->ctx->pb ? !f->ctx->pb->seekable :
3430  strcmp(f->ctx->iformat->name, "lavfi"))
3431  f->non_blocking = 1;
3432  ret = av_thread_message_queue_alloc(&f->in_thread_queue,
3433  f->thread_queue_size, sizeof(AVPacket));
3434  if (ret < 0)
3435  return ret;
3436 
3437  if ((ret = pthread_create(&f->thread, NULL, input_thread, f))) {
3438  av_log(NULL, AV_LOG_ERROR, "pthread_create failed: %s. Try to increase `ulimit -v` or decrease `ulimit -s`.\n", strerror(ret));
3439  av_thread_message_queue_free(&f->in_thread_queue);
3440  return AVERROR(ret);
3441  }
3442  }
3443  return 0;
3444 }
3445 
3446 static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
3447 {
3448  return av_thread_message_queue_recv(f->in_thread_queue, pkt,
3449  f->non_blocking ?
3451 }
3452 #endif
3453 
3455 {
3456  if (f->rate_emu) {
3457  int i;
3458  for (i = 0; i < f->nb_streams; i++) {
3459  InputStream *ist = input_streams[f->ist_index + i];
3460  int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
3461  int64_t now = av_gettime_relative() - ist->start;
3462  if (pts > now)
3463  return AVERROR(EAGAIN);
3464  }
3465  }
3466 
3467 #if HAVE_PTHREADS
3468  if (nb_input_files > 1)
3469  return get_input_packet_mt(f, pkt);
3470 #endif
3471  return av_read_frame(f->ctx, pkt);
3472 }
3473 
3474 static int got_eagain(void)
3475 {
3476  int i;
3477  for (i = 0; i < nb_output_streams; i++)
3478  if (output_streams[i]->unavailable)
3479  return 1;
3480  return 0;
3481 }
3482 
3483 static void reset_eagain(void)
3484 {
3485  int i;
3486  for (i = 0; i < nb_input_files; i++)
3487  input_files[i]->eagain = 0;
3488  for (i = 0; i < nb_output_streams; i++)
3489  output_streams[i]->unavailable = 0;
3490 }
3491 
3492 /*
3493  * Return
3494  * - 0 -- one packet was read and processed
3495  * - AVERROR(EAGAIN) -- no packets were available for selected file,
3496  * this function should be called again
3497  * - AVERROR_EOF -- this function should not be called again
3498  */
3499 static int process_input(int file_index)
3500 {
3501  InputFile *ifile = input_files[file_index];
3502  AVFormatContext *is;
3503  InputStream *ist;
3504  AVPacket pkt;
3505  int ret, i, j;
3506 
3507  is = ifile->ctx;
3508  ret = get_input_packet(ifile, &pkt);
3509 
3510  if (ret == AVERROR(EAGAIN)) {
3511  ifile->eagain = 1;
3512  return ret;
3513  }
3514  if (ret < 0) {
3515  if (ret != AVERROR_EOF) {
3516  print_error(is->filename, ret);
3517  if (exit_on_error)
3518  exit_program(1);
3519  }
3520 
3521  for (i = 0; i < ifile->nb_streams; i++) {
3522  ist = input_streams[ifile->ist_index + i];
3523  if (ist->decoding_needed) {
3524  ret = process_input_packet(ist, NULL);
3525  if (ret>0)
3526  return 0;
3527  }
3528 
3529  /* mark all outputs that don't go through lavfi as finished */
3530  for (j = 0; j < nb_output_streams; j++) {
3531  OutputStream *ost = output_streams[j];
3532 
3533  if (ost->source_index == ifile->ist_index + i &&
3534  (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
3535  finish_output_stream(ost);
3536  }
3537  }
3538 
3539  ifile->eof_reached = 1;
3540  return AVERROR(EAGAIN);
3541  }
3542 
3543  reset_eagain();
3544 
3545  if (do_pkt_dump) {
3547  is->streams[pkt.stream_index]);
3548  }
3549  /* the following test is needed in case new streams appear
3550  dynamically in stream : we ignore them */
3551  if (pkt.stream_index >= ifile->nb_streams) {
3552  report_new_stream(file_index, &pkt);
3553  goto discard_packet;
3554  }
3555 
3556  ist = input_streams[ifile->ist_index + pkt.stream_index];
3557 
3558  ist->data_size += pkt.size;
3559  ist->nb_packets++;
3560 
3561  if (ist->discard)
3562  goto discard_packet;
3563 
3564  if (debug_ts) {
3565  av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
3566  "next_dts:%s next_dts_time:%s next_pts:%s next_pts_time:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
3570  av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3571  av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3572  av_ts2str(input_files[ist->file_index]->ts_offset),
3573  av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3574  }
3575 
3576  if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
3577  int64_t stime, stime2;
3578  // Correcting starttime based on the enabled streams
3579  // FIXME this ideally should be done before the first use of starttime but we do not know which are the enabled streams at that point.
3580  // so we instead do it here as part of discontinuity handling
3581  if ( ist->next_dts == AV_NOPTS_VALUE
3582  && ifile->ts_offset == -is->start_time
3583  && (is->iformat->flags & AVFMT_TS_DISCONT)) {
3584  int64_t new_start_time = INT64_MAX;
3585  for (i=0; i<is->nb_streams; i++) {
3586  AVStream *st = is->streams[i];
3587  if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
3588  continue;
3589  new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
3590  }
3591  if (new_start_time > is->start_time) {
3592  av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
3593  ifile->ts_offset = -new_start_time;
3594  }
3595  }
3596 
3597  stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
3598  stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
3599  ist->wrap_correction_done = 1;
3600 
3601  if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3602  pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
3603  ist->wrap_correction_done = 0;
3604  }
3605  if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
3606  pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
3607  ist->wrap_correction_done = 0;
3608  }
3609  }
3610 
3611  /* add the stream-global side data to the first packet */
3612  if (ist->nb_packets == 1) {
3613  if (ist->st->nb_side_data)
3615  for (i = 0; i < ist->st->nb_side_data; i++) {
3616  AVPacketSideData *src_sd = &ist->st->side_data[i];
3617  uint8_t *dst_data;
3618 
3619  if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
3620  continue;
3621 
3622  dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
3623  if (!dst_data)
3624  exit_program(1);
3625 
3626  memcpy(dst_data, src_sd->data, src_sd->size);
3627  }
3628  }
3629 
3630  if (pkt.dts != AV_NOPTS_VALUE)
3631  pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3632  if (pkt.pts != AV_NOPTS_VALUE)
3633  pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3634 
3635  if (pkt.pts != AV_NOPTS_VALUE)
3636  pkt.pts *= ist->ts_scale;
3637  if (pkt.dts != AV_NOPTS_VALUE)
3638  pkt.dts *= ist->ts_scale;
3639 
3640  if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
3642  pkt.dts != AV_NOPTS_VALUE && ist->next_dts == AV_NOPTS_VALUE && !copy_ts
3643  && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
3644  int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3645  int64_t delta = pkt_dts - ifile->last_ts;
3646  if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3647  delta > 1LL*dts_delta_threshold*AV_TIME_BASE){
3648  ifile->ts_offset -= delta;
3650  "Inter stream timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3651  delta, ifile->ts_offset);
3652  pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3653  if (pkt.pts != AV_NOPTS_VALUE)
3654  pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3655  }
3656  }
3657 
3658  if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
3660  pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
3661  !copy_ts) {
3662  int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3663  int64_t delta = pkt_dts - ist->next_dts;
3664  if (is->iformat->flags & AVFMT_TS_DISCONT) {
3665  if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
3666  delta > 1LL*dts_delta_threshold*AV_TIME_BASE ||
3667  pkt_dts + AV_TIME_BASE/10 < FFMAX(ist->pts, ist->dts)) {
3668  ifile->ts_offset -= delta;
3670  "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
3671  delta, ifile->ts_offset);
3672  pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3673  if (pkt.pts != AV_NOPTS_VALUE)
3674  pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
3675  }
3676  } else {
3677  if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3678  delta > 1LL*dts_error_threshold*AV_TIME_BASE) {
3679  av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
3680  pkt.dts = AV_NOPTS_VALUE;
3681  }
3682  if (pkt.pts != AV_NOPTS_VALUE){
3683  int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
3684  delta = pkt_pts - ist->next_dts;
3685  if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
3686  delta > 1LL*dts_error_threshold*AV_TIME_BASE) {
3687  av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
3688  pkt.pts = AV_NOPTS_VALUE;
3689  }
3690  }
3691  }
3692  }
3693 
3694  if (pkt.dts != AV_NOPTS_VALUE)
3695  ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3696 
3697  if (debug_ts) {
3698  av_log(NULL, AV_LOG_INFO, "demuxer+ffmpeg -> ist_index:%d type:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
3700  av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
3701  av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
3702  av_ts2str(input_files[ist->file_index]->ts_offset),
3703  av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
3704  }
3705 
3706  sub2video_heartbeat(ist, pkt.pts);
3707 
3708  ret = process_input_packet(ist, &pkt);
3709  if (ret < 0) {
3710  av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
3711  ist->file_index, ist->st->index, av_err2str(ret));
3712  if (exit_on_error)
3713  exit_program(1);
3714  }
3715 
3716 discard_packet:
3717  av_free_packet(&pkt);
3718 
3719  return 0;
3720 }
3721 
3722 /**
3723  * Perform a step of transcoding for the specified filter graph.
3724  *
3725  * @param[in] graph filter graph to consider
3726  * @param[out] best_ist input stream where a frame would allow to continue
3727  * @return 0 for success, <0 for error
3728  */
3729 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
3730 {
3731  int i, ret;
3732  int nb_requests, nb_requests_max = 0;
3733  InputFilter *ifilter;
3734  InputStream *ist;
3735 
3736  *best_ist = NULL;
3737  ret = avfilter_graph_request_oldest(graph->graph);
3738  if (ret >= 0)
3739  return reap_filters();
3740 
3741  if (ret == AVERROR_EOF) {
3742  ret = reap_filters();
3743  for (i = 0; i < graph->nb_outputs; i++)
3744  close_output_stream(graph->outputs[i]->ost);
3745  return ret;
3746  }
3747  if (ret != AVERROR(EAGAIN))
3748  return ret;
3749 
3750  for (i = 0; i < graph->nb_inputs; i++) {
3751  ifilter = graph->inputs[i];
3752  ist = ifilter->ist;
3753  if (input_files[ist->file_index]->eagain ||
3754  input_files[ist->file_index]->eof_reached)
3755  continue;
3756  nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
3757  if (nb_requests > nb_requests_max) {
3758  nb_requests_max = nb_requests;
3759  *best_ist = ist;
3760  }
3761  }
3762 
3763  if (!*best_ist)
3764  for (i = 0; i < graph->nb_outputs; i++)
3765  graph->outputs[i]->ost->unavailable = 1;
3766 
3767  return 0;
3768 }
3769 
3770 /**
3771  * Run a single step of transcoding.
3772  *
3773  * @return 0 for success, <0 for error
3774  */
3775 static int transcode_step(void)
3776 {
3777  OutputStream *ost;
3778  InputStream *ist;
3779  int ret;
3780 
3781  ost = choose_output();
3782  if (!ost) {
3783  if (got_eagain()) {
3784  reset_eagain();
3785  av_usleep(10000);
3786  return 0;
3787  }
3788  av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
3789  return AVERROR_EOF;
3790  }
3791 
3792  if (ost->filter) {
3793  if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
3794  return ret;
3795  if (!ist)
3796  return 0;
3797  } else {
3798  av_assert0(ost->source_index >= 0);
3799  ist = input_streams[ost->source_index];
3800  }
3801 
3802  ret = process_input(ist->file_index);
3803  if (ret == AVERROR(EAGAIN)) {
3804  if (input_files[ist->file_index]->eagain)
3805  ost->unavailable = 1;
3806  return 0;
3807  }
3808  if (ret < 0)
3809  return ret == AVERROR_EOF ? 0 : ret;
3810 
3811  return reap_filters();
3812 }
3813 
3814 /*
3815  * The following code is the main loop of the file converter
3816  */
3817 static int transcode(void)
3818 {
3819  int ret, i;
3820  AVFormatContext *os;
3821  OutputStream *ost;
3822  InputStream *ist;
3823  int64_t timer_start;
3824 
3825  ret = transcode_init();
3826  if (ret < 0)
3827  goto fail;
3828 
3829  if (stdin_interaction) {
3830  av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
3831  }
3832 
3833  timer_start = av_gettime_relative();
3834 
3835 #if HAVE_PTHREADS
3836  if ((ret = init_input_threads()) < 0)
3837  goto fail;
3838 #endif
3839 
3840  while (!received_sigterm) {
3841  int64_t cur_time= av_gettime_relative();
3842 
3843  /* if 'q' pressed, exits */
3844  if (stdin_interaction)
3845  if (check_keyboard_interaction(cur_time) < 0)
3846  break;
3847 
3848  /* check if there's any stream where output is still needed */
3849  if (!need_output()) {
3850  av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
3851  break;
3852  }
3853 
3854  ret = transcode_step();
3855  if (ret < 0) {
3856  if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
3857  continue;
3858 
3859  av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
3860  break;
3861  }
3862 
3863  /* dump report by using the output first video and audio streams */
3864  print_report(0, timer_start, cur_time);
3865  }
3866 #if HAVE_PTHREADS
3867  free_input_threads();
3868 #endif
3869 
3870  /* at the end of stream, we must flush the decoder buffers */
3871  for (i = 0; i < nb_input_streams; i++) {
3872  ist = input_streams[i];
3873  if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
3874  process_input_packet(ist, NULL);
3875  }
3876  }
3877  flush_encoders();
3878 
3879  term_exit();
3880 
3881  /* write the trailer if needed and close file */
3882  for (i = 0; i < nb_output_files; i++) {
3883  os = output_files[i]->ctx;
3884  av_write_trailer(os);
3885  }
3886 
3887  /* dump report by using the first video and audio streams */
3888  print_report(1, timer_start, av_gettime_relative());
3889 
3890  /* close each encoder */
3891  for (i = 0; i < nb_output_streams; i++) {
3892  ost = output_streams[i];
3893  if (ost->encoding_needed) {
3894  av_freep(&ost->enc_ctx->stats_in);
3895  }
3896  }
3897 
3898  /* close each decoder */
3899  for (i = 0; i < nb_input_streams; i++) {
3900  ist = input_streams[i];
3901  if (ist->decoding_needed) {
3902  avcodec_close(ist->dec_ctx);
3903  if (ist->hwaccel_uninit)
3904  ist->hwaccel_uninit(ist->dec_ctx);
3905  }
3906  }
3907 
3908  /* finished ! */
3909  ret = 0;
3910 
3911  fail:
3912 #if HAVE_PTHREADS
3913  free_input_threads();
3914 #endif
3915 
3916  if (output_streams) {
3917  for (i = 0; i < nb_output_streams; i++) {
3918  ost = output_streams[i];
3919  if (ost) {
3920  if (ost->logfile) {
3921  fclose(ost->logfile);
3922  ost->logfile = NULL;
3923  }
3924  av_freep(&ost->forced_kf_pts);
3925  av_freep(&ost->apad);
3926  av_freep(&ost->disposition);
3927  av_dict_free(&ost->encoder_opts);
3928  av_dict_free(&ost->swr_opts);
3929  av_dict_free(&ost->resample_opts);
3930  av_dict_free(&ost->bsf_args);
3931  }
3932  }
3933  }
3934  return ret;
3935 }
3936 
3937 
3938 static int64_t getutime(void)
3939 {
3940 #if HAVE_GETRUSAGE
3941  struct rusage rusage;
3942 
3943  getrusage(RUSAGE_SELF, &rusage);
3944  return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
3945 #elif HAVE_GETPROCESSTIMES
3946  HANDLE proc;
3947  FILETIME c, e, k, u;
3948  proc = GetCurrentProcess();
3949  GetProcessTimes(proc, &c, &e, &k, &u);
3950  return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
3951 #else
3952  return av_gettime_relative();
3953 #endif
3954 }
3955 
3956 static int64_t getmaxrss(void)
3957 {
3958 #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
3959  struct rusage rusage;
3960  getrusage(RUSAGE_SELF, &rusage);
3961  return (int64_t)rusage.ru_maxrss * 1024;
3962 #elif HAVE_GETPROCESSMEMORYINFO
3963  HANDLE proc;
3964  PROCESS_MEMORY_COUNTERS memcounters;
3965  proc = GetCurrentProcess();
3966  memcounters.cb = sizeof(memcounters);
3967  GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
3968  return memcounters.PeakPagefileUsage;
3969 #else
3970  return 0;
3971 #endif
3972 }
3973 
3974 static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
3975 {
3976 }
3977 
3978 int main(int argc, char **argv)
3979 {
3980  int ret;
3981  int64_t ti;
3982 
3984 
3985  setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
3986 
3988  parse_loglevel(argc, argv, options);
3989 
3990  if(argc>1 && !strcmp(argv[1], "-d")){
3991  run_as_daemon=1;
3993  argc--;
3994  argv++;
3995  }
3996 
3998 #if CONFIG_AVDEVICE
4000 #endif
4002  av_register_all();
4004 
4005  show_banner(argc, argv, options);
4006 
4007  term_init();
4008 
4009  /* parse options and open all input/output files */
4010  ret = ffmpeg_parse_options(argc, argv);
4011  if (ret < 0)
4012  exit_program(1);
4013 
4014  if (nb_output_files <= 0 && nb_input_files == 0) {
4015  show_usage();
4016  av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
4017  exit_program(1);
4018  }
4019 
4020  /* file converter / grab */
4021  if (nb_output_files <= 0) {
4022  av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
4023  exit_program(1);
4024  }
4025 
4026 // if (nb_input_files == 0) {
4027 // av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
4028 // exit_program(1);
4029 // }
4030 
4031  current_time = ti = getutime();
4032  if (transcode() < 0)
4033  exit_program(1);
4034  ti = getutime() - ti;
4035  if (do_benchmark) {
4036  printf("bench: utime=%0.3fs\n", ti / 1000000.0);
4037  }
4038  av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
4041  exit_program(69);
4042 
4044  return main_return_code;
4045 }