You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3193 lines
110KB

  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. * @file
  22. * multimedia converter based on the FFmpeg libraries
  23. */
  24. #include "config.h"
  25. #include <ctype.h>
  26. #include <string.h>
  27. #include <math.h>
  28. #include <stdlib.h>
  29. #include <errno.h>
  30. #include <limits.h>
  31. #if HAVE_ISATTY
  32. #if HAVE_IO_H
  33. #include <io.h>
  34. #endif
  35. #if HAVE_UNISTD_H
  36. #include <unistd.h>
  37. #endif
  38. #endif
  39. #include "libavformat/avformat.h"
  40. #include "libavdevice/avdevice.h"
  41. #include "libswscale/swscale.h"
  42. #include "libswresample/swresample.h"
  43. #include "libavutil/opt.h"
  44. #include "libavutil/channel_layout.h"
  45. #include "libavutil/parseutils.h"
  46. #include "libavutil/samplefmt.h"
  47. #include "libavutil/colorspace.h"
  48. #include "libavutil/fifo.h"
  49. #include "libavutil/intreadwrite.h"
  50. #include "libavutil/dict.h"
  51. #include "libavutil/mathematics.h"
  52. #include "libavutil/pixdesc.h"
  53. #include "libavutil/avstring.h"
  54. #include "libavutil/libm.h"
  55. #include "libavutil/imgutils.h"
  56. #include "libavutil/timestamp.h"
  57. #include "libavutil/bprint.h"
  58. #include "libavutil/time.h"
  59. #include "libavformat/os_support.h"
  60. #include "libavformat/ffm.h" // not public API
  61. # include "libavfilter/avcodec.h"
  62. # include "libavfilter/avfilter.h"
  63. # include "libavfilter/avfiltergraph.h"
  64. # include "libavfilter/buffersrc.h"
  65. # include "libavfilter/buffersink.h"
  66. #if HAVE_SYS_RESOURCE_H
  67. #include <sys/time.h>
  68. #include <sys/types.h>
  69. #include <sys/resource.h>
  70. #elif HAVE_GETPROCESSTIMES
  71. #include <windows.h>
  72. #endif
  73. #if HAVE_GETPROCESSMEMORYINFO
  74. #include <windows.h>
  75. #include <psapi.h>
  76. #endif
  77. #if HAVE_SYS_SELECT_H
  78. #include <sys/select.h>
  79. #endif
  80. #if HAVE_TERMIOS_H
  81. #include <fcntl.h>
  82. #include <sys/ioctl.h>
  83. #include <sys/time.h>
  84. #include <termios.h>
  85. #elif HAVE_KBHIT
  86. #include <conio.h>
  87. #endif
  88. #if HAVE_PTHREADS
  89. #include <pthread.h>
  90. #endif
  91. #include <time.h>
  92. #include "ffmpeg.h"
  93. #include "cmdutils.h"
  94. #include "libavutil/avassert.h"
  95. const char program_name[] = "ffmpeg";
  96. const int program_birth_year = 2000;
  97. static FILE *vstats_file;
  98. static void do_video_stats(OutputStream *ost, int frame_size);
  99. static int64_t getutime(void);
  100. static int run_as_daemon = 0;
  101. static int64_t video_size = 0;
  102. static int64_t audio_size = 0;
  103. static int64_t subtitle_size = 0;
  104. static int64_t extra_size = 0;
  105. static int nb_frames_dup = 0;
  106. static int nb_frames_drop = 0;
  107. static int current_time;
  108. AVIOContext *progress_avio = NULL;
  109. static uint8_t *subtitle_out;
  110. #if HAVE_PTHREADS
  111. /* signal to input threads that they should exit; set by the main thread */
  112. static int transcoding_finished;
  113. #endif
  114. #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
  115. InputStream **input_streams = NULL;
  116. int nb_input_streams = 0;
  117. InputFile **input_files = NULL;
  118. int nb_input_files = 0;
  119. OutputStream **output_streams = NULL;
  120. int nb_output_streams = 0;
  121. OutputFile **output_files = NULL;
  122. int nb_output_files = 0;
  123. FilterGraph **filtergraphs;
  124. int nb_filtergraphs;
  125. #if HAVE_TERMIOS_H
  126. /* init terminal so that we can grab keys */
  127. static struct termios oldtty;
  128. static int restore_tty;
  129. #endif
  130. /* sub2video hack:
  131. Convert subtitles to video with alpha to insert them in filter graphs.
  132. This is a temporary solution until libavfilter gets real subtitles support.
  133. */
  134. static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
  135. AVSubtitleRect *r)
  136. {
  137. uint32_t *pal, *dst2;
  138. uint8_t *src, *src2;
  139. int x, y;
  140. if (r->type != SUBTITLE_BITMAP) {
  141. av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
  142. return;
  143. }
  144. if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
  145. av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle overflowing\n");
  146. return;
  147. }
  148. dst += r->y * dst_linesize + r->x * 4;
  149. src = r->pict.data[0];
  150. pal = (uint32_t *)r->pict.data[1];
  151. for (y = 0; y < r->h; y++) {
  152. dst2 = (uint32_t *)dst;
  153. src2 = src;
  154. for (x = 0; x < r->w; x++)
  155. *(dst2++) = pal[*(src2++)];
  156. dst += dst_linesize;
  157. src += r->pict.linesize[0];
  158. }
  159. }
  160. static void sub2video_push_ref(InputStream *ist, int64_t pts)
  161. {
  162. AVFilterBufferRef *ref = ist->sub2video.ref;
  163. int i;
  164. ist->sub2video.last_pts = ref->pts = pts;
  165. for (i = 0; i < ist->nb_filters; i++)
  166. av_buffersrc_add_ref(ist->filters[i]->filter,
  167. avfilter_ref_buffer(ref, ~0),
  168. AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
  169. AV_BUFFERSRC_FLAG_NO_COPY |
  170. AV_BUFFERSRC_FLAG_PUSH);
  171. }
  172. static void sub2video_update(InputStream *ist, AVSubtitle *sub)
  173. {
  174. int w = ist->sub2video.w, h = ist->sub2video.h;
  175. AVFilterBufferRef *ref = ist->sub2video.ref;
  176. int8_t *dst;
  177. int dst_linesize;
  178. int i;
  179. int64_t pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ist->st->time_base);
  180. if (!ref)
  181. return;
  182. dst = ref->data [0];
  183. dst_linesize = ref->linesize[0];
  184. memset(dst, 0, h * dst_linesize);
  185. for (i = 0; i < sub->num_rects; i++)
  186. sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
  187. sub2video_push_ref(ist, pts);
  188. }
  189. static void sub2video_heartbeat(InputStream *ist, int64_t pts)
  190. {
  191. InputFile *infile = input_files[ist->file_index];
  192. int i, j, nb_reqs;
  193. int64_t pts2;
  194. /* When a frame is read from a file, examine all sub2video streams in
  195. the same file and send the sub2video frame again. Otherwise, decoded
  196. video frames could be accumulating in the filter graph while a filter
  197. (possibly overlay) is desperately waiting for a subtitle frame. */
  198. for (i = 0; i < infile->nb_streams; i++) {
  199. InputStream *ist2 = input_streams[infile->ist_index + i];
  200. if (!ist2->sub2video.ref)
  201. continue;
  202. /* subtitles seem to be usually muxed ahead of other streams;
  203. if not, substracting a larger time here is necessary */
  204. pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
  205. /* do not send the heartbeat frame if the subtitle is already ahead */
  206. if (pts2 <= ist2->sub2video.last_pts)
  207. continue;
  208. for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
  209. nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
  210. if (nb_reqs)
  211. sub2video_push_ref(ist2, pts2);
  212. }
  213. }
  214. static void sub2video_flush(InputStream *ist)
  215. {
  216. int i;
  217. for (i = 0; i < ist->nb_filters; i++)
  218. av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
  219. }
  220. /* end of sub2video hack */
  221. void term_exit(void)
  222. {
  223. av_log(NULL, AV_LOG_QUIET, "%s", "");
  224. #if HAVE_TERMIOS_H
  225. if(restore_tty)
  226. tcsetattr (0, TCSANOW, &oldtty);
  227. #endif
  228. }
  229. static volatile int received_sigterm = 0;
  230. static volatile int received_nb_signals = 0;
  231. static void
  232. sigterm_handler(int sig)
  233. {
  234. received_sigterm = sig;
  235. received_nb_signals++;
  236. term_exit();
  237. if(received_nb_signals > 3)
  238. exit(123);
  239. }
  240. void term_init(void)
  241. {
  242. #if HAVE_TERMIOS_H
  243. if(!run_as_daemon){
  244. struct termios tty;
  245. int istty = 1;
  246. #if HAVE_ISATTY
  247. istty = isatty(0) && isatty(2);
  248. #endif
  249. if (istty && tcgetattr (0, &tty) == 0) {
  250. oldtty = tty;
  251. restore_tty = 1;
  252. atexit(term_exit);
  253. tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
  254. |INLCR|IGNCR|ICRNL|IXON);
  255. tty.c_oflag |= OPOST;
  256. tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
  257. tty.c_cflag &= ~(CSIZE|PARENB);
  258. tty.c_cflag |= CS8;
  259. tty.c_cc[VMIN] = 1;
  260. tty.c_cc[VTIME] = 0;
  261. tcsetattr (0, TCSANOW, &tty);
  262. }
  263. signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */
  264. }
  265. #endif
  266. avformat_network_deinit();
  267. signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
  268. signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
  269. #ifdef SIGXCPU
  270. signal(SIGXCPU, sigterm_handler);
  271. #endif
  272. }
  273. /* read a key without blocking */
  274. static int read_key(void)
  275. {
  276. unsigned char ch;
  277. #if HAVE_TERMIOS_H
  278. int n = 1;
  279. struct timeval tv;
  280. fd_set rfds;
  281. FD_ZERO(&rfds);
  282. FD_SET(0, &rfds);
  283. tv.tv_sec = 0;
  284. tv.tv_usec = 0;
  285. n = select(1, &rfds, NULL, NULL, &tv);
  286. if (n > 0) {
  287. n = read(0, &ch, 1);
  288. if (n == 1)
  289. return ch;
  290. return n;
  291. }
  292. #elif HAVE_KBHIT
  293. # if HAVE_PEEKNAMEDPIPE
  294. static int is_pipe;
  295. static HANDLE input_handle;
  296. DWORD dw, nchars;
  297. if(!input_handle){
  298. input_handle = GetStdHandle(STD_INPUT_HANDLE);
  299. is_pipe = !GetConsoleMode(input_handle, &dw);
  300. }
  301. if (stdin->_cnt > 0) {
  302. read(0, &ch, 1);
  303. return ch;
  304. }
  305. if (is_pipe) {
  306. /* When running under a GUI, you will end here. */
  307. if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL))
  308. return -1;
  309. //Read it
  310. if(nchars != 0) {
  311. read(0, &ch, 1);
  312. return ch;
  313. }else{
  314. return -1;
  315. }
  316. }
  317. # endif
  318. if(kbhit())
  319. return(getch());
  320. #endif
  321. return -1;
  322. }
  323. static int decode_interrupt_cb(void *ctx)
  324. {
  325. return received_nb_signals > 1;
  326. }
  327. const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
  328. static void exit_program(void)
  329. {
  330. int i, j;
  331. for (i = 0; i < nb_filtergraphs; i++) {
  332. avfilter_graph_free(&filtergraphs[i]->graph);
  333. for (j = 0; j < filtergraphs[i]->nb_inputs; j++) {
  334. av_freep(&filtergraphs[i]->inputs[j]->name);
  335. av_freep(&filtergraphs[i]->inputs[j]);
  336. }
  337. av_freep(&filtergraphs[i]->inputs);
  338. for (j = 0; j < filtergraphs[i]->nb_outputs; j++) {
  339. av_freep(&filtergraphs[i]->outputs[j]->name);
  340. av_freep(&filtergraphs[i]->outputs[j]);
  341. }
  342. av_freep(&filtergraphs[i]->outputs);
  343. av_freep(&filtergraphs[i]);
  344. }
  345. av_freep(&filtergraphs);
  346. av_freep(&subtitle_out);
  347. /* close files */
  348. for (i = 0; i < nb_output_files; i++) {
  349. AVFormatContext *s = output_files[i]->ctx;
  350. if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
  351. avio_close(s->pb);
  352. avformat_free_context(s);
  353. av_dict_free(&output_files[i]->opts);
  354. av_freep(&output_files[i]);
  355. }
  356. for (i = 0; i < nb_output_streams; i++) {
  357. AVBitStreamFilterContext *bsfc = output_streams[i]->bitstream_filters;
  358. while (bsfc) {
  359. AVBitStreamFilterContext *next = bsfc->next;
  360. av_bitstream_filter_close(bsfc);
  361. bsfc = next;
  362. }
  363. output_streams[i]->bitstream_filters = NULL;
  364. avcodec_free_frame(&output_streams[i]->filtered_frame);
  365. av_freep(&output_streams[i]->forced_keyframes);
  366. av_freep(&output_streams[i]->avfilter);
  367. av_freep(&output_streams[i]->logfile_prefix);
  368. av_freep(&output_streams[i]);
  369. }
  370. for (i = 0; i < nb_input_files; i++) {
  371. avformat_close_input(&input_files[i]->ctx);
  372. av_freep(&input_files[i]);
  373. }
  374. for (i = 0; i < nb_input_streams; i++) {
  375. avcodec_free_frame(&input_streams[i]->decoded_frame);
  376. av_dict_free(&input_streams[i]->opts);
  377. free_buffer_pool(&input_streams[i]->buffer_pool);
  378. avfilter_unref_bufferp(&input_streams[i]->sub2video.ref);
  379. av_freep(&input_streams[i]->filters);
  380. av_freep(&input_streams[i]);
  381. }
  382. if (vstats_file)
  383. fclose(vstats_file);
  384. av_free(vstats_filename);
  385. av_freep(&input_streams);
  386. av_freep(&input_files);
  387. av_freep(&output_streams);
  388. av_freep(&output_files);
  389. uninit_opts();
  390. avfilter_uninit();
  391. avformat_network_deinit();
  392. if (received_sigterm) {
  393. av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
  394. (int) received_sigterm);
  395. exit (255);
  396. }
  397. }
  398. void assert_avoptions(AVDictionary *m)
  399. {
  400. AVDictionaryEntry *t;
  401. if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
  402. av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
  403. exit(1);
  404. }
  405. }
  406. static void abort_codec_experimental(AVCodec *c, int encoder)
  407. {
  408. exit(1);
  409. }
  410. static void update_benchmark(const char *fmt, ...)
  411. {
  412. if (do_benchmark_all) {
  413. int64_t t = getutime();
  414. va_list va;
  415. char buf[1024];
  416. if (fmt) {
  417. va_start(va, fmt);
  418. vsnprintf(buf, sizeof(buf), fmt, va);
  419. va_end(va);
  420. printf("bench: %8"PRIu64" %s \n", t - current_time, buf);
  421. }
  422. current_time = t;
  423. }
  424. }
  425. static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
  426. {
  427. AVBitStreamFilterContext *bsfc = ost->bitstream_filters;
  428. AVCodecContext *avctx = ost->st->codec;
  429. int ret;
  430. if ((avctx->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) ||
  431. (avctx->codec_type == AVMEDIA_TYPE_AUDIO && audio_sync_method < 0))
  432. pkt->pts = pkt->dts = AV_NOPTS_VALUE;
  433. if ((avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) && pkt->dts != AV_NOPTS_VALUE) {
  434. int64_t max = ost->st->cur_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
  435. if (ost->st->cur_dts && ost->st->cur_dts != AV_NOPTS_VALUE && max > pkt->dts) {
  436. av_log(s, max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG,
  437. "st:%d PTS: %"PRId64" DTS: %"PRId64" < %"PRId64" invalid, clipping\n", pkt->stream_index, pkt->pts, pkt->dts, max);
  438. if(pkt->pts >= pkt->dts)
  439. pkt->pts = FFMAX(pkt->pts, max);
  440. pkt->dts = max;
  441. }
  442. }
  443. /*
  444. * Audio encoders may split the packets -- #frames in != #packets out.
  445. * But there is no reordering, so we can limit the number of output packets
  446. * by simply dropping them here.
  447. * Counting encoded video frames needs to be done separately because of
  448. * reordering, see do_video_out()
  449. */
  450. if (!(avctx->codec_type == AVMEDIA_TYPE_VIDEO && avctx->codec)) {
  451. if (ost->frame_number >= ost->max_frames) {
  452. av_free_packet(pkt);
  453. return;
  454. }
  455. ost->frame_number++;
  456. }
  457. while (bsfc) {
  458. AVPacket new_pkt = *pkt;
  459. int a = av_bitstream_filter_filter(bsfc, avctx, NULL,
  460. &new_pkt.data, &new_pkt.size,
  461. pkt->data, pkt->size,
  462. pkt->flags & AV_PKT_FLAG_KEY);
  463. if(a == 0 && new_pkt.data != pkt->data && new_pkt.destruct) {
  464. 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
  465. if(t) {
  466. memcpy(t, new_pkt.data, new_pkt.size);
  467. memset(t + new_pkt.size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
  468. new_pkt.data = t;
  469. a = 1;
  470. } else
  471. a = AVERROR(ENOMEM);
  472. }
  473. if (a > 0) {
  474. av_free_packet(pkt);
  475. new_pkt.destruct = av_destruct_packet;
  476. } else if (a < 0) {
  477. av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
  478. bsfc->filter->name, pkt->stream_index,
  479. avctx->codec ? avctx->codec->name : "copy");
  480. print_error("", a);
  481. if (exit_on_error)
  482. exit(1);
  483. }
  484. *pkt = new_pkt;
  485. bsfc = bsfc->next;
  486. }
  487. pkt->stream_index = ost->index;
  488. if (debug_ts) {
  489. av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
  490. "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
  491. av_get_media_type_string(ost->st->codec->codec_type),
  492. av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
  493. av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
  494. pkt->size
  495. );
  496. }
  497. ret = av_interleaved_write_frame(s, pkt);
  498. if (ret < 0) {
  499. print_error("av_interleaved_write_frame()", ret);
  500. exit(1);
  501. }
  502. }
  503. static void close_output_stream(OutputStream *ost)
  504. {
  505. OutputFile *of = output_files[ost->file_index];
  506. ost->finished = 1;
  507. if (of->shortest) {
  508. int i;
  509. for (i = 0; i < of->ctx->nb_streams; i++)
  510. output_streams[of->ost_index + i]->finished = 1;
  511. }
  512. }
  513. static int check_recording_time(OutputStream *ost)
  514. {
  515. OutputFile *of = output_files[ost->file_index];
  516. if (of->recording_time != INT64_MAX &&
  517. av_compare_ts(ost->sync_opts - ost->first_pts, ost->st->codec->time_base, of->recording_time,
  518. AV_TIME_BASE_Q) >= 0) {
  519. close_output_stream(ost);
  520. return 0;
  521. }
  522. return 1;
  523. }
  524. static void do_audio_out(AVFormatContext *s, OutputStream *ost,
  525. AVFrame *frame)
  526. {
  527. AVCodecContext *enc = ost->st->codec;
  528. AVPacket pkt;
  529. int got_packet = 0;
  530. av_init_packet(&pkt);
  531. pkt.data = NULL;
  532. pkt.size = 0;
  533. if (!check_recording_time(ost))
  534. return;
  535. if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
  536. frame->pts = ost->sync_opts;
  537. ost->sync_opts = frame->pts + frame->nb_samples;
  538. av_assert0(pkt.size || !pkt.data);
  539. update_benchmark(NULL);
  540. if (avcodec_encode_audio2(enc, &pkt, frame, &got_packet) < 0) {
  541. av_log(NULL, AV_LOG_FATAL, "Audio encoding failed (avcodec_encode_audio2)\n");
  542. exit(1);
  543. }
  544. update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
  545. if (got_packet) {
  546. if (pkt.pts != AV_NOPTS_VALUE)
  547. pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
  548. if (pkt.dts != AV_NOPTS_VALUE)
  549. pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
  550. if (pkt.duration > 0)
  551. pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
  552. if (debug_ts) {
  553. av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
  554. "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
  555. av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
  556. av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
  557. }
  558. audio_size += pkt.size;
  559. write_frame(s, &pkt, ost);
  560. av_free_packet(&pkt);
  561. }
  562. }
  563. static void pre_process_video_frame(InputStream *ist, AVPicture *picture, void **bufp)
  564. {
  565. AVCodecContext *dec;
  566. AVPicture *picture2;
  567. AVPicture picture_tmp;
  568. uint8_t *buf = 0;
  569. dec = ist->st->codec;
  570. /* deinterlace : must be done before any resize */
  571. if (do_deinterlace) {
  572. int size;
  573. /* create temporary picture */
  574. size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height);
  575. if (size < 0)
  576. return;
  577. buf = av_malloc(size);
  578. if (!buf)
  579. return;
  580. picture2 = &picture_tmp;
  581. avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height);
  582. if (avpicture_deinterlace(picture2, picture,
  583. dec->pix_fmt, dec->width, dec->height) < 0) {
  584. /* if error, do not deinterlace */
  585. av_log(NULL, AV_LOG_WARNING, "Deinterlacing failed\n");
  586. av_free(buf);
  587. buf = NULL;
  588. picture2 = picture;
  589. }
  590. } else {
  591. picture2 = picture;
  592. }
  593. if (picture != picture2)
  594. *picture = *picture2;
  595. *bufp = buf;
  596. }
  597. static void do_subtitle_out(AVFormatContext *s,
  598. OutputStream *ost,
  599. InputStream *ist,
  600. AVSubtitle *sub)
  601. {
  602. int subtitle_out_max_size = 1024 * 1024;
  603. int subtitle_out_size, nb, i;
  604. AVCodecContext *enc;
  605. AVPacket pkt;
  606. int64_t pts;
  607. if (sub->pts == AV_NOPTS_VALUE) {
  608. av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
  609. if (exit_on_error)
  610. exit(1);
  611. return;
  612. }
  613. enc = ost->st->codec;
  614. if (!subtitle_out) {
  615. subtitle_out = av_malloc(subtitle_out_max_size);
  616. }
  617. /* Note: DVB subtitle need one packet to draw them and one other
  618. packet to clear them */
  619. /* XXX: signal it in the codec context ? */
  620. if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
  621. nb = 2;
  622. else
  623. nb = 1;
  624. /* shift timestamp to honor -ss and make check_recording_time() work with -t */
  625. pts = sub->pts - output_files[ost->file_index]->start_time;
  626. for (i = 0; i < nb; i++) {
  627. ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
  628. if (!check_recording_time(ost))
  629. return;
  630. sub->pts = pts;
  631. // start_display_time is required to be 0
  632. sub->pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
  633. sub->end_display_time -= sub->start_display_time;
  634. sub->start_display_time = 0;
  635. if (i == 1)
  636. sub->num_rects = 0;
  637. subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
  638. subtitle_out_max_size, sub);
  639. if (subtitle_out_size < 0) {
  640. av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
  641. exit(1);
  642. }
  643. av_init_packet(&pkt);
  644. pkt.data = subtitle_out;
  645. pkt.size = subtitle_out_size;
  646. pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
  647. pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->st->time_base);
  648. if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
  649. /* XXX: the pts correction is handled here. Maybe handling
  650. it in the codec would be better */
  651. if (i == 0)
  652. pkt.pts += 90 * sub->start_display_time;
  653. else
  654. pkt.pts += 90 * sub->end_display_time;
  655. }
  656. subtitle_size += pkt.size;
  657. write_frame(s, &pkt, ost);
  658. }
  659. }
  660. static void do_video_out(AVFormatContext *s,
  661. OutputStream *ost,
  662. AVFrame *in_picture)
  663. {
  664. int ret, format_video_sync;
  665. AVPacket pkt;
  666. AVCodecContext *enc = ost->st->codec;
  667. int nb_frames, i;
  668. double sync_ipts, delta;
  669. double duration = 0;
  670. int frame_size = 0;
  671. InputStream *ist = NULL;
  672. if (ost->source_index >= 0)
  673. ist = input_streams[ost->source_index];
  674. if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
  675. duration = 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base));
  676. sync_ipts = in_picture->pts;
  677. delta = sync_ipts - ost->sync_opts + duration;
  678. /* by default, we output a single frame */
  679. nb_frames = 1;
  680. format_video_sync = video_sync_method;
  681. if (format_video_sync == VSYNC_AUTO)
  682. format_video_sync = (s->oformat->flags & AVFMT_VARIABLE_FPS) ? ((s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : 1;
  683. switch (format_video_sync) {
  684. case VSYNC_CFR:
  685. // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
  686. if (delta < -1.1)
  687. nb_frames = 0;
  688. else if (delta > 1.1)
  689. nb_frames = lrintf(delta);
  690. break;
  691. case VSYNC_VFR:
  692. if (delta <= -0.6)
  693. nb_frames = 0;
  694. else if (delta > 0.6)
  695. ost->sync_opts = lrint(sync_ipts);
  696. break;
  697. case VSYNC_DROP:
  698. case VSYNC_PASSTHROUGH:
  699. ost->sync_opts = lrint(sync_ipts);
  700. break;
  701. default:
  702. av_assert0(0);
  703. }
  704. nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
  705. if (nb_frames == 0) {
  706. nb_frames_drop++;
  707. av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
  708. return;
  709. } else if (nb_frames > 1) {
  710. if (nb_frames > dts_error_threshold * 30) {
  711. av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
  712. nb_frames_drop++;
  713. return;
  714. }
  715. nb_frames_dup += nb_frames - 1;
  716. av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
  717. }
  718. /* duplicates frame if needed */
  719. for (i = 0; i < nb_frames; i++) {
  720. av_init_packet(&pkt);
  721. pkt.data = NULL;
  722. pkt.size = 0;
  723. in_picture->pts = ost->sync_opts;
  724. if (!check_recording_time(ost))
  725. return;
  726. if (s->oformat->flags & AVFMT_RAWPICTURE &&
  727. enc->codec->id == AV_CODEC_ID_RAWVIDEO) {
  728. /* raw pictures are written as AVPicture structure to
  729. avoid any copies. We support temporarily the older
  730. method. */
  731. enc->coded_frame->interlaced_frame = in_picture->interlaced_frame;
  732. enc->coded_frame->top_field_first = in_picture->top_field_first;
  733. if (enc->coded_frame->interlaced_frame)
  734. enc->field_order = enc->coded_frame->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
  735. else
  736. enc->field_order = AV_FIELD_PROGRESSIVE;
  737. pkt.data = (uint8_t *)in_picture;
  738. pkt.size = sizeof(AVPicture);
  739. pkt.pts = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
  740. pkt.flags |= AV_PKT_FLAG_KEY;
  741. video_size += pkt.size;
  742. write_frame(s, &pkt, ost);
  743. } else {
  744. int got_packet;
  745. AVFrame big_picture;
  746. big_picture = *in_picture;
  747. /* better than nothing: use input picture interlaced
  748. settings */
  749. big_picture.interlaced_frame = in_picture->interlaced_frame;
  750. if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)) {
  751. if (ost->top_field_first == -1)
  752. big_picture.top_field_first = in_picture->top_field_first;
  753. else
  754. big_picture.top_field_first = !!ost->top_field_first;
  755. }
  756. if (big_picture.interlaced_frame) {
  757. if (enc->codec->id == AV_CODEC_ID_MJPEG)
  758. enc->field_order = big_picture.top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
  759. else
  760. enc->field_order = big_picture.top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
  761. } else
  762. enc->field_order = AV_FIELD_PROGRESSIVE;
  763. big_picture.quality = ost->st->codec->global_quality;
  764. if (!enc->me_threshold)
  765. big_picture.pict_type = 0;
  766. if (ost->forced_kf_index < ost->forced_kf_count &&
  767. big_picture.pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
  768. big_picture.pict_type = AV_PICTURE_TYPE_I;
  769. ost->forced_kf_index++;
  770. }
  771. update_benchmark(NULL);
  772. ret = avcodec_encode_video2(enc, &pkt, &big_picture, &got_packet);
  773. update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
  774. if (ret < 0) {
  775. av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
  776. exit(1);
  777. }
  778. if (got_packet) {
  779. if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & CODEC_CAP_DELAY))
  780. pkt.pts = ost->sync_opts;
  781. if (pkt.pts != AV_NOPTS_VALUE)
  782. pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
  783. if (pkt.dts != AV_NOPTS_VALUE)
  784. pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
  785. if (debug_ts) {
  786. av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
  787. "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
  788. av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->st->time_base),
  789. av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->st->time_base));
  790. }
  791. frame_size = pkt.size;
  792. video_size += pkt.size;
  793. write_frame(s, &pkt, ost);
  794. av_free_packet(&pkt);
  795. /* if two pass, output log */
  796. if (ost->logfile && enc->stats_out) {
  797. fprintf(ost->logfile, "%s", enc->stats_out);
  798. }
  799. }
  800. }
  801. ost->sync_opts++;
  802. /*
  803. * For video, number of frames in == number of packets out.
  804. * But there may be reordering, so we can't throw away frames on encoder
  805. * flush, we need to limit them here, before they go into encoder.
  806. */
  807. ost->frame_number++;
  808. }
  809. if (vstats_filename && frame_size)
  810. do_video_stats(ost, frame_size);
  811. }
  812. static double psnr(double d)
  813. {
  814. return -10.0 * log(d) / log(10.0);
  815. }
  816. static void do_video_stats(OutputStream *ost, int frame_size)
  817. {
  818. AVCodecContext *enc;
  819. int frame_number;
  820. double ti1, bitrate, avg_bitrate;
  821. /* this is executed just the first time do_video_stats is called */
  822. if (!vstats_file) {
  823. vstats_file = fopen(vstats_filename, "w");
  824. if (!vstats_file) {
  825. perror("fopen");
  826. exit(1);
  827. }
  828. }
  829. enc = ost->st->codec;
  830. if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
  831. frame_number = ost->frame_number;
  832. fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality / (float)FF_QP2LAMBDA);
  833. if (enc->flags&CODEC_FLAG_PSNR)
  834. fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
  835. fprintf(vstats_file,"f_size= %6d ", frame_size);
  836. /* compute pts value */
  837. ti1 = ost->sync_opts * av_q2d(enc->time_base);
  838. if (ti1 < 0.01)
  839. ti1 = 0.01;
  840. bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
  841. avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0;
  842. fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
  843. (double)video_size / 1024, ti1, bitrate, avg_bitrate);
  844. fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type));
  845. }
  846. }
  847. /**
  848. * Get and encode new output from any of the filtergraphs, without causing
  849. * activity.
  850. *
  851. * @return 0 for success, <0 for severe errors
  852. */
  853. static int reap_filters(void)
  854. {
  855. AVFilterBufferRef *picref;
  856. AVFrame *filtered_frame = NULL;
  857. int i;
  858. int64_t frame_pts;
  859. /* Reap all buffers present in the buffer sinks */
  860. for (i = 0; i < nb_output_streams; i++) {
  861. OutputStream *ost = output_streams[i];
  862. OutputFile *of = output_files[ost->file_index];
  863. int ret = 0;
  864. if (!ost->filter)
  865. continue;
  866. if (!ost->filtered_frame && !(ost->filtered_frame = avcodec_alloc_frame())) {
  867. return AVERROR(ENOMEM);
  868. } else
  869. avcodec_get_frame_defaults(ost->filtered_frame);
  870. filtered_frame = ost->filtered_frame;
  871. while (1) {
  872. ret = av_buffersink_get_buffer_ref(ost->filter->filter, &picref,
  873. AV_BUFFERSINK_FLAG_NO_REQUEST);
  874. if (ret < 0) {
  875. if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
  876. char buf[256];
  877. av_strerror(ret, buf, sizeof(buf));
  878. av_log(NULL, AV_LOG_WARNING,
  879. "Error in av_buffersink_get_buffer_ref(): %s\n", buf);
  880. }
  881. break;
  882. }
  883. frame_pts = AV_NOPTS_VALUE;
  884. if (picref->pts != AV_NOPTS_VALUE) {
  885. filtered_frame->pts = frame_pts = av_rescale_q(picref->pts,
  886. ost->filter->filter->inputs[0]->time_base,
  887. ost->st->codec->time_base) -
  888. av_rescale_q(of->start_time,
  889. AV_TIME_BASE_Q,
  890. ost->st->codec->time_base);
  891. if (of->start_time && filtered_frame->pts < 0) {
  892. avfilter_unref_buffer(picref);
  893. continue;
  894. }
  895. }
  896. //if (ost->source_index >= 0)
  897. // *filtered_frame= *input_streams[ost->source_index]->decoded_frame; //for me_threshold
  898. switch (ost->filter->filter->inputs[0]->type) {
  899. case AVMEDIA_TYPE_VIDEO:
  900. avfilter_copy_buf_props(filtered_frame, picref);
  901. filtered_frame->pts = frame_pts;
  902. if (!ost->frame_aspect_ratio)
  903. ost->st->codec->sample_aspect_ratio = picref->video->sample_aspect_ratio;
  904. do_video_out(of->ctx, ost, filtered_frame);
  905. break;
  906. case AVMEDIA_TYPE_AUDIO:
  907. avfilter_copy_buf_props(filtered_frame, picref);
  908. filtered_frame->pts = frame_pts;
  909. do_audio_out(of->ctx, ost, filtered_frame);
  910. break;
  911. default:
  912. // TODO support subtitle filters
  913. av_assert0(0);
  914. }
  915. avfilter_unref_buffer(picref);
  916. }
  917. }
  918. return 0;
  919. }
  920. static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
  921. {
  922. char buf[1024];
  923. AVBPrint buf_script;
  924. OutputStream *ost;
  925. AVFormatContext *oc;
  926. int64_t total_size;
  927. AVCodecContext *enc;
  928. int frame_number, vid, i;
  929. double bitrate;
  930. int64_t pts = INT64_MIN;
  931. static int64_t last_time = -1;
  932. static int qp_histogram[52];
  933. int hours, mins, secs, us;
  934. if (!print_stats && !is_last_report && !progress_avio)
  935. return;
  936. if (!is_last_report) {
  937. if (last_time == -1) {
  938. last_time = cur_time;
  939. return;
  940. }
  941. if ((cur_time - last_time) < 500000)
  942. return;
  943. last_time = cur_time;
  944. }
  945. oc = output_files[0]->ctx;
  946. total_size = avio_size(oc->pb);
  947. if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
  948. total_size = avio_tell(oc->pb);
  949. if (total_size < 0) {
  950. char errbuf[128];
  951. av_strerror(total_size, errbuf, sizeof(errbuf));
  952. av_log(NULL, AV_LOG_VERBOSE, "Bitrate not available, "
  953. "avio_tell() failed: %s\n", errbuf);
  954. total_size = 0;
  955. }
  956. buf[0] = '\0';
  957. vid = 0;
  958. av_bprint_init(&buf_script, 0, 1);
  959. for (i = 0; i < nb_output_streams; i++) {
  960. float q = -1;
  961. ost = output_streams[i];
  962. enc = ost->st->codec;
  963. if (!ost->stream_copy && enc->coded_frame)
  964. q = enc->coded_frame->quality / (float)FF_QP2LAMBDA;
  965. if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
  966. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", q);
  967. av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
  968. ost->file_index, ost->index, q);
  969. }
  970. if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
  971. float fps, t = (cur_time-timer_start) / 1000000.0;
  972. frame_number = ost->frame_number;
  973. fps = t > 1 ? frame_number / t : 0;
  974. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3.*f q=%3.1f ",
  975. frame_number, fps < 9.95, fps, q);
  976. av_bprintf(&buf_script, "frame=%d\n", frame_number);
  977. av_bprintf(&buf_script, "fps=%.1f\n", fps);
  978. av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
  979. ost->file_index, ost->index, q);
  980. if (is_last_report)
  981. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L");
  982. if (qp_hist) {
  983. int j;
  984. int qp = lrintf(q);
  985. if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
  986. qp_histogram[qp]++;
  987. for (j = 0; j < 32; j++)
  988. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log2(qp_histogram[j] + 1)));
  989. }
  990. if ((enc->flags&CODEC_FLAG_PSNR) && (enc->coded_frame || is_last_report)) {
  991. int j;
  992. double error, error_sum = 0;
  993. double scale, scale_sum = 0;
  994. double p;
  995. char type[3] = { 'Y','U','V' };
  996. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR=");
  997. for (j = 0; j < 3; j++) {
  998. if (is_last_report) {
  999. error = enc->error[j];
  1000. scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
  1001. } else {
  1002. error = enc->coded_frame->error[j];
  1003. scale = enc->width * enc->height * 255.0 * 255.0;
  1004. }
  1005. if (j)
  1006. scale /= 4;
  1007. error_sum += error;
  1008. scale_sum += scale;
  1009. p = psnr(error / scale);
  1010. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
  1011. av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
  1012. ost->file_index, ost->index, type[i] | 32, p);
  1013. }
  1014. p = psnr(error_sum / scale_sum);
  1015. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
  1016. av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
  1017. ost->file_index, ost->index, p);
  1018. }
  1019. vid = 1;
  1020. }
  1021. /* compute min output value */
  1022. if ((is_last_report || !ost->finished) && ost->st->pts.val != AV_NOPTS_VALUE)
  1023. pts = FFMAX(pts, av_rescale_q(ost->st->pts.val,
  1024. ost->st->time_base, AV_TIME_BASE_Q));
  1025. }
  1026. secs = pts / AV_TIME_BASE;
  1027. us = pts % AV_TIME_BASE;
  1028. mins = secs / 60;
  1029. secs %= 60;
  1030. hours = mins / 60;
  1031. mins %= 60;
  1032. bitrate = pts ? total_size * 8 / (pts / 1000.0) : 0;
  1033. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
  1034. "size=%8.0fkB time=", total_size / 1024.0);
  1035. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
  1036. "%02d:%02d:%02d.%02d ", hours, mins, secs,
  1037. (100 * us) / AV_TIME_BASE);
  1038. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
  1039. "bitrate=%6.1fkbits/s", bitrate);
  1040. av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
  1041. av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
  1042. av_bprintf(&buf_script, "out_time=%02d:%02d:%02d.%06d\n",
  1043. hours, mins, secs, us);
  1044. if (nb_frames_dup || nb_frames_drop)
  1045. snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
  1046. nb_frames_dup, nb_frames_drop);
  1047. av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
  1048. av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
  1049. if (print_stats || is_last_report) {
  1050. av_log(NULL, AV_LOG_INFO, "%s \r", buf);
  1051. fflush(stderr);
  1052. }
  1053. if (progress_avio) {
  1054. av_bprintf(&buf_script, "progress=%s\n",
  1055. is_last_report ? "end" : "continue");
  1056. avio_write(progress_avio, buf_script.str,
  1057. FFMIN(buf_script.len, buf_script.size - 1));
  1058. avio_flush(progress_avio);
  1059. av_bprint_finalize(&buf_script, NULL);
  1060. if (is_last_report) {
  1061. avio_close(progress_avio);
  1062. progress_avio = NULL;
  1063. }
  1064. }
  1065. if (is_last_report) {
  1066. int64_t raw= audio_size + video_size + subtitle_size + extra_size;
  1067. av_log(NULL, AV_LOG_INFO, "\n");
  1068. av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0f global headers:%1.0fkB muxing overhead %f%%\n",
  1069. video_size / 1024.0,
  1070. audio_size / 1024.0,
  1071. subtitle_size / 1024.0,
  1072. extra_size / 1024.0,
  1073. 100.0 * (total_size - raw) / raw
  1074. );
  1075. if(video_size + audio_size + subtitle_size + extra_size == 0){
  1076. av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)\n");
  1077. }
  1078. }
  1079. }
  1080. static void flush_encoders(void)
  1081. {
  1082. int i, ret;
  1083. for (i = 0; i < nb_output_streams; i++) {
  1084. OutputStream *ost = output_streams[i];
  1085. AVCodecContext *enc = ost->st->codec;
  1086. AVFormatContext *os = output_files[ost->file_index]->ctx;
  1087. int stop_encoding = 0;
  1088. if (!ost->encoding_needed)
  1089. continue;
  1090. if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
  1091. continue;
  1092. if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
  1093. continue;
  1094. for (;;) {
  1095. int (*encode)(AVCodecContext*, AVPacket*, const AVFrame*, int*) = NULL;
  1096. const char *desc;
  1097. int64_t *size;
  1098. switch (ost->st->codec->codec_type) {
  1099. case AVMEDIA_TYPE_AUDIO:
  1100. encode = avcodec_encode_audio2;
  1101. desc = "Audio";
  1102. size = &audio_size;
  1103. break;
  1104. case AVMEDIA_TYPE_VIDEO:
  1105. encode = avcodec_encode_video2;
  1106. desc = "Video";
  1107. size = &video_size;
  1108. break;
  1109. default:
  1110. stop_encoding = 1;
  1111. }
  1112. if (encode) {
  1113. AVPacket pkt;
  1114. int got_packet;
  1115. av_init_packet(&pkt);
  1116. pkt.data = NULL;
  1117. pkt.size = 0;
  1118. update_benchmark(NULL);
  1119. ret = encode(enc, &pkt, NULL, &got_packet);
  1120. update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
  1121. if (ret < 0) {
  1122. av_log(NULL, AV_LOG_FATAL, "%s encoding failed\n", desc);
  1123. exit(1);
  1124. }
  1125. *size += pkt.size;
  1126. if (ost->logfile && enc->stats_out) {
  1127. fprintf(ost->logfile, "%s", enc->stats_out);
  1128. }
  1129. if (!got_packet) {
  1130. stop_encoding = 1;
  1131. break;
  1132. }
  1133. if (pkt.pts != AV_NOPTS_VALUE)
  1134. pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
  1135. if (pkt.dts != AV_NOPTS_VALUE)
  1136. pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
  1137. if (pkt.duration > 0)
  1138. pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
  1139. write_frame(os, &pkt, ost);
  1140. }
  1141. if (stop_encoding)
  1142. break;
  1143. }
  1144. }
  1145. }
  1146. /*
  1147. * Check whether a packet from ist should be written into ost at this time
  1148. */
  1149. static int check_output_constraints(InputStream *ist, OutputStream *ost)
  1150. {
  1151. OutputFile *of = output_files[ost->file_index];
  1152. int ist_index = input_files[ist->file_index]->ist_index + ist->st->index;
  1153. if (ost->source_index != ist_index)
  1154. return 0;
  1155. if (of->start_time && ist->pts < of->start_time)
  1156. return 0;
  1157. return 1;
  1158. }
  1159. static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
  1160. {
  1161. OutputFile *of = output_files[ost->file_index];
  1162. int64_t ost_tb_start_time = av_rescale_q(of->start_time, AV_TIME_BASE_Q, ost->st->time_base);
  1163. AVPicture pict;
  1164. AVPacket opkt;
  1165. av_init_packet(&opkt);
  1166. if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
  1167. !ost->copy_initial_nonkeyframes)
  1168. return;
  1169. if (!ost->frame_number && ist->pts < of->start_time &&
  1170. !ost->copy_prior_start)
  1171. return;
  1172. if (of->recording_time != INT64_MAX &&
  1173. ist->pts >= of->recording_time + of->start_time) {
  1174. close_output_stream(ost);
  1175. return;
  1176. }
  1177. /* force the input stream PTS */
  1178. if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
  1179. audio_size += pkt->size;
  1180. else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
  1181. video_size += pkt->size;
  1182. ost->sync_opts++;
  1183. } else if (ost->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
  1184. subtitle_size += pkt->size;
  1185. }
  1186. if (pkt->pts != AV_NOPTS_VALUE)
  1187. opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
  1188. else
  1189. opkt.pts = AV_NOPTS_VALUE;
  1190. if (pkt->dts == AV_NOPTS_VALUE)
  1191. opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->st->time_base);
  1192. else
  1193. opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
  1194. opkt.dts -= ost_tb_start_time;
  1195. if (ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->dts != AV_NOPTS_VALUE) {
  1196. int duration = av_get_audio_frame_duration(ist->st->codec, pkt->size);
  1197. if(!duration)
  1198. duration = ist->st->codec->frame_size;
  1199. opkt.dts = opkt.pts = av_rescale_delta(ist->st->time_base, pkt->dts,
  1200. (AVRational){1, ist->st->codec->sample_rate}, duration, &ist->filter_in_rescale_delta_last,
  1201. ost->st->time_base) - ost_tb_start_time;
  1202. }
  1203. opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
  1204. opkt.flags = pkt->flags;
  1205. // FIXME remove the following 2 lines they shall be replaced by the bitstream filters
  1206. if ( ost->st->codec->codec_id != AV_CODEC_ID_H264
  1207. && ost->st->codec->codec_id != AV_CODEC_ID_MPEG1VIDEO
  1208. && ost->st->codec->codec_id != AV_CODEC_ID_MPEG2VIDEO
  1209. && ost->st->codec->codec_id != AV_CODEC_ID_VC1
  1210. ) {
  1211. if (av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, pkt->data, pkt->size, pkt->flags & AV_PKT_FLAG_KEY))
  1212. opkt.destruct = av_destruct_packet;
  1213. } else {
  1214. opkt.data = pkt->data;
  1215. opkt.size = pkt->size;
  1216. }
  1217. if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat->flags & AVFMT_RAWPICTURE)) {
  1218. /* store AVPicture in AVPacket, as expected by the output format */
  1219. avpicture_fill(&pict, opkt.data, ost->st->codec->pix_fmt, ost->st->codec->width, ost->st->codec->height);
  1220. opkt.data = (uint8_t *)&pict;
  1221. opkt.size = sizeof(AVPicture);
  1222. opkt.flags |= AV_PKT_FLAG_KEY;
  1223. }
  1224. write_frame(of->ctx, &opkt, ost);
  1225. ost->st->codec->frame_number++;
  1226. }
  1227. static void rate_emu_sleep(InputStream *ist)
  1228. {
  1229. if (input_files[ist->file_index]->rate_emu) {
  1230. int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
  1231. int64_t now = av_gettime() - ist->start;
  1232. if (pts > now)
  1233. av_usleep(pts - now);
  1234. }
  1235. }
  1236. int guess_input_channel_layout(InputStream *ist)
  1237. {
  1238. AVCodecContext *dec = ist->st->codec;
  1239. if (!dec->channel_layout) {
  1240. char layout_name[256];
  1241. dec->channel_layout = av_get_default_channel_layout(dec->channels);
  1242. if (!dec->channel_layout)
  1243. return 0;
  1244. av_get_channel_layout_string(layout_name, sizeof(layout_name),
  1245. dec->channels, dec->channel_layout);
  1246. av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
  1247. "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
  1248. }
  1249. return 1;
  1250. }
  1251. static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output)
  1252. {
  1253. AVFrame *decoded_frame;
  1254. AVCodecContext *avctx = ist->st->codec;
  1255. int i, ret, resample_changed;
  1256. AVRational decoded_frame_tb;
  1257. if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
  1258. return AVERROR(ENOMEM);
  1259. decoded_frame = ist->decoded_frame;
  1260. update_benchmark(NULL);
  1261. ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
  1262. update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
  1263. if (ret >= 0 && avctx->sample_rate <= 0) {
  1264. av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
  1265. ret = AVERROR_INVALIDDATA;
  1266. }
  1267. if (!*got_output || ret < 0) {
  1268. if (!pkt->size) {
  1269. for (i = 0; i < ist->nb_filters; i++)
  1270. av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
  1271. }
  1272. return ret;
  1273. }
  1274. #if 1
  1275. /* increment next_dts to use for the case where the input stream does not
  1276. have timestamps or there are multiple frames in the packet */
  1277. ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
  1278. avctx->sample_rate;
  1279. ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
  1280. avctx->sample_rate;
  1281. #endif
  1282. rate_emu_sleep(ist);
  1283. resample_changed = ist->resample_sample_fmt != decoded_frame->format ||
  1284. ist->resample_channels != avctx->channels ||
  1285. ist->resample_channel_layout != decoded_frame->channel_layout ||
  1286. ist->resample_sample_rate != decoded_frame->sample_rate;
  1287. if (resample_changed) {
  1288. char layout1[64], layout2[64];
  1289. if (!guess_input_channel_layout(ist)) {
  1290. av_log(NULL, AV_LOG_FATAL, "Unable to find default channel "
  1291. "layout for Input Stream #%d.%d\n", ist->file_index,
  1292. ist->st->index);
  1293. exit(1);
  1294. }
  1295. decoded_frame->channel_layout = avctx->channel_layout;
  1296. av_get_channel_layout_string(layout1, sizeof(layout1), ist->resample_channels,
  1297. ist->resample_channel_layout);
  1298. av_get_channel_layout_string(layout2, sizeof(layout2), avctx->channels,
  1299. decoded_frame->channel_layout);
  1300. av_log(NULL, AV_LOG_INFO,
  1301. "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",
  1302. ist->file_index, ist->st->index,
  1303. ist->resample_sample_rate, av_get_sample_fmt_name(ist->resample_sample_fmt),
  1304. ist->resample_channels, layout1,
  1305. decoded_frame->sample_rate, av_get_sample_fmt_name(decoded_frame->format),
  1306. avctx->channels, layout2);
  1307. ist->resample_sample_fmt = decoded_frame->format;
  1308. ist->resample_sample_rate = decoded_frame->sample_rate;
  1309. ist->resample_channel_layout = decoded_frame->channel_layout;
  1310. ist->resample_channels = avctx->channels;
  1311. for (i = 0; i < nb_filtergraphs; i++)
  1312. if (ist_in_filtergraph(filtergraphs[i], ist)) {
  1313. FilterGraph *fg = filtergraphs[i];
  1314. int j;
  1315. if (configure_filtergraph(fg) < 0) {
  1316. av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
  1317. exit(1);
  1318. }
  1319. for (j = 0; j < fg->nb_outputs; j++) {
  1320. OutputStream *ost = fg->outputs[j]->ost;
  1321. if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
  1322. !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
  1323. av_buffersink_set_frame_size(ost->filter->filter,
  1324. ost->st->codec->frame_size);
  1325. }
  1326. }
  1327. }
  1328. /* if the decoder provides a pts, use it instead of the last packet pts.
  1329. the decoder could be delaying output by a packet or more. */
  1330. if (decoded_frame->pts != AV_NOPTS_VALUE) {
  1331. ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
  1332. decoded_frame_tb = avctx->time_base;
  1333. } else if (decoded_frame->pkt_pts != AV_NOPTS_VALUE) {
  1334. decoded_frame->pts = decoded_frame->pkt_pts;
  1335. pkt->pts = AV_NOPTS_VALUE;
  1336. decoded_frame_tb = ist->st->time_base;
  1337. } else if (pkt->pts != AV_NOPTS_VALUE) {
  1338. decoded_frame->pts = pkt->pts;
  1339. pkt->pts = AV_NOPTS_VALUE;
  1340. decoded_frame_tb = ist->st->time_base;
  1341. }else {
  1342. decoded_frame->pts = ist->dts;
  1343. decoded_frame_tb = AV_TIME_BASE_Q;
  1344. }
  1345. if (decoded_frame->pts != AV_NOPTS_VALUE)
  1346. decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
  1347. (AVRational){1, ist->st->codec->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
  1348. (AVRational){1, ist->st->codec->sample_rate});
  1349. for (i = 0; i < ist->nb_filters; i++)
  1350. av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame,
  1351. AV_BUFFERSRC_FLAG_PUSH);
  1352. decoded_frame->pts = AV_NOPTS_VALUE;
  1353. return ret;
  1354. }
  1355. static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
  1356. {
  1357. AVFrame *decoded_frame;
  1358. void *buffer_to_free = NULL;
  1359. int i, ret = 0, resample_changed;
  1360. int64_t best_effort_timestamp;
  1361. AVRational *frame_sample_aspect;
  1362. if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
  1363. return AVERROR(ENOMEM);
  1364. decoded_frame = ist->decoded_frame;
  1365. pkt->dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
  1366. update_benchmark(NULL);
  1367. ret = avcodec_decode_video2(ist->st->codec,
  1368. decoded_frame, got_output, pkt);
  1369. update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
  1370. if (!*got_output || ret < 0) {
  1371. if (!pkt->size) {
  1372. for (i = 0; i < ist->nb_filters; i++)
  1373. av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
  1374. }
  1375. return ret;
  1376. }
  1377. if(ist->top_field_first>=0)
  1378. decoded_frame->top_field_first = ist->top_field_first;
  1379. best_effort_timestamp= av_frame_get_best_effort_timestamp(decoded_frame);
  1380. if(best_effort_timestamp != AV_NOPTS_VALUE)
  1381. ist->next_pts = ist->pts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);
  1382. if (debug_ts) {
  1383. av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
  1384. "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d \n",
  1385. ist->st->index, av_ts2str(decoded_frame->pts),
  1386. av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
  1387. best_effort_timestamp,
  1388. av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
  1389. decoded_frame->key_frame, decoded_frame->pict_type);
  1390. }
  1391. pkt->size = 0;
  1392. pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free);
  1393. rate_emu_sleep(ist);
  1394. if (ist->st->sample_aspect_ratio.num)
  1395. decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
  1396. resample_changed = ist->resample_width != decoded_frame->width ||
  1397. ist->resample_height != decoded_frame->height ||
  1398. ist->resample_pix_fmt != decoded_frame->format;
  1399. if (resample_changed) {
  1400. av_log(NULL, AV_LOG_INFO,
  1401. "Input stream #%d:%d frame changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
  1402. ist->file_index, ist->st->index,
  1403. ist->resample_width, ist->resample_height, av_get_pix_fmt_name(ist->resample_pix_fmt),
  1404. decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
  1405. ist->resample_width = decoded_frame->width;
  1406. ist->resample_height = decoded_frame->height;
  1407. ist->resample_pix_fmt = decoded_frame->format;
  1408. for (i = 0; i < nb_filtergraphs; i++) {
  1409. if (ist_in_filtergraph(filtergraphs[i], ist) && ist->reinit_filters &&
  1410. configure_filtergraph(filtergraphs[i]) < 0) {
  1411. av_log(NULL, AV_LOG_FATAL, "Error reinitializing filters!\n");
  1412. exit(1);
  1413. }
  1414. }
  1415. }
  1416. frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
  1417. for (i = 0; i < ist->nb_filters; i++) {
  1418. int changed = ist->st->codec->width != ist->filters[i]->filter->outputs[0]->w
  1419. || ist->st->codec->height != ist->filters[i]->filter->outputs[0]->h
  1420. || ist->st->codec->pix_fmt != ist->filters[i]->filter->outputs[0]->format;
  1421. if (!frame_sample_aspect->num)
  1422. *frame_sample_aspect = ist->st->sample_aspect_ratio;
  1423. if (ist->dr1 && decoded_frame->type==FF_BUFFER_TYPE_USER && !changed) {
  1424. FrameBuffer *buf = decoded_frame->opaque;
  1425. AVFilterBufferRef *fb = avfilter_get_video_buffer_ref_from_arrays(
  1426. decoded_frame->data, decoded_frame->linesize,
  1427. AV_PERM_READ | AV_PERM_PRESERVE,
  1428. ist->st->codec->width, ist->st->codec->height,
  1429. ist->st->codec->pix_fmt);
  1430. avfilter_copy_frame_props(fb, decoded_frame);
  1431. fb->buf->priv = buf;
  1432. fb->buf->free = filter_release_buffer;
  1433. av_assert0(buf->refcount>0);
  1434. buf->refcount++;
  1435. av_buffersrc_add_ref(ist->filters[i]->filter, fb,
  1436. AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
  1437. AV_BUFFERSRC_FLAG_NO_COPY |
  1438. AV_BUFFERSRC_FLAG_PUSH);
  1439. } else
  1440. if(av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame, AV_BUFFERSRC_FLAG_PUSH)<0) {
  1441. av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");
  1442. exit(1);
  1443. }
  1444. }
  1445. av_free(buffer_to_free);
  1446. return ret;
  1447. }
  1448. static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
  1449. {
  1450. AVSubtitle subtitle;
  1451. int i, ret = avcodec_decode_subtitle2(ist->st->codec,
  1452. &subtitle, got_output, pkt);
  1453. if (ret < 0 || !*got_output) {
  1454. if (!pkt->size)
  1455. sub2video_flush(ist);
  1456. return ret;
  1457. }
  1458. if (ist->fix_sub_duration) {
  1459. if (ist->prev_sub.got_output) {
  1460. int end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
  1461. 1000, AV_TIME_BASE);
  1462. if (end < ist->prev_sub.subtitle.end_display_time) {
  1463. av_log(ist->st->codec, AV_LOG_DEBUG,
  1464. "Subtitle duration reduced from %d to %d\n",
  1465. ist->prev_sub.subtitle.end_display_time, end);
  1466. ist->prev_sub.subtitle.end_display_time = end;
  1467. }
  1468. }
  1469. FFSWAP(int, *got_output, ist->prev_sub.got_output);
  1470. FFSWAP(int, ret, ist->prev_sub.ret);
  1471. FFSWAP(AVSubtitle, subtitle, ist->prev_sub.subtitle);
  1472. }
  1473. sub2video_update(ist, &subtitle);
  1474. if (!*got_output || !subtitle.num_rects)
  1475. return ret;
  1476. rate_emu_sleep(ist);
  1477. for (i = 0; i < nb_output_streams; i++) {
  1478. OutputStream *ost = output_streams[i];
  1479. if (!check_output_constraints(ist, ost) || !ost->encoding_needed)
  1480. continue;
  1481. do_subtitle_out(output_files[ost->file_index]->ctx, ost, ist, &subtitle);
  1482. }
  1483. avsubtitle_free(&subtitle);
  1484. return ret;
  1485. }
  1486. /* pkt = NULL means EOF (needed to flush decoder buffers) */
  1487. static int output_packet(InputStream *ist, const AVPacket *pkt)
  1488. {
  1489. int ret = 0, i;
  1490. int got_output;
  1491. AVPacket avpkt;
  1492. if (!ist->saw_first_ts) {
  1493. ist->dts = ist->st->avg_frame_rate.num ? - ist->st->codec->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
  1494. ist->pts = 0;
  1495. if (pkt != NULL && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
  1496. ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
  1497. ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
  1498. }
  1499. ist->saw_first_ts = 1;
  1500. }
  1501. if (ist->next_dts == AV_NOPTS_VALUE)
  1502. ist->next_dts = ist->dts;
  1503. if (ist->next_pts == AV_NOPTS_VALUE)
  1504. ist->next_pts = ist->pts;
  1505. if (pkt == NULL) {
  1506. /* EOF handling */
  1507. av_init_packet(&avpkt);
  1508. avpkt.data = NULL;
  1509. avpkt.size = 0;
  1510. goto handle_eof;
  1511. } else {
  1512. avpkt = *pkt;
  1513. }
  1514. if (pkt->dts != AV_NOPTS_VALUE) {
  1515. ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
  1516. if (ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
  1517. ist->next_pts = ist->pts = ist->dts;
  1518. }
  1519. // while we have more to decode or while the decoder did output something on EOF
  1520. while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
  1521. int duration;
  1522. handle_eof:
  1523. ist->pts = ist->next_pts;
  1524. ist->dts = ist->next_dts;
  1525. if (avpkt.size && avpkt.size != pkt->size) {
  1526. av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
  1527. "Multiple frames in a packet from stream %d\n", pkt->stream_index);
  1528. ist->showed_multi_packet_warning = 1;
  1529. }
  1530. switch (ist->st->codec->codec_type) {
  1531. case AVMEDIA_TYPE_AUDIO:
  1532. ret = decode_audio (ist, &avpkt, &got_output);
  1533. break;
  1534. case AVMEDIA_TYPE_VIDEO:
  1535. ret = decode_video (ist, &avpkt, &got_output);
  1536. if (avpkt.duration) {
  1537. duration = av_rescale_q(avpkt.duration, ist->st->time_base, AV_TIME_BASE_Q);
  1538. } else if(ist->st->codec->time_base.num != 0 && ist->st->codec->time_base.den != 0) {
  1539. int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame;
  1540. duration = ((int64_t)AV_TIME_BASE *
  1541. ist->st->codec->time_base.num * ticks) /
  1542. ist->st->codec->time_base.den;
  1543. } else
  1544. duration = 0;
  1545. if(ist->dts != AV_NOPTS_VALUE && duration) {
  1546. ist->next_dts += duration;
  1547. }else
  1548. ist->next_dts = AV_NOPTS_VALUE;
  1549. if (got_output)
  1550. ist->next_pts += duration; //FIXME the duration is not correct in some cases
  1551. break;
  1552. case AVMEDIA_TYPE_SUBTITLE:
  1553. ret = transcode_subtitles(ist, &avpkt, &got_output);
  1554. break;
  1555. default:
  1556. return -1;
  1557. }
  1558. if (ret < 0)
  1559. return ret;
  1560. avpkt.dts=
  1561. avpkt.pts= AV_NOPTS_VALUE;
  1562. // touch data and size only if not EOF
  1563. if (pkt) {
  1564. if(ist->st->codec->codec_type != AVMEDIA_TYPE_AUDIO)
  1565. ret = avpkt.size;
  1566. avpkt.data += ret;
  1567. avpkt.size -= ret;
  1568. }
  1569. if (!got_output) {
  1570. continue;
  1571. }
  1572. }
  1573. /* handle stream copy */
  1574. if (!ist->decoding_needed) {
  1575. rate_emu_sleep(ist);
  1576. ist->dts = ist->next_dts;
  1577. switch (ist->st->codec->codec_type) {
  1578. case AVMEDIA_TYPE_AUDIO:
  1579. ist->next_dts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) /
  1580. ist->st->codec->sample_rate;
  1581. break;
  1582. case AVMEDIA_TYPE_VIDEO:
  1583. if (pkt->duration) {
  1584. ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
  1585. } else if(ist->st->codec->time_base.num != 0) {
  1586. int ticks= ist->st->parser ? ist->st->parser->repeat_pict + 1 : ist->st->codec->ticks_per_frame;
  1587. ist->next_dts += ((int64_t)AV_TIME_BASE *
  1588. ist->st->codec->time_base.num * ticks) /
  1589. ist->st->codec->time_base.den;
  1590. }
  1591. break;
  1592. }
  1593. ist->pts = ist->dts;
  1594. ist->next_pts = ist->next_dts;
  1595. }
  1596. for (i = 0; pkt && i < nb_output_streams; i++) {
  1597. OutputStream *ost = output_streams[i];
  1598. if (!check_output_constraints(ist, ost) || ost->encoding_needed)
  1599. continue;
  1600. do_streamcopy(ist, ost, pkt);
  1601. }
  1602. return 0;
  1603. }
  1604. static void print_sdp(void)
  1605. {
  1606. char sdp[2048];
  1607. int i;
  1608. AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
  1609. if (!avc)
  1610. exit(1);
  1611. for (i = 0; i < nb_output_files; i++)
  1612. avc[i] = output_files[i]->ctx;
  1613. av_sdp_create(avc, nb_output_files, sdp, sizeof(sdp));
  1614. printf("SDP:\n%s\n", sdp);
  1615. fflush(stdout);
  1616. av_freep(&avc);
  1617. }
  1618. static int init_input_stream(int ist_index, char *error, int error_len)
  1619. {
  1620. int ret;
  1621. InputStream *ist = input_streams[ist_index];
  1622. if (ist->decoding_needed) {
  1623. AVCodec *codec = ist->dec;
  1624. if (!codec) {
  1625. snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
  1626. avcodec_get_name(ist->st->codec->codec_id), ist->file_index, ist->st->index);
  1627. return AVERROR(EINVAL);
  1628. }
  1629. ist->dr1 = (codec->capabilities & CODEC_CAP_DR1) && !do_deinterlace;
  1630. if (codec->type == AVMEDIA_TYPE_VIDEO && ist->dr1) {
  1631. ist->st->codec->get_buffer = codec_get_buffer;
  1632. ist->st->codec->release_buffer = codec_release_buffer;
  1633. ist->st->codec->opaque = &ist->buffer_pool;
  1634. }
  1635. if (!av_dict_get(ist->opts, "threads", NULL, 0))
  1636. av_dict_set(&ist->opts, "threads", "auto", 0);
  1637. if ((ret = avcodec_open2(ist->st->codec, codec, &ist->opts)) < 0) {
  1638. if (ret == AVERROR_EXPERIMENTAL)
  1639. abort_codec_experimental(codec, 0);
  1640. snprintf(error, error_len, "Error while opening decoder for input stream #%d:%d",
  1641. ist->file_index, ist->st->index);
  1642. return ret;
  1643. }
  1644. assert_avoptions(ist->opts);
  1645. }
  1646. ist->next_pts = AV_NOPTS_VALUE;
  1647. ist->next_dts = AV_NOPTS_VALUE;
  1648. ist->is_start = 1;
  1649. return 0;
  1650. }
  1651. static InputStream *get_input_stream(OutputStream *ost)
  1652. {
  1653. if (ost->source_index >= 0)
  1654. return input_streams[ost->source_index];
  1655. return NULL;
  1656. }
  1657. static void parse_forced_key_frames(char *kf, OutputStream *ost,
  1658. AVCodecContext *avctx)
  1659. {
  1660. char *p;
  1661. int n = 1, i;
  1662. int64_t t;
  1663. for (p = kf; *p; p++)
  1664. if (*p == ',')
  1665. n++;
  1666. ost->forced_kf_count = n;
  1667. ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n);
  1668. if (!ost->forced_kf_pts) {
  1669. av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
  1670. exit(1);
  1671. }
  1672. p = kf;
  1673. for (i = 0; i < n; i++) {
  1674. char *next = strchr(p, ',');
  1675. if (next)
  1676. *next++ = 0;
  1677. t = parse_time_or_die("force_key_frames", p, 1);
  1678. ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);
  1679. p = next;
  1680. }
  1681. }
  1682. static void report_new_stream(int input_index, AVPacket *pkt)
  1683. {
  1684. InputFile *file = input_files[input_index];
  1685. AVStream *st = file->ctx->streams[pkt->stream_index];
  1686. if (pkt->stream_index < file->nb_streams_warn)
  1687. return;
  1688. av_log(file->ctx, AV_LOG_WARNING,
  1689. "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
  1690. av_get_media_type_string(st->codec->codec_type),
  1691. input_index, pkt->stream_index,
  1692. pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
  1693. file->nb_streams_warn = pkt->stream_index + 1;
  1694. }
  1695. static int transcode_init(void)
  1696. {
  1697. int ret = 0, i, j, k;
  1698. AVFormatContext *oc;
  1699. AVCodecContext *codec;
  1700. OutputStream *ost;
  1701. InputStream *ist;
  1702. char error[1024];
  1703. int want_sdp = 1;
  1704. /* init framerate emulation */
  1705. for (i = 0; i < nb_input_files; i++) {
  1706. InputFile *ifile = input_files[i];
  1707. if (ifile->rate_emu)
  1708. for (j = 0; j < ifile->nb_streams; j++)
  1709. input_streams[j + ifile->ist_index]->start = av_gettime();
  1710. }
  1711. /* output stream init */
  1712. for (i = 0; i < nb_output_files; i++) {
  1713. oc = output_files[i]->ctx;
  1714. if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
  1715. av_dump_format(oc, i, oc->filename, 1);
  1716. av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", i);
  1717. return AVERROR(EINVAL);
  1718. }
  1719. }
  1720. /* init complex filtergraphs */
  1721. for (i = 0; i < nb_filtergraphs; i++)
  1722. if ((ret = avfilter_graph_config(filtergraphs[i]->graph, NULL)) < 0)
  1723. return ret;
  1724. /* for each output stream, we compute the right encoding parameters */
  1725. for (i = 0; i < nb_output_streams; i++) {
  1726. AVCodecContext *icodec = NULL;
  1727. ost = output_streams[i];
  1728. oc = output_files[ost->file_index]->ctx;
  1729. ist = get_input_stream(ost);
  1730. if (ost->attachment_filename)
  1731. continue;
  1732. codec = ost->st->codec;
  1733. if (ist) {
  1734. icodec = ist->st->codec;
  1735. ost->st->disposition = ist->st->disposition;
  1736. codec->bits_per_raw_sample = icodec->bits_per_raw_sample;
  1737. codec->chroma_sample_location = icodec->chroma_sample_location;
  1738. }
  1739. if (ost->stream_copy) {
  1740. uint64_t extra_size;
  1741. av_assert0(ist && !ost->filter);
  1742. extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE;
  1743. if (extra_size > INT_MAX) {
  1744. return AVERROR(EINVAL);
  1745. }
  1746. /* if stream_copy is selected, no need to decode or encode */
  1747. codec->codec_id = icodec->codec_id;
  1748. codec->codec_type = icodec->codec_type;
  1749. if (!codec->codec_tag) {
  1750. if (!oc->oformat->codec_tag ||
  1751. av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == codec->codec_id ||
  1752. av_codec_get_tag(oc->oformat->codec_tag, icodec->codec_id) <= 0)
  1753. codec->codec_tag = icodec->codec_tag;
  1754. }
  1755. codec->bit_rate = icodec->bit_rate;
  1756. codec->rc_max_rate = icodec->rc_max_rate;
  1757. codec->rc_buffer_size = icodec->rc_buffer_size;
  1758. codec->field_order = icodec->field_order;
  1759. codec->extradata = av_mallocz(extra_size);
  1760. if (!codec->extradata) {
  1761. return AVERROR(ENOMEM);
  1762. }
  1763. memcpy(codec->extradata, icodec->extradata, icodec->extradata_size);
  1764. codec->extradata_size= icodec->extradata_size;
  1765. codec->bits_per_coded_sample = icodec->bits_per_coded_sample;
  1766. codec->time_base = ist->st->time_base;
  1767. /*
  1768. * Avi is a special case here because it supports variable fps but
  1769. * having the fps and timebase differe significantly adds quite some
  1770. * overhead
  1771. */
  1772. if(!strcmp(oc->oformat->name, "avi")) {
  1773. if ( copy_tb<0 && av_q2d(ist->st->r_frame_rate) >= av_q2d(ist->st->avg_frame_rate)
  1774. && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(ist->st->time_base)
  1775. && 0.5/av_q2d(ist->st->r_frame_rate) > av_q2d(icodec->time_base)
  1776. && av_q2d(ist->st->time_base) < 1.0/500 && av_q2d(icodec->time_base) < 1.0/500
  1777. || copy_tb==2){
  1778. codec->time_base.num = ist->st->r_frame_rate.den;
  1779. codec->time_base.den = 2*ist->st->r_frame_rate.num;
  1780. codec->ticks_per_frame = 2;
  1781. } else if ( copy_tb<0 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > 2*av_q2d(ist->st->time_base)
  1782. && av_q2d(ist->st->time_base) < 1.0/500
  1783. || copy_tb==0){
  1784. codec->time_base = icodec->time_base;
  1785. codec->time_base.num *= icodec->ticks_per_frame;
  1786. codec->time_base.den *= 2;
  1787. codec->ticks_per_frame = 2;
  1788. }
  1789. } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
  1790. && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
  1791. && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
  1792. && strcmp(oc->oformat->name, "f4v")
  1793. ) {
  1794. if( copy_tb<0 && icodec->time_base.den
  1795. && av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base)
  1796. && av_q2d(ist->st->time_base) < 1.0/500
  1797. || copy_tb==0){
  1798. codec->time_base = icodec->time_base;
  1799. codec->time_base.num *= icodec->ticks_per_frame;
  1800. }
  1801. }
  1802. if(ost->frame_rate.num)
  1803. codec->time_base = av_inv_q(ost->frame_rate);
  1804. av_reduce(&codec->time_base.num, &codec->time_base.den,
  1805. codec->time_base.num, codec->time_base.den, INT_MAX);
  1806. switch (codec->codec_type) {
  1807. case AVMEDIA_TYPE_AUDIO:
  1808. if (audio_volume != 256) {
  1809. av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
  1810. exit(1);
  1811. }
  1812. codec->channel_layout = icodec->channel_layout;
  1813. codec->sample_rate = icodec->sample_rate;
  1814. codec->channels = icodec->channels;
  1815. codec->frame_size = icodec->frame_size;
  1816. codec->audio_service_type = icodec->audio_service_type;
  1817. codec->block_align = icodec->block_align;
  1818. if((codec->block_align == 1 || codec->block_align == 1152) && codec->codec_id == AV_CODEC_ID_MP3)
  1819. codec->block_align= 0;
  1820. if(codec->codec_id == AV_CODEC_ID_AC3)
  1821. codec->block_align= 0;
  1822. break;
  1823. case AVMEDIA_TYPE_VIDEO:
  1824. codec->pix_fmt = icodec->pix_fmt;
  1825. codec->width = icodec->width;
  1826. codec->height = icodec->height;
  1827. codec->has_b_frames = icodec->has_b_frames;
  1828. if (!codec->sample_aspect_ratio.num) {
  1829. codec->sample_aspect_ratio =
  1830. ost->st->sample_aspect_ratio =
  1831. ist->st->sample_aspect_ratio.num ? ist->st->sample_aspect_ratio :
  1832. ist->st->codec->sample_aspect_ratio.num ?
  1833. ist->st->codec->sample_aspect_ratio : (AVRational){0, 1};
  1834. }
  1835. ost->st->avg_frame_rate = ist->st->avg_frame_rate;
  1836. break;
  1837. case AVMEDIA_TYPE_SUBTITLE:
  1838. codec->width = icodec->width;
  1839. codec->height = icodec->height;
  1840. break;
  1841. case AVMEDIA_TYPE_DATA:
  1842. case AVMEDIA_TYPE_ATTACHMENT:
  1843. break;
  1844. default:
  1845. abort();
  1846. }
  1847. } else {
  1848. if (!ost->enc)
  1849. ost->enc = avcodec_find_encoder(codec->codec_id);
  1850. if (!ost->enc) {
  1851. /* should only happen when a default codec is not present. */
  1852. snprintf(error, sizeof(error), "Encoder (codec %s) not found for output stream #%d:%d",
  1853. avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
  1854. ret = AVERROR(EINVAL);
  1855. goto dump_format;
  1856. }
  1857. if (ist)
  1858. ist->decoding_needed++;
  1859. ost->encoding_needed = 1;
  1860. if (!ost->filter &&
  1861. (codec->codec_type == AVMEDIA_TYPE_VIDEO ||
  1862. codec->codec_type == AVMEDIA_TYPE_AUDIO)) {
  1863. FilterGraph *fg;
  1864. fg = init_simple_filtergraph(ist, ost);
  1865. if (configure_filtergraph(fg)) {
  1866. av_log(NULL, AV_LOG_FATAL, "Error opening filters!\n");
  1867. exit(1);
  1868. }
  1869. }
  1870. if (codec->codec_type == AVMEDIA_TYPE_VIDEO) {
  1871. if (ost->filter && !ost->frame_rate.num)
  1872. ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
  1873. if (ist && !ost->frame_rate.num)
  1874. ost->frame_rate = ist->framerate;
  1875. if (ist && !ost->frame_rate.num)
  1876. ost->frame_rate = ist->st->r_frame_rate.num ? ist->st->r_frame_rate : (AVRational){25, 1};
  1877. // ost->frame_rate = ist->st->avg_frame_rate.num ? ist->st->avg_frame_rate : (AVRational){25, 1};
  1878. if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
  1879. int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
  1880. ost->frame_rate = ost->enc->supported_framerates[idx];
  1881. }
  1882. }
  1883. switch (codec->codec_type) {
  1884. case AVMEDIA_TYPE_AUDIO:
  1885. codec->sample_fmt = ost->filter->filter->inputs[0]->format;
  1886. codec->sample_rate = ost->filter->filter->inputs[0]->sample_rate;
  1887. codec->channel_layout = ost->filter->filter->inputs[0]->channel_layout;
  1888. codec->channels = av_get_channel_layout_nb_channels(codec->channel_layout);
  1889. codec->time_base = (AVRational){ 1, codec->sample_rate };
  1890. break;
  1891. case AVMEDIA_TYPE_VIDEO:
  1892. codec->time_base = av_inv_q(ost->frame_rate);
  1893. if (ost->filter && !(codec->time_base.num && codec->time_base.den))
  1894. codec->time_base = ost->filter->filter->inputs[0]->time_base;
  1895. if ( av_q2d(codec->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
  1896. && (video_sync_method == VSYNC_CFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
  1897. av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
  1898. "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
  1899. }
  1900. for (j = 0; j < ost->forced_kf_count; j++)
  1901. ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],
  1902. AV_TIME_BASE_Q,
  1903. codec->time_base);
  1904. codec->width = ost->filter->filter->inputs[0]->w;
  1905. codec->height = ost->filter->filter->inputs[0]->h;
  1906. codec->sample_aspect_ratio = ost->st->sample_aspect_ratio =
  1907. ost->frame_aspect_ratio ? // overridden by the -aspect cli option
  1908. av_d2q(ost->frame_aspect_ratio * codec->height/codec->width, 255) :
  1909. ost->filter->filter->inputs[0]->sample_aspect_ratio;
  1910. codec->pix_fmt = ost->filter->filter->inputs[0]->format;
  1911. if (!icodec ||
  1912. codec->width != icodec->width ||
  1913. codec->height != icodec->height ||
  1914. codec->pix_fmt != icodec->pix_fmt) {
  1915. codec->bits_per_raw_sample = frame_bits_per_raw_sample;
  1916. }
  1917. if (ost->forced_keyframes)
  1918. parse_forced_key_frames(ost->forced_keyframes, ost,
  1919. ost->st->codec);
  1920. break;
  1921. case AVMEDIA_TYPE_SUBTITLE:
  1922. codec->time_base = (AVRational){1, 1000};
  1923. if (!codec->width) {
  1924. codec->width = input_streams[ost->source_index]->st->codec->width;
  1925. codec->height = input_streams[ost->source_index]->st->codec->height;
  1926. }
  1927. break;
  1928. default:
  1929. abort();
  1930. break;
  1931. }
  1932. /* two pass mode */
  1933. if (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)) {
  1934. char logfilename[1024];
  1935. FILE *f;
  1936. snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
  1937. ost->logfile_prefix ? ost->logfile_prefix :
  1938. DEFAULT_PASS_LOGFILENAME_PREFIX,
  1939. i);
  1940. if (!strcmp(ost->enc->name, "libx264")) {
  1941. av_dict_set(&ost->opts, "stats", logfilename, AV_DICT_DONT_OVERWRITE);
  1942. } else {
  1943. if (codec->flags & CODEC_FLAG_PASS2) {
  1944. char *logbuffer;
  1945. size_t logbuffer_size;
  1946. if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
  1947. av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
  1948. logfilename);
  1949. exit(1);
  1950. }
  1951. codec->stats_in = logbuffer;
  1952. }
  1953. if (codec->flags & CODEC_FLAG_PASS1) {
  1954. f = fopen(logfilename, "wb");
  1955. if (!f) {
  1956. av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",
  1957. logfilename, strerror(errno));
  1958. exit(1);
  1959. }
  1960. ost->logfile = f;
  1961. }
  1962. }
  1963. }
  1964. }
  1965. }
  1966. /* open each encoder */
  1967. for (i = 0; i < nb_output_streams; i++) {
  1968. ost = output_streams[i];
  1969. if (ost->encoding_needed) {
  1970. AVCodec *codec = ost->enc;
  1971. AVCodecContext *dec = NULL;
  1972. if ((ist = get_input_stream(ost)))
  1973. dec = ist->st->codec;
  1974. if (dec && dec->subtitle_header) {
  1975. /* ASS code assumes this buffer is null terminated so add extra byte. */
  1976. ost->st->codec->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
  1977. if (!ost->st->codec->subtitle_header) {
  1978. ret = AVERROR(ENOMEM);
  1979. goto dump_format;
  1980. }
  1981. memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
  1982. ost->st->codec->subtitle_header_size = dec->subtitle_header_size;
  1983. }
  1984. if (!av_dict_get(ost->opts, "threads", NULL, 0))
  1985. av_dict_set(&ost->opts, "threads", "auto", 0);
  1986. if ((ret = avcodec_open2(ost->st->codec, codec, &ost->opts)) < 0) {
  1987. if (ret == AVERROR_EXPERIMENTAL)
  1988. abort_codec_experimental(codec, 1);
  1989. snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",
  1990. ost->file_index, ost->index);
  1991. goto dump_format;
  1992. }
  1993. if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
  1994. !(ost->enc->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE))
  1995. av_buffersink_set_frame_size(ost->filter->filter,
  1996. ost->st->codec->frame_size);
  1997. assert_avoptions(ost->opts);
  1998. if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)
  1999. av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
  2000. " It takes bits/s as argument, not kbits/s\n");
  2001. extra_size += ost->st->codec->extradata_size;
  2002. if (ost->st->codec->me_threshold)
  2003. input_streams[ost->source_index]->st->codec->debug |= FF_DEBUG_MV;
  2004. }
  2005. }
  2006. /* init input streams */
  2007. for (i = 0; i < nb_input_streams; i++)
  2008. if ((ret = init_input_stream(i, error, sizeof(error))) < 0)
  2009. goto dump_format;
  2010. /* discard unused programs */
  2011. for (i = 0; i < nb_input_files; i++) {
  2012. InputFile *ifile = input_files[i];
  2013. for (j = 0; j < ifile->ctx->nb_programs; j++) {
  2014. AVProgram *p = ifile->ctx->programs[j];
  2015. int discard = AVDISCARD_ALL;
  2016. for (k = 0; k < p->nb_stream_indexes; k++)
  2017. if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
  2018. discard = AVDISCARD_DEFAULT;
  2019. break;
  2020. }
  2021. p->discard = discard;
  2022. }
  2023. }
  2024. /* open files and write file headers */
  2025. for (i = 0; i < nb_output_files; i++) {
  2026. oc = output_files[i]->ctx;
  2027. oc->interrupt_callback = int_cb;
  2028. if ((ret = avformat_write_header(oc, &output_files[i]->opts)) < 0) {
  2029. char errbuf[128];
  2030. const char *errbuf_ptr = errbuf;
  2031. if (av_strerror(ret, errbuf, sizeof(errbuf)) < 0)
  2032. errbuf_ptr = strerror(AVUNERROR(ret));
  2033. snprintf(error, sizeof(error), "Could not write header for output file #%d (incorrect codec parameters ?): %s", i, errbuf_ptr);
  2034. ret = AVERROR(EINVAL);
  2035. goto dump_format;
  2036. }
  2037. // assert_avoptions(output_files[i]->opts);
  2038. if (strcmp(oc->oformat->name, "rtp")) {
  2039. want_sdp = 0;
  2040. }
  2041. }
  2042. dump_format:
  2043. /* dump the file output parameters - cannot be done before in case
  2044. of stream copy */
  2045. for (i = 0; i < nb_output_files; i++) {
  2046. av_dump_format(output_files[i]->ctx, i, output_files[i]->ctx->filename, 1);
  2047. }
  2048. /* dump the stream mapping */
  2049. av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
  2050. for (i = 0; i < nb_input_streams; i++) {
  2051. ist = input_streams[i];
  2052. for (j = 0; j < ist->nb_filters; j++) {
  2053. if (ist->filters[j]->graph->graph_desc) {
  2054. av_log(NULL, AV_LOG_INFO, " Stream #%d:%d (%s) -> %s",
  2055. ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
  2056. ist->filters[j]->name);
  2057. if (nb_filtergraphs > 1)
  2058. av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
  2059. av_log(NULL, AV_LOG_INFO, "\n");
  2060. }
  2061. }
  2062. }
  2063. for (i = 0; i < nb_output_streams; i++) {
  2064. ost = output_streams[i];
  2065. if (ost->attachment_filename) {
  2066. /* an attached file */
  2067. av_log(NULL, AV_LOG_INFO, " File %s -> Stream #%d:%d\n",
  2068. ost->attachment_filename, ost->file_index, ost->index);
  2069. continue;
  2070. }
  2071. if (ost->filter && ost->filter->graph->graph_desc) {
  2072. /* output from a complex graph */
  2073. av_log(NULL, AV_LOG_INFO, " %s", ost->filter->name);
  2074. if (nb_filtergraphs > 1)
  2075. av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
  2076. av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
  2077. ost->index, ost->enc ? ost->enc->name : "?");
  2078. continue;
  2079. }
  2080. av_log(NULL, AV_LOG_INFO, " Stream #%d:%d -> #%d:%d",
  2081. input_streams[ost->source_index]->file_index,
  2082. input_streams[ost->source_index]->st->index,
  2083. ost->file_index,
  2084. ost->index);
  2085. if (ost->sync_ist != input_streams[ost->source_index])
  2086. av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
  2087. ost->sync_ist->file_index,
  2088. ost->sync_ist->st->index);
  2089. if (ost->stream_copy)
  2090. av_log(NULL, AV_LOG_INFO, " (copy)");
  2091. else
  2092. av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
  2093. input_streams[ost->source_index]->dec->name : "?",
  2094. ost->enc ? ost->enc->name : "?");
  2095. av_log(NULL, AV_LOG_INFO, "\n");
  2096. }
  2097. if (ret) {
  2098. av_log(NULL, AV_LOG_ERROR, "%s\n", error);
  2099. return ret;
  2100. }
  2101. if (want_sdp) {
  2102. print_sdp();
  2103. }
  2104. return 0;
  2105. }
  2106. /* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
  2107. static int need_output(void)
  2108. {
  2109. int i;
  2110. for (i = 0; i < nb_output_streams; i++) {
  2111. OutputStream *ost = output_streams[i];
  2112. OutputFile *of = output_files[ost->file_index];
  2113. AVFormatContext *os = output_files[ost->file_index]->ctx;
  2114. if (ost->finished ||
  2115. (os->pb && avio_tell(os->pb) >= of->limit_filesize))
  2116. continue;
  2117. if (ost->frame_number >= ost->max_frames) {
  2118. int j;
  2119. for (j = 0; j < of->ctx->nb_streams; j++)
  2120. close_output_stream(output_streams[of->ost_index + j]);
  2121. continue;
  2122. }
  2123. return 1;
  2124. }
  2125. return 0;
  2126. }
  2127. /**
  2128. * Select the output stream to process.
  2129. *
  2130. * @return selected output stream, or NULL if none available
  2131. */
  2132. static OutputStream *choose_output(void)
  2133. {
  2134. int i;
  2135. int64_t opts_min = INT64_MAX;
  2136. OutputStream *ost_min = NULL;
  2137. for (i = 0; i < nb_output_streams; i++) {
  2138. OutputStream *ost = output_streams[i];
  2139. int64_t opts = av_rescale_q(ost->st->cur_dts, ost->st->time_base,
  2140. AV_TIME_BASE_Q);
  2141. if (!ost->unavailable && !ost->finished && opts < opts_min) {
  2142. opts_min = opts;
  2143. ost_min = ost;
  2144. }
  2145. }
  2146. return ost_min;
  2147. }
  2148. static int check_keyboard_interaction(int64_t cur_time)
  2149. {
  2150. int i, ret, key;
  2151. static int64_t last_time;
  2152. if (received_nb_signals)
  2153. return AVERROR_EXIT;
  2154. /* read_key() returns 0 on EOF */
  2155. if(cur_time - last_time >= 100000 && !run_as_daemon){
  2156. key = read_key();
  2157. last_time = cur_time;
  2158. }else
  2159. key = -1;
  2160. if (key == 'q')
  2161. return AVERROR_EXIT;
  2162. if (key == '+') av_log_set_level(av_log_get_level()+10);
  2163. if (key == '-') av_log_set_level(av_log_get_level()-10);
  2164. if (key == 's') qp_hist ^= 1;
  2165. if (key == 'h'){
  2166. if (do_hex_dump){
  2167. do_hex_dump = do_pkt_dump = 0;
  2168. } else if(do_pkt_dump){
  2169. do_hex_dump = 1;
  2170. } else
  2171. do_pkt_dump = 1;
  2172. av_log_set_level(AV_LOG_DEBUG);
  2173. }
  2174. if (key == 'c' || key == 'C'){
  2175. char buf[4096], target[64], command[256], arg[256] = {0};
  2176. double time;
  2177. int k, n = 0;
  2178. fprintf(stderr, "\nEnter command: <target> <time> <command>[ <argument>]\n");
  2179. i = 0;
  2180. while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
  2181. if (k > 0)
  2182. buf[i++] = k;
  2183. buf[i] = 0;
  2184. if (k > 0 &&
  2185. (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
  2186. av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
  2187. target, time, command, arg);
  2188. for (i = 0; i < nb_filtergraphs; i++) {
  2189. FilterGraph *fg = filtergraphs[i];
  2190. if (fg->graph) {
  2191. if (time < 0) {
  2192. ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
  2193. key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
  2194. fprintf(stderr, "Command reply for stream %d: ret:%d res:%s\n", i, ret, buf);
  2195. } else {
  2196. ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
  2197. }
  2198. }
  2199. }
  2200. } else {
  2201. av_log(NULL, AV_LOG_ERROR,
  2202. "Parse error, at least 3 arguments were expected, "
  2203. "only %d given in string '%s'\n", n, buf);
  2204. }
  2205. }
  2206. if (key == 'd' || key == 'D'){
  2207. int debug=0;
  2208. if(key == 'D') {
  2209. debug = input_streams[0]->st->codec->debug<<1;
  2210. if(!debug) debug = 1;
  2211. while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash
  2212. debug += debug;
  2213. }else
  2214. if(scanf("%d", &debug)!=1)
  2215. fprintf(stderr,"error parsing debug value\n");
  2216. for(i=0;i<nb_input_streams;i++) {
  2217. input_streams[i]->st->codec->debug = debug;
  2218. }
  2219. for(i=0;i<nb_output_streams;i++) {
  2220. OutputStream *ost = output_streams[i];
  2221. ost->st->codec->debug = debug;
  2222. }
  2223. if(debug) av_log_set_level(AV_LOG_DEBUG);
  2224. fprintf(stderr,"debug=%d\n", debug);
  2225. }
  2226. if (key == '?'){
  2227. fprintf(stderr, "key function\n"
  2228. "? show this help\n"
  2229. "+ increase verbosity\n"
  2230. "- decrease verbosity\n"
  2231. "c Send command to filtergraph\n"
  2232. "D cycle through available debug modes\n"
  2233. "h dump packets/hex press to cycle through the 3 states\n"
  2234. "q quit\n"
  2235. "s Show QP histogram\n"
  2236. );
  2237. }
  2238. return 0;
  2239. }
  2240. #if HAVE_PTHREADS
  2241. static void *input_thread(void *arg)
  2242. {
  2243. InputFile *f = arg;
  2244. int ret = 0;
  2245. while (!transcoding_finished && ret >= 0) {
  2246. AVPacket pkt;
  2247. ret = av_read_frame(f->ctx, &pkt);
  2248. if (ret == AVERROR(EAGAIN)) {
  2249. av_usleep(10000);
  2250. ret = 0;
  2251. continue;
  2252. } else if (ret < 0)
  2253. break;
  2254. pthread_mutex_lock(&f->fifo_lock);
  2255. while (!av_fifo_space(f->fifo))
  2256. pthread_cond_wait(&f->fifo_cond, &f->fifo_lock);
  2257. av_dup_packet(&pkt);
  2258. av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL);
  2259. pthread_mutex_unlock(&f->fifo_lock);
  2260. }
  2261. f->finished = 1;
  2262. return NULL;
  2263. }
  2264. static void free_input_threads(void)
  2265. {
  2266. int i;
  2267. if (nb_input_files == 1)
  2268. return;
  2269. transcoding_finished = 1;
  2270. for (i = 0; i < nb_input_files; i++) {
  2271. InputFile *f = input_files[i];
  2272. AVPacket pkt;
  2273. if (!f->fifo || f->joined)
  2274. continue;
  2275. pthread_mutex_lock(&f->fifo_lock);
  2276. while (av_fifo_size(f->fifo)) {
  2277. av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
  2278. av_free_packet(&pkt);
  2279. }
  2280. pthread_cond_signal(&f->fifo_cond);
  2281. pthread_mutex_unlock(&f->fifo_lock);
  2282. pthread_join(f->thread, NULL);
  2283. f->joined = 1;
  2284. while (av_fifo_size(f->fifo)) {
  2285. av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
  2286. av_free_packet(&pkt);
  2287. }
  2288. av_fifo_free(f->fifo);
  2289. }
  2290. }
  2291. static int init_input_threads(void)
  2292. {
  2293. int i, ret;
  2294. if (nb_input_files == 1)
  2295. return 0;
  2296. for (i = 0; i < nb_input_files; i++) {
  2297. InputFile *f = input_files[i];
  2298. if (!(f->fifo = av_fifo_alloc(8*sizeof(AVPacket))))
  2299. return AVERROR(ENOMEM);
  2300. pthread_mutex_init(&f->fifo_lock, NULL);
  2301. pthread_cond_init (&f->fifo_cond, NULL);
  2302. if ((ret = pthread_create(&f->thread, NULL, input_thread, f)))
  2303. return AVERROR(ret);
  2304. }
  2305. return 0;
  2306. }
  2307. static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
  2308. {
  2309. int ret = 0;
  2310. pthread_mutex_lock(&f->fifo_lock);
  2311. if (av_fifo_size(f->fifo)) {
  2312. av_fifo_generic_read(f->fifo, pkt, sizeof(*pkt), NULL);
  2313. pthread_cond_signal(&f->fifo_cond);
  2314. } else {
  2315. if (f->finished)
  2316. ret = AVERROR_EOF;
  2317. else
  2318. ret = AVERROR(EAGAIN);
  2319. }
  2320. pthread_mutex_unlock(&f->fifo_lock);
  2321. return ret;
  2322. }
  2323. #endif
  2324. static int get_input_packet(InputFile *f, AVPacket *pkt)
  2325. {
  2326. #if HAVE_PTHREADS
  2327. if (nb_input_files > 1)
  2328. return get_input_packet_mt(f, pkt);
  2329. #endif
  2330. return av_read_frame(f->ctx, pkt);
  2331. }
  2332. static int got_eagain(void)
  2333. {
  2334. int i;
  2335. for (i = 0; i < nb_output_streams; i++)
  2336. if (output_streams[i]->unavailable)
  2337. return 1;
  2338. return 0;
  2339. }
  2340. static void reset_eagain(void)
  2341. {
  2342. int i;
  2343. for (i = 0; i < nb_input_files; i++)
  2344. input_files[i]->eagain = 0;
  2345. for (i = 0; i < nb_output_streams; i++)
  2346. output_streams[i]->unavailable = 0;
  2347. }
  2348. /*
  2349. * Return
  2350. * - 0 -- one packet was read and processed
  2351. * - AVERROR(EAGAIN) -- no packets were available for selected file,
  2352. * this function should be called again
  2353. * - AVERROR_EOF -- this function should not be called again
  2354. */
  2355. static int process_input(int file_index)
  2356. {
  2357. InputFile *ifile = input_files[file_index];
  2358. AVFormatContext *is;
  2359. InputStream *ist;
  2360. AVPacket pkt;
  2361. int ret, i, j;
  2362. is = ifile->ctx;
  2363. ret = get_input_packet(ifile, &pkt);
  2364. if (ret == AVERROR(EAGAIN)) {
  2365. ifile->eagain = 1;
  2366. return ret;
  2367. }
  2368. if (ret < 0) {
  2369. if (ret != AVERROR_EOF) {
  2370. print_error(is->filename, ret);
  2371. if (exit_on_error)
  2372. exit(1);
  2373. }
  2374. ifile->eof_reached = 1;
  2375. for (i = 0; i < ifile->nb_streams; i++) {
  2376. ist = input_streams[ifile->ist_index + i];
  2377. if (ist->decoding_needed)
  2378. output_packet(ist, NULL);
  2379. /* mark all outputs that don't go through lavfi as finished */
  2380. for (j = 0; j < nb_output_streams; j++) {
  2381. OutputStream *ost = output_streams[j];
  2382. if (ost->source_index == ifile->ist_index + i &&
  2383. (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
  2384. close_output_stream(ost);
  2385. }
  2386. }
  2387. return AVERROR(EAGAIN);
  2388. }
  2389. reset_eagain();
  2390. if (do_pkt_dump) {
  2391. av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
  2392. is->streams[pkt.stream_index]);
  2393. }
  2394. /* the following test is needed in case new streams appear
  2395. dynamically in stream : we ignore them */
  2396. if (pkt.stream_index >= ifile->nb_streams) {
  2397. report_new_stream(file_index, &pkt);
  2398. goto discard_packet;
  2399. }
  2400. ist = input_streams[ifile->ist_index + pkt.stream_index];
  2401. if (ist->discard)
  2402. goto discard_packet;
  2403. if (debug_ts) {
  2404. av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
  2405. "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",
  2406. ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
  2407. av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
  2408. av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
  2409. av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
  2410. av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
  2411. av_ts2str(input_files[ist->file_index]->ts_offset),
  2412. av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
  2413. }
  2414. if(!ist->wrap_correction_done && input_files[file_index]->ctx->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
  2415. int64_t stime = av_rescale_q(input_files[file_index]->ctx->start_time, AV_TIME_BASE_Q, ist->st->time_base);
  2416. int64_t stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
  2417. ist->wrap_correction_done = 1;
  2418. if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
  2419. pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
  2420. ist->wrap_correction_done = 0;
  2421. }
  2422. if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
  2423. pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
  2424. ist->wrap_correction_done = 0;
  2425. }
  2426. }
  2427. if (pkt.dts != AV_NOPTS_VALUE)
  2428. pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
  2429. if (pkt.pts != AV_NOPTS_VALUE)
  2430. pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
  2431. if (pkt.pts != AV_NOPTS_VALUE)
  2432. pkt.pts *= ist->ts_scale;
  2433. if (pkt.dts != AV_NOPTS_VALUE)
  2434. pkt.dts *= ist->ts_scale;
  2435. if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
  2436. !copy_ts) {
  2437. int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
  2438. int64_t delta = pkt_dts - ist->next_dts;
  2439. if (is->iformat->flags & AVFMT_TS_DISCONT) {
  2440. if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
  2441. (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
  2442. ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
  2443. pkt_dts+1<ist->pts){
  2444. ifile->ts_offset -= delta;
  2445. av_log(NULL, AV_LOG_DEBUG,
  2446. "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
  2447. delta, ifile->ts_offset);
  2448. pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
  2449. if (pkt.pts != AV_NOPTS_VALUE)
  2450. pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
  2451. }
  2452. } else {
  2453. if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
  2454. (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
  2455. ) {
  2456. av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
  2457. pkt.dts = AV_NOPTS_VALUE;
  2458. }
  2459. if (pkt.pts != AV_NOPTS_VALUE){
  2460. int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
  2461. delta = pkt_pts - ist->next_dts;
  2462. if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
  2463. (delta > 1LL*dts_error_threshold*AV_TIME_BASE && ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
  2464. ) {
  2465. av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
  2466. pkt.pts = AV_NOPTS_VALUE;
  2467. }
  2468. }
  2469. }
  2470. }
  2471. if (debug_ts) {
  2472. 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",
  2473. ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->st->codec->codec_type),
  2474. av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
  2475. av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
  2476. av_ts2str(input_files[ist->file_index]->ts_offset),
  2477. av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
  2478. }
  2479. sub2video_heartbeat(ist, pkt.pts);
  2480. ret = output_packet(ist, &pkt);
  2481. if (ret < 0) {
  2482. char buf[128];
  2483. av_strerror(ret, buf, sizeof(buf));
  2484. av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
  2485. ist->file_index, ist->st->index, buf);
  2486. if (exit_on_error)
  2487. exit(1);
  2488. }
  2489. discard_packet:
  2490. av_free_packet(&pkt);
  2491. return 0;
  2492. }
  2493. /**
  2494. * Perform a step of transcoding for the specified filter graph.
  2495. *
  2496. * @param[in] graph filter graph to consider
  2497. * @param[out] best_ist input stream where a frame would allow to continue
  2498. * @return 0 for success, <0 for error
  2499. */
  2500. static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
  2501. {
  2502. int i, ret;
  2503. int nb_requests, nb_requests_max = 0;
  2504. InputFilter *ifilter;
  2505. InputStream *ist;
  2506. *best_ist = NULL;
  2507. ret = avfilter_graph_request_oldest(graph->graph);
  2508. if (ret >= 0)
  2509. return reap_filters();
  2510. if (ret == AVERROR_EOF) {
  2511. ret = reap_filters();
  2512. for (i = 0; i < graph->nb_outputs; i++)
  2513. close_output_stream(graph->outputs[i]->ost);
  2514. return ret;
  2515. }
  2516. if (ret != AVERROR(EAGAIN))
  2517. return ret;
  2518. for (i = 0; i < graph->nb_inputs; i++) {
  2519. ifilter = graph->inputs[i];
  2520. ist = ifilter->ist;
  2521. if (input_files[ist->file_index]->eagain ||
  2522. input_files[ist->file_index]->eof_reached)
  2523. continue;
  2524. nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
  2525. if (nb_requests > nb_requests_max) {
  2526. nb_requests_max = nb_requests;
  2527. *best_ist = ist;
  2528. }
  2529. }
  2530. if (!*best_ist)
  2531. for (i = 0; i < graph->nb_outputs; i++)
  2532. graph->outputs[i]->ost->unavailable = 1;
  2533. return 0;
  2534. }
  2535. /**
  2536. * Run a single step of transcoding.
  2537. *
  2538. * @return 0 for success, <0 for error
  2539. */
  2540. static int transcode_step(void)
  2541. {
  2542. OutputStream *ost;
  2543. InputStream *ist;
  2544. int ret;
  2545. ost = choose_output();
  2546. if (!ost) {
  2547. if (got_eagain()) {
  2548. reset_eagain();
  2549. av_usleep(10000);
  2550. return 0;
  2551. }
  2552. av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
  2553. return AVERROR_EOF;
  2554. }
  2555. if (ost->filter) {
  2556. if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
  2557. return ret;
  2558. if (!ist)
  2559. return 0;
  2560. } else {
  2561. av_assert0(ost->source_index >= 0);
  2562. ist = input_streams[ost->source_index];
  2563. }
  2564. ret = process_input(ist->file_index);
  2565. if (ret == AVERROR(EAGAIN)) {
  2566. if (input_files[ist->file_index]->eagain)
  2567. ost->unavailable = 1;
  2568. return 0;
  2569. }
  2570. if (ret < 0)
  2571. return ret == AVERROR_EOF ? 0 : ret;
  2572. return reap_filters();
  2573. }
  2574. /*
  2575. * The following code is the main loop of the file converter
  2576. */
  2577. static int transcode(void)
  2578. {
  2579. int ret, i;
  2580. AVFormatContext *os;
  2581. OutputStream *ost;
  2582. InputStream *ist;
  2583. int64_t timer_start;
  2584. ret = transcode_init();
  2585. if (ret < 0)
  2586. goto fail;
  2587. if (stdin_interaction) {
  2588. av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
  2589. }
  2590. timer_start = av_gettime();
  2591. #if HAVE_PTHREADS
  2592. if ((ret = init_input_threads()) < 0)
  2593. goto fail;
  2594. #endif
  2595. while (!received_sigterm) {
  2596. int64_t cur_time= av_gettime();
  2597. /* if 'q' pressed, exits */
  2598. if (stdin_interaction)
  2599. if (check_keyboard_interaction(cur_time) < 0)
  2600. break;
  2601. /* check if there's any stream where output is still needed */
  2602. if (!need_output()) {
  2603. av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
  2604. break;
  2605. }
  2606. ret = transcode_step();
  2607. if (ret < 0) {
  2608. if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
  2609. continue;
  2610. av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
  2611. break;
  2612. }
  2613. /* dump report by using the output first video and audio streams */
  2614. print_report(0, timer_start, cur_time);
  2615. }
  2616. #if HAVE_PTHREADS
  2617. free_input_threads();
  2618. #endif
  2619. /* at the end of stream, we must flush the decoder buffers */
  2620. for (i = 0; i < nb_input_streams; i++) {
  2621. ist = input_streams[i];
  2622. if (!input_files[ist->file_index]->eof_reached && ist->decoding_needed) {
  2623. output_packet(ist, NULL);
  2624. }
  2625. }
  2626. flush_encoders();
  2627. term_exit();
  2628. /* write the trailer if needed and close file */
  2629. for (i = 0; i < nb_output_files; i++) {
  2630. os = output_files[i]->ctx;
  2631. av_write_trailer(os);
  2632. }
  2633. /* dump report by using the first video and audio streams */
  2634. print_report(1, timer_start, av_gettime());
  2635. /* close each encoder */
  2636. for (i = 0; i < nb_output_streams; i++) {
  2637. ost = output_streams[i];
  2638. if (ost->encoding_needed) {
  2639. av_freep(&ost->st->codec->stats_in);
  2640. avcodec_close(ost->st->codec);
  2641. }
  2642. }
  2643. /* close each decoder */
  2644. for (i = 0; i < nb_input_streams; i++) {
  2645. ist = input_streams[i];
  2646. if (ist->decoding_needed) {
  2647. avcodec_close(ist->st->codec);
  2648. }
  2649. }
  2650. /* finished ! */
  2651. ret = 0;
  2652. fail:
  2653. #if HAVE_PTHREADS
  2654. free_input_threads();
  2655. #endif
  2656. if (output_streams) {
  2657. for (i = 0; i < nb_output_streams; i++) {
  2658. ost = output_streams[i];
  2659. if (ost) {
  2660. if (ost->stream_copy)
  2661. av_freep(&ost->st->codec->extradata);
  2662. if (ost->logfile) {
  2663. fclose(ost->logfile);
  2664. ost->logfile = NULL;
  2665. }
  2666. av_freep(&ost->st->codec->subtitle_header);
  2667. av_free(ost->forced_kf_pts);
  2668. av_dict_free(&ost->opts);
  2669. }
  2670. }
  2671. }
  2672. return ret;
  2673. }
  2674. static int64_t getutime(void)
  2675. {
  2676. #if HAVE_GETRUSAGE
  2677. struct rusage rusage;
  2678. getrusage(RUSAGE_SELF, &rusage);
  2679. return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
  2680. #elif HAVE_GETPROCESSTIMES
  2681. HANDLE proc;
  2682. FILETIME c, e, k, u;
  2683. proc = GetCurrentProcess();
  2684. GetProcessTimes(proc, &c, &e, &k, &u);
  2685. return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
  2686. #else
  2687. return av_gettime();
  2688. #endif
  2689. }
  2690. static int64_t getmaxrss(void)
  2691. {
  2692. #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
  2693. struct rusage rusage;
  2694. getrusage(RUSAGE_SELF, &rusage);
  2695. return (int64_t)rusage.ru_maxrss * 1024;
  2696. #elif HAVE_GETPROCESSMEMORYINFO
  2697. HANDLE proc;
  2698. PROCESS_MEMORY_COUNTERS memcounters;
  2699. proc = GetCurrentProcess();
  2700. memcounters.cb = sizeof(memcounters);
  2701. GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
  2702. return memcounters.PeakPagefileUsage;
  2703. #else
  2704. return 0;
  2705. #endif
  2706. }
  2707. static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
  2708. {
  2709. }
  2710. static void parse_cpuflags(int argc, char **argv, const OptionDef *options)
  2711. {
  2712. int idx = locate_option(argc, argv, options, "cpuflags");
  2713. if (idx && argv[idx + 1])
  2714. opt_cpuflags(NULL, "cpuflags", argv[idx + 1]);
  2715. }
  2716. int main(int argc, char **argv)
  2717. {
  2718. OptionsContext o = { 0 };
  2719. int64_t ti;
  2720. atexit(exit_program);
  2721. reset_options(&o, 0);
  2722. setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
  2723. av_log_set_flags(AV_LOG_SKIP_REPEATED);
  2724. parse_loglevel(argc, argv, options);
  2725. if(argc>1 && !strcmp(argv[1], "-d")){
  2726. run_as_daemon=1;
  2727. av_log_set_callback(log_callback_null);
  2728. argc--;
  2729. argv++;
  2730. }
  2731. avcodec_register_all();
  2732. #if CONFIG_AVDEVICE
  2733. avdevice_register_all();
  2734. #endif
  2735. avfilter_register_all();
  2736. av_register_all();
  2737. avformat_network_init();
  2738. show_banner(argc, argv, options);
  2739. term_init();
  2740. parse_cpuflags(argc, argv, options);
  2741. /* parse options */
  2742. parse_options(&o, argc, argv, options, opt_output_file);
  2743. if (nb_output_files <= 0 && nb_input_files == 0) {
  2744. show_usage();
  2745. av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
  2746. exit(1);
  2747. }
  2748. /* file converter / grab */
  2749. if (nb_output_files <= 0) {
  2750. av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
  2751. exit(1);
  2752. }
  2753. // if (nb_input_files == 0) {
  2754. // av_log(NULL, AV_LOG_FATAL, "At least one input file must be specified\n");
  2755. // exit(1);
  2756. // }
  2757. current_time = ti = getutime();
  2758. if (transcode() < 0)
  2759. exit(1);
  2760. ti = getutime() - ti;
  2761. if (do_benchmark) {
  2762. int maxrss = getmaxrss() / 1024;
  2763. printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
  2764. }
  2765. exit(0);
  2766. return 0;
  2767. }