ffmpeg.c 170 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1
/*
Fabrice Bellard's avatar
Fabrice Bellard committed
2
 * Copyright (c) 2000-2003 Fabrice Bellard
Fabrice Bellard's avatar
Fabrice Bellard committed
3
 *
4 5 6
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
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
Fabrice Bellard's avatar
Fabrice Bellard committed
19
 */
20

21 22 23 24 25
/**
 * @file
 * multimedia converter based on the FFmpeg libraries
 */

26 27 28 29 30 31
#include "config.h"
#include <ctype.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <errno.h>
32
#include <limits.h>
33
#include <stdatomic.h>
34 35
#include <stdint.h>

36 37 38 39
#if HAVE_IO_H
#include <io.h>
#endif
#if HAVE_UNISTD_H
40
#include <unistd.h>
41
#endif
42

43 44
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
45
#include "libswresample/swresample.h"
46
#include "libavutil/opt.h"
47
#include "libavutil/channel_layout.h"
48 49
#include "libavutil/parseutils.h"
#include "libavutil/samplefmt.h"
50
#include "libavutil/fifo.h"
51
#include "libavutil/hwcontext.h"
52
#include "libavutil/internal.h"
53
#include "libavutil/intreadwrite.h"
54
#include "libavutil/dict.h"
55
#include "libavutil/display.h"
56
#include "libavutil/mathematics.h"
57
#include "libavutil/pixdesc.h"
58
#include "libavutil/avstring.h"
59
#include "libavutil/libm.h"
60
#include "libavutil/imgutils.h"
61
#include "libavutil/timestamp.h"
62
#include "libavutil/bprint.h"
63
#include "libavutil/time.h"
64
#include "libavutil/thread.h"
65
#include "libavutil/threadmessage.h"
66
#include "libavcodec/mathops.h"
67
#include "libavformat/os_support.h"
68

69
# include "libavfilter/avfilter.h"
70
# include "libavfilter/buffersrc.h"
71
# include "libavfilter/buffersink.h"
72

73
#if HAVE_SYS_RESOURCE_H
74
#include <sys/time.h>
75
#include <sys/types.h>
76
#include <sys/resource.h>
77
#elif HAVE_GETPROCESSTIMES
78 79
#include <windows.h>
#endif
80 81 82 83
#if HAVE_GETPROCESSMEMORYINFO
#include <windows.h>
#include <psapi.h>
#endif
84 85 86 87
#if HAVE_SETCONSOLECTRLHANDLER
#include <windows.h>
#endif

88

89
#if HAVE_SYS_SELECT_H
90 91 92
#include <sys/select.h>
#endif

93 94 95 96 97 98
#if HAVE_TERMIOS_H
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <termios.h>
#elif HAVE_KBHIT
99
#include <conio.h>
Fabrice Bellard's avatar
Fabrice Bellard committed
100
#endif
101

102
#include <time.h>
Fabrice Bellard's avatar
Fabrice Bellard committed
103

104
#include "ffmpeg.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
105 106
#include "cmdutils.h"

107
#include "libavutil/avassert.h"
108

109
const char program_name[] = "ffmpeg";
110
const int program_birth_year = 2000;
111

112
static FILE *vstats_file;
113

114 115 116 117 118 119 120 121 122
const char *const forced_keyframes_const_names[] = {
    "n",
    "n_forced",
    "prev_forced_n",
    "prev_forced_t",
    "t",
    NULL
};

123 124 125 126 127 128
typedef struct BenchmarkTimeStamps {
    int64_t real_usec;
    int64_t user_usec;
    int64_t sys_usec;
} BenchmarkTimeStamps;

129
static void do_video_stats(OutputStream *ost, int frame_size);
130
static BenchmarkTimeStamps get_benchmark_time_stamps(void);
131
static int64_t getmaxrss(void);
132
static int ifilter_has_all_input_formats(FilterGraph *fg);
133

134
static int run_as_daemon  = 0;
135
static int nb_frames_dup = 0;
136
static unsigned dup_warning = 1000;
137
static int nb_frames_drop = 0;
138
static int64_t decode_error_stat[2];
139

140 141
static int want_sdp = 1;

142
static BenchmarkTimeStamps current_time;
143
AVIOContext *progress_avio = NULL;
144

145 146
static uint8_t *subtitle_out;

147 148 149 150
InputStream **input_streams = NULL;
int        nb_input_streams = 0;
InputFile   **input_files   = NULL;
int        nb_input_files   = 0;
151

152 153 154 155
OutputStream **output_streams = NULL;
int         nb_output_streams = 0;
OutputFile   **output_files   = NULL;
int         nb_output_files   = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
156

157 158
FilterGraph **filtergraphs;
int        nb_filtergraphs;
Fabrice Bellard's avatar
Fabrice Bellard committed
159

160 161 162 163
#if HAVE_TERMIOS_H

/* init terminal so that we can grab keys */
static struct termios oldtty;
164
static int restore_tty;
165 166
#endif

167
#if HAVE_THREADS
168
static void free_input_threads(void);
169
#endif
170

171 172 173 174 175
/* sub2video hack:
   Convert subtitles to video with alpha to insert them in filter graphs.
   This is a temporary solution until libavfilter gets real subtitles support.
 */

176 177 178 179 180 181
static int sub2video_get_blank_frame(InputStream *ist)
{
    int ret;
    AVFrame *frame = ist->sub2video.frame;

    av_frame_unref(frame);
182 183
    ist->sub2video.frame->width  = ist->dec_ctx->width  ? ist->dec_ctx->width  : ist->sub2video.w;
    ist->sub2video.frame->height = ist->dec_ctx->height ? ist->dec_ctx->height : ist->sub2video.h;
184 185 186 187 188 189
    ist->sub2video.frame->format = AV_PIX_FMT_RGB32;
    if ((ret = av_frame_get_buffer(frame, 32)) < 0)
        return ret;
    memset(frame->data[0], 0, frame->height * frame->linesize[0]);
    return 0;
}
190 191 192 193 194 195 196 197 198 199 200 201 202

static void sub2video_copy_rect(uint8_t *dst, int dst_linesize, int w, int h,
                                AVSubtitleRect *r)
{
    uint32_t *pal, *dst2;
    uint8_t *src, *src2;
    int x, y;

    if (r->type != SUBTITLE_BITMAP) {
        av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
        return;
    }
    if (r->x < 0 || r->x + r->w > w || r->y < 0 || r->y + r->h > h) {
203 204 205
        av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle (%d %d %d %d) overflowing %d %d\n",
            r->x, r->y, r->w, r->h, w, h
        );
206 207 208 209
        return;
    }

    dst += r->y * dst_linesize + r->x * 4;
210 211
    src = r->data[0];
    pal = (uint32_t *)r->data[1];
212 213 214 215 216 217
    for (y = 0; y < r->h; y++) {
        dst2 = (uint32_t *)dst;
        src2 = src;
        for (x = 0; x < r->w; x++)
            *(dst2++) = pal[*(src2++)];
        dst += dst_linesize;
218
        src += r->linesize[0];
219 220 221 222 223
    }
}

static void sub2video_push_ref(InputStream *ist, int64_t pts)
{
224
    AVFrame *frame = ist->sub2video.frame;
225
    int i;
226
    int ret;
227

228 229
    av_assert1(frame->data[0]);
    ist->sub2video.last_pts = frame->pts = pts;
230 231 232 233 234 235 236 237
    for (i = 0; i < ist->nb_filters; i++) {
        ret = av_buffersrc_add_frame_flags(ist->filters[i]->filter, frame,
                                           AV_BUFFERSRC_FLAG_KEEP_REF |
                                           AV_BUFFERSRC_FLAG_PUSH);
        if (ret != AVERROR_EOF && ret < 0)
            av_log(NULL, AV_LOG_WARNING, "Error while add the frame to buffer source(%s).\n",
                   av_err2str(ret));
    }
238 239
}

240
void sub2video_update(InputStream *ist, AVSubtitle *sub)
241
{
242
    AVFrame *frame = ist->sub2video.frame;
243 244
    int8_t *dst;
    int     dst_linesize;
245 246
    int num_rects, i;
    int64_t pts, end_pts;
247

248
    if (!frame)
249
        return;
250
    if (sub) {
251
        pts       = av_rescale_q(sub->pts + sub->start_display_time * 1000LL,
252
                                 AV_TIME_BASE_Q, ist->st->time_base);
253
        end_pts   = av_rescale_q(sub->pts + sub->end_display_time   * 1000LL,
254 255 256 257 258 259 260
                                 AV_TIME_BASE_Q, ist->st->time_base);
        num_rects = sub->num_rects;
    } else {
        pts       = ist->sub2video.end_pts;
        end_pts   = INT64_MAX;
        num_rects = 0;
    }
261
    if (sub2video_get_blank_frame(ist) < 0) {
262
        av_log(ist->dec_ctx, AV_LOG_ERROR,
263 264 265 266 267
               "Impossible to get a blank canvas.\n");
        return;
    }
    dst          = frame->data    [0];
    dst_linesize = frame->linesize[0];
268
    for (i = 0; i < num_rects; i++)
269
        sub2video_copy_rect(dst, dst_linesize, frame->width, frame->height, sub->rects[i]);
270
    sub2video_push_ref(ist, pts);
271
    ist->sub2video.end_pts = end_pts;
272 273 274 275 276 277 278 279 280 281 282 283 284 285
}

static void sub2video_heartbeat(InputStream *ist, int64_t pts)
{
    InputFile *infile = input_files[ist->file_index];
    int i, j, nb_reqs;
    int64_t pts2;

    /* When a frame is read from a file, examine all sub2video streams in
       the same file and send the sub2video frame again. Otherwise, decoded
       video frames could be accumulating in the filter graph while a filter
       (possibly overlay) is desperately waiting for a subtitle frame. */
    for (i = 0; i < infile->nb_streams; i++) {
        InputStream *ist2 = input_streams[infile->ist_index + i];
286
        if (!ist2->sub2video.frame)
287 288
            continue;
        /* subtitles seem to be usually muxed ahead of other streams;
Lou Logan's avatar
Lou Logan committed
289
           if not, subtracting a larger time here is necessary */
290 291 292 293
        pts2 = av_rescale_q(pts, ist->st->time_base, ist2->st->time_base) - 1;
        /* do not send the heartbeat frame if the subtitle is already ahead */
        if (pts2 <= ist2->sub2video.last_pts)
            continue;
294 295
        if (pts2 >= ist2->sub2video.end_pts ||
            (!ist2->sub2video.frame->data[0] && ist2->sub2video.end_pts < INT64_MAX))
296
            sub2video_update(ist2, NULL);
297 298 299 300 301 302 303 304 305 306
        for (j = 0, nb_reqs = 0; j < ist2->nb_filters; j++)
            nb_reqs += av_buffersrc_get_nb_failed_requests(ist2->filters[j]->filter);
        if (nb_reqs)
            sub2video_push_ref(ist2, pts2);
    }
}

static void sub2video_flush(InputStream *ist)
{
    int i;
307
    int ret;
308

309 310
    if (ist->sub2video.end_pts < INT64_MAX)
        sub2video_update(ist, NULL);
311 312 313 314 315
    for (i = 0; i < ist->nb_filters; i++) {
        ret = av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
        if (ret != AVERROR_EOF && ret < 0)
            av_log(NULL, AV_LOG_WARNING, "Flush the frame error.\n");
    }
316 317 318 319
}

/* end of sub2video hack */

320
static void term_exit_sigsafe(void)
321
{
322 323 324 325
#if HAVE_TERMIOS_H
    if(restore_tty)
        tcsetattr (0, TCSANOW, &oldtty);
#endif
326
}
327

328 329 330 331 332 333
void term_exit(void)
{
    av_log(NULL, AV_LOG_QUIET, "%s", "");
    term_exit_sigsafe();
}

334
static volatile int received_sigterm = 0;
335
static volatile int received_nb_signals = 0;
336
static atomic_int transcode_init_done = ATOMIC_VAR_INIT(0);
337
static volatile int ffmpeg_exited = 0;
338
static int main_return_code = 0;
339

340 341
static void
sigterm_handler(int sig)
342
{
343
    int ret;
344 345
    received_sigterm = sig;
    received_nb_signals++;
346
    term_exit_sigsafe();
347
    if(received_nb_signals > 3) {
348 349 350
        ret = write(2/*STDERR_FILENO*/, "Received > 3 system signals, hard exiting\n",
                    strlen("Received > 3 system signals, hard exiting\n"));
        if (ret < 0) { /* Do nothing */ };
351
        exit(123);
352
    }
353 354
}

355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
#if HAVE_SETCONSOLECTRLHANDLER
static BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
{
    av_log(NULL, AV_LOG_DEBUG, "\nReceived windows signal %ld\n", fdwCtrlType);

    switch (fdwCtrlType)
    {
    case CTRL_C_EVENT:
    case CTRL_BREAK_EVENT:
        sigterm_handler(SIGINT);
        return TRUE;

    case CTRL_CLOSE_EVENT:
    case CTRL_LOGOFF_EVENT:
    case CTRL_SHUTDOWN_EVENT:
        sigterm_handler(SIGTERM);
        /* Basically, with these 3 events, when we return from this method the
           process is hard terminated, so stall as long as we need to
           to try and let the main thread(s) clean up and gracefully terminate
           (we have at most 5 seconds, but should be done far before that). */
        while (!ffmpeg_exited) {
            Sleep(0);
        }
        return TRUE;

    default:
        av_log(NULL, AV_LOG_ERROR, "Received unknown windows signal %ld\n", fdwCtrlType);
        return FALSE;
    }
}
#endif

387
void term_init(void)
388
{
389
#if HAVE_TERMIOS_H
390
    if (!run_as_daemon && stdin_interaction) {
391
        struct termios tty;
392
        if (tcgetattr (0, &tty) == 0) {
393 394 395 396 397 398 399 400 401 402 403 404 405
            oldtty = tty;
            restore_tty = 1;

            tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
                             |INLCR|IGNCR|ICRNL|IXON);
            tty.c_oflag |= OPOST;
            tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
            tty.c_cflag &= ~(CSIZE|PARENB);
            tty.c_cflag |= CS8;
            tty.c_cc[VMIN] = 1;
            tty.c_cc[VTIME] = 0;

            tcsetattr (0, TCSANOW, &tty);
406
        }
407
        signal(SIGQUIT, sigterm_handler); /* Quit (POSIX).  */
408
    }
409 410
#endif

Aneesh Dogra's avatar
Aneesh Dogra committed
411
    signal(SIGINT , sigterm_handler); /* Interrupt (ANSI).    */
412 413 414 415
    signal(SIGTERM, sigterm_handler); /* Termination (ANSI).  */
#ifdef SIGXCPU
    signal(SIGXCPU, sigterm_handler);
#endif
Mark Thompson's avatar
Mark Thompson committed
416 417 418
#ifdef SIGPIPE
    signal(SIGPIPE, SIG_IGN); /* Broken pipe (POSIX). */
#endif
419 420 421
#if HAVE_SETCONSOLECTRLHANDLER
    SetConsoleCtrlHandler((PHANDLER_ROUTINE) CtrlHandler, TRUE);
#endif
422 423
}

424 425
/* read a key without blocking */
static int read_key(void)
426
{
427 428 429 430 431
    unsigned char ch;
#if HAVE_TERMIOS_H
    int n = 1;
    struct timeval tv;
    fd_set rfds;
432

433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
    FD_ZERO(&rfds);
    FD_SET(0, &rfds);
    tv.tv_sec = 0;
    tv.tv_usec = 0;
    n = select(1, &rfds, NULL, NULL, &tv);
    if (n > 0) {
        n = read(0, &ch, 1);
        if (n == 1)
            return ch;

        return n;
    }
#elif HAVE_KBHIT
#    if HAVE_PEEKNAMEDPIPE
    static int is_pipe;
    static HANDLE input_handle;
    DWORD dw, nchars;
    if(!input_handle){
        input_handle = GetStdHandle(STD_INPUT_HANDLE);
        is_pipe = !GetConsoleMode(input_handle, &dw);
    }
454

455 456
    if (is_pipe) {
        /* When running under a GUI, you will end here. */
rogerdpack's avatar
rogerdpack committed
457 458
        if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL)) {
            // input pipe may have been closed by the program that ran ffmpeg
459
            return -1;
rogerdpack's avatar
rogerdpack committed
460
        }
461 462 463 464 465 466
        //Read it
        if(nchars != 0) {
            read(0, &ch, 1);
            return ch;
        }else{
            return -1;
467
        }
468 469 470 471 472 473
    }
#    endif
    if(kbhit())
        return(getch());
#endif
    return -1;
474 475
}

476
static int decode_interrupt_cb(void *ctx)
477
{
478
    return received_nb_signals > atomic_load(&transcode_init_done);
479 480
}

481
const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
482

483
static void ffmpeg_cleanup(int ret)
484
{
485
    int i, j;
486

487 488
    if (do_benchmark) {
        int maxrss = getmaxrss() / 1024;
489
        av_log(NULL, AV_LOG_INFO, "bench: maxrss=%ikB\n", maxrss);
490 491
    }

492
    for (i = 0; i < nb_filtergraphs; i++) {
493 494 495
        FilterGraph *fg = filtergraphs[i];
        avfilter_graph_free(&fg->graph);
        for (j = 0; j < fg->nb_inputs; j++) {
496 497 498 499 500 501
            while (av_fifo_size(fg->inputs[j]->frame_queue)) {
                AVFrame *frame;
                av_fifo_generic_read(fg->inputs[j]->frame_queue, &frame,
                                     sizeof(frame), NULL);
                av_frame_free(&frame);
            }
502
            av_fifo_freep(&fg->inputs[j]->frame_queue);
503 504 505 506 507 508 509
            if (fg->inputs[j]->ist->sub2video.sub_queue) {
                while (av_fifo_size(fg->inputs[j]->ist->sub2video.sub_queue)) {
                    AVSubtitle sub;
                    av_fifo_generic_read(fg->inputs[j]->ist->sub2video.sub_queue,
                                         &sub, sizeof(sub), NULL);
                    avsubtitle_free(&sub);
                }
510
                av_fifo_freep(&fg->inputs[j]->ist->sub2video.sub_queue);
511
            }
512
            av_buffer_unref(&fg->inputs[j]->hw_frames_ctx);
513 514
            av_freep(&fg->inputs[j]->name);
            av_freep(&fg->inputs[j]);
515
        }
516 517 518
        av_freep(&fg->inputs);
        for (j = 0; j < fg->nb_outputs; j++) {
            av_freep(&fg->outputs[j]->name);
519 520 521
            av_freep(&fg->outputs[j]->formats);
            av_freep(&fg->outputs[j]->channel_layouts);
            av_freep(&fg->outputs[j]->sample_rates);
522
            av_freep(&fg->outputs[j]);
523
        }
524 525 526
        av_freep(&fg->outputs);
        av_freep(&fg->graph_desc);

527 528 529
        av_freep(&filtergraphs[i]);
    }
    av_freep(&filtergraphs);
530

531
    av_freep(&subtitle_out);
532

533
    /* close files */
Aneesh Dogra's avatar
Aneesh Dogra committed
534
    for (i = 0; i < nb_output_files; i++) {
535
        OutputFile *of = output_files[i];
536 537 538 539
        AVFormatContext *s;
        if (!of)
            continue;
        s = of->ctx;
540
        if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE))
541
            avio_closep(&s->pb);
542
        avformat_free_context(s);
543 544
        av_dict_free(&of->opts);

545
        av_freep(&output_files[i]);
546
    }
547
    for (i = 0; i < nb_output_streams; i++) {
548
        OutputStream *ost = output_streams[i];
549 550 551 552

        if (!ost)
            continue;

553 554 555 556
        for (j = 0; j < ost->nb_bitstream_filters; j++)
            av_bsf_free(&ost->bsf_ctx[j]);
        av_freep(&ost->bsf_ctx);

557
        av_frame_free(&ost->filtered_frame);
558
        av_frame_free(&ost->last_frame);
559
        av_dict_free(&ost->encoder_opts);
560 561

        av_freep(&ost->forced_keyframes);
562
        av_expr_free(ost->forced_keyframes_pexpr);
563 564
        av_freep(&ost->avfilter);
        av_freep(&ost->logfile_prefix);
565

566 567 568
        av_freep(&ost->audio_channels_map);
        ost->audio_channels_mapped = 0;

569
        av_dict_free(&ost->sws_dict);
570
        av_dict_free(&ost->swr_opts);
571

572
        avcodec_free_context(&ost->enc_ctx);
573
        avcodec_parameters_free(&ost->ref_par);
574

575 576 577 578 579 580 581
        if (ost->muxing_queue) {
            while (av_fifo_size(ost->muxing_queue)) {
                AVPacket pkt;
                av_fifo_generic_read(ost->muxing_queue, &pkt, sizeof(pkt), NULL);
                av_packet_unref(&pkt);
            }
            av_fifo_freep(&ost->muxing_queue);
582 583
        }

584
        av_freep(&output_streams[i]);
585
    }
586
#if HAVE_THREADS
587 588
    free_input_threads();
#endif
Aneesh Dogra's avatar
Aneesh Dogra committed
589
    for (i = 0; i < nb_input_files; i++) {
590 591
        avformat_close_input(&input_files[i]->ctx);
        av_freep(&input_files[i]);
592
    }
593
    for (i = 0; i < nb_input_streams; i++) {
594 595 596 597
        InputStream *ist = input_streams[i];

        av_frame_free(&ist->decoded_frame);
        av_frame_free(&ist->filter_frame);
598
        av_dict_free(&ist->decoder_opts);
599 600
        avsubtitle_free(&ist->prev_sub.subtitle);
        av_frame_free(&ist->sub2video.frame);
601 602
        av_freep(&ist->filters);
        av_freep(&ist->hwaccel_device);
wm4's avatar
wm4 committed
603
        av_freep(&ist->dts_buffer);
604

605 606
        avcodec_free_context(&ist->dec_ctx);

607
        av_freep(&input_streams[i]);
608
    }
609

610 611 612 613 614 615
    if (vstats_file) {
        if (fclose(vstats_file))
            av_log(NULL, AV_LOG_ERROR,
                   "Error closing vstats file, loss of information possible: %s\n",
                   av_err2str(AVERROR(errno)));
    }
616
    av_freep(&vstats_filename);
617

618 619
    av_freep(&input_streams);
    av_freep(&input_files);
620
    av_freep(&output_streams);
621
    av_freep(&output_files);
622

623
    uninit_opts();
624

625
    avformat_network_deinit();
626

627
    if (received_sigterm) {
628
        av_log(NULL, AV_LOG_INFO, "Exiting normally, received signal %d.\n",
629
               (int) received_sigterm);
630
    } else if (ret && atomic_load(&transcode_init_done)) {
631
        av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");
632
    }
633
    term_exit();
634
    ffmpeg_exited = 1;
635 636
}

637 638 639 640 641 642 643 644 645
void remove_avoptions(AVDictionary **a, AVDictionary *b)
{
    AVDictionaryEntry *t = NULL;

    while ((t = av_dict_get(b, "", t, AV_DICT_IGNORE_SUFFIX))) {
        av_dict_set(a, t->key, NULL, AV_DICT_MATCH_CASE);
    }
}

646
void assert_avoptions(AVDictionary *m)
647
{
648 649
    AVDictionaryEntry *t;
    if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
650
        av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
651
        exit_program(1);
652
    }
653
}
654

655
static void abort_codec_experimental(AVCodec *c, int encoder)
656
{
657
    exit_program(1);
658
}
659

660
static void update_benchmark(const char *fmt, ...)
661
{
662
    if (do_benchmark_all) {
663
        BenchmarkTimeStamps t = get_benchmark_time_stamps();
664 665
        va_list va;
        char buf[1024];
666

667 668 669 670
        if (fmt) {
            va_start(va, fmt);
            vsnprintf(buf, sizeof(buf), fmt, va);
            va_end(va);
671 672 673 674 675
            av_log(NULL, AV_LOG_INFO,
                   "bench: %8" PRIu64 " user %8" PRIu64 " sys %8" PRIu64 " real %s \n",
                   t.user_usec - current_time.user_usec,
                   t.sys_usec - current_time.sys_usec,
                   t.real_usec - current_time.real_usec, buf);
676
        }
677
        current_time = t;
678 679 680
    }
}

681
static void close_all_output_streams(OutputStream *ost, OSTFinished this_stream, OSTFinished others)
682 683 684 685 686 687 688 689
{
    int i;
    for (i = 0; i < nb_output_streams; i++) {
        OutputStream *ost2 = output_streams[i];
        ost2->finished |= ost == ost2 ? this_stream : others;
    }
}

690
static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue)
691
{
692
    AVFormatContext *s = of->ctx;
693
    AVStream *st = ost->st;
694 695
    int ret;

696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
    /*
     * Audio encoders may split the packets --  #frames in != #packets out.
     * But there is no reordering, so we can limit the number of output packets
     * by simply dropping them here.
     * Counting encoded video frames needs to be done separately because of
     * reordering, see do_video_out().
     * Do not count the packet when unqueued because it has been counted when queued.
     */
    if (!(st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && ost->encoding_needed) && !unqueue) {
        if (ost->frame_number >= ost->max_frames) {
            av_packet_unref(pkt);
            return;
        }
        ost->frame_number++;
    }

712
    if (!of->header_written) {
713
        AVPacket tmp_pkt = {0};
714 715 716 717 718 719 720 721 722 723 724 725 726 727
        /* the muxer is not initialized yet, buffer the packet */
        if (!av_fifo_space(ost->muxing_queue)) {
            int new_size = FFMIN(2 * av_fifo_size(ost->muxing_queue),
                                 ost->max_muxing_queue_size);
            if (new_size <= av_fifo_size(ost->muxing_queue)) {
                av_log(NULL, AV_LOG_ERROR,
                       "Too many packets buffered for output stream %d:%d.\n",
                       ost->file_index, ost->st->index);
                exit_program(1);
            }
            ret = av_fifo_realloc2(ost->muxing_queue, new_size);
            if (ret < 0)
                exit_program(1);
        }
728
        ret = av_packet_make_refcounted(pkt);
729 730
        if (ret < 0)
            exit_program(1);
731
        av_packet_move_ref(&tmp_pkt, pkt);
732 733 734 735
        av_fifo_generic_write(ost->muxing_queue, &tmp_pkt, sizeof(tmp_pkt), NULL);
        return;
    }

736 737
    if ((st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) ||
        (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && audio_sync_method < 0))
738
        pkt->pts = pkt->dts = AV_NOPTS_VALUE;
739

740
    if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
741
        int i;
742
        uint8_t *sd = av_packet_get_side_data(pkt, AV_PKT_DATA_QUALITY_STATS,
743
                                              NULL);
744
        ost->quality = sd ? AV_RL32(sd) : -1;
745
        ost->pict_type = sd ? sd[4] : AV_PICTURE_TYPE_NONE;
746 747 748 749 750 751 752

        for (i = 0; i<FF_ARRAY_ELEMS(ost->error); i++) {
            if (sd && i < sd[5])
                ost->error[i] = AV_RL64(sd + 8 + 8*i);
            else
                ost->error[i] = -1;
        }
753

754
        if (ost->frame_rate.num && ost->is_cfr) {
755 756
            if (pkt->duration > 0)
                av_log(NULL, AV_LOG_WARNING, "Overriding packet duration by frame rate, this should not happen\n");
757
            pkt->duration = av_rescale_q(1, av_inv_q(ost->frame_rate),
758
                                         ost->mux_timebase);
759
        }
760
    }
761

762 763
    av_packet_rescale_ts(pkt, ost->mux_timebase, ost->st->time_base);

764
    if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
765 766 767 768 769 770 771 772 773 774 775
        if (pkt->dts != AV_NOPTS_VALUE &&
            pkt->pts != AV_NOPTS_VALUE &&
            pkt->dts > pkt->pts) {
            av_log(s, AV_LOG_WARNING, "Invalid DTS: %"PRId64" PTS: %"PRId64" in output stream %d:%d, replacing by guess\n",
                   pkt->dts, pkt->pts,
                   ost->file_index, ost->st->index);
            pkt->pts =
            pkt->dts = pkt->pts + pkt->dts + ost->last_mux_dts + 1
                     - FFMIN3(pkt->pts, pkt->dts, ost->last_mux_dts + 1)
                     - FFMAX3(pkt->pts, pkt->dts, ost->last_mux_dts + 1);
        }
776
        if ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO || st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO || st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) &&
777
            pkt->dts != AV_NOPTS_VALUE &&
778
            !(st->codecpar->codec_id == AV_CODEC_ID_VP9 && ost->stream_copy) &&
779 780 781
            ost->last_mux_dts != AV_NOPTS_VALUE) {
            int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
            if (pkt->dts < max) {
782
                int loglevel = max - pkt->dts > 2 || st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG;
783 784 785 786 787 788 789 790 791 792 793 794 795 796
                av_log(s, loglevel, "Non-monotonous DTS in output stream "
                       "%d:%d; previous: %"PRId64", current: %"PRId64"; ",
                       ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
                if (exit_on_error) {
                    av_log(NULL, AV_LOG_FATAL, "aborting.\n");
                    exit_program(1);
                }
                av_log(s, loglevel, "changing to %"PRId64". This may result "
                       "in incorrect timestamps in the output file.\n",
                       max);
                if (pkt->pts >= pkt->dts)
                    pkt->pts = FFMAX(pkt->pts, max);
                pkt->dts = max;
            }
797 798 799 800
        }
    }
    ost->last_mux_dts = pkt->dts;

801
    ost->data_size += pkt->size;
802
    ost->packets_written++;
803

804
    pkt->stream_index = ost->index;
805 806 807

    if (debug_ts) {
        av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
808
                "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s size:%d\n",
809
                av_get_media_type_string(ost->enc_ctx->codec_type),
810
                av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ost->st->time_base),
811 812
                av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ost->st->time_base),
                pkt->size
813 814 815
              );
    }

Aneesh Dogra's avatar
Aneesh Dogra committed
816 817
    ret = av_interleaved_write_frame(s, pkt);
    if (ret < 0) {
818
        print_error("av_interleaved_write_frame()", ret);
819
        main_return_code = 1;
820
        close_all_output_streams(ost, MUXER_FINISHED | ENCODER_FINISHED, ENCODER_FINISHED);
821
    }
822
    av_packet_unref(pkt);
823 824
}

825 826 827 828
static void close_output_stream(OutputStream *ost)
{
    OutputFile *of = output_files[ost->file_index];

829
    ost->finished |= ENCODER_FINISHED;
830
    if (of->shortest) {
831
        int64_t end = av_rescale_q(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, AV_TIME_BASE_Q);
832
        of->recording_time = FFMIN(of->recording_time, end);
833 834 835
    }
}

836 837 838 839 840 841 842 843 844 845 846 847 848
/*
 * Send a single packet to the output, applying any bitstream filters
 * associated with the output stream.  This may result in any number
 * of packets actually being written, depending on what bitstream
 * filters are applied.  The supplied packet is consumed and will be
 * blank (as if newly-allocated) when this function returns.
 *
 * If eof is set, instead indicate EOF to all bitstream filters and
 * therefore flush any delayed packets to the output.  A blank packet
 * must be supplied in this case.
 */
static void output_packet(OutputFile *of, AVPacket *pkt,
                          OutputStream *ost, int eof)
849 850 851 852 853 854 855
{
    int ret = 0;

    /* apply the output bitstream filters, if any */
    if (ost->nb_bitstream_filters) {
        int idx;

856
        ret = av_bsf_send_packet(ost->bsf_ctx[0], eof ? NULL : pkt);
857 858 859
        if (ret < 0)
            goto finish;

860
        eof = 0;
861 862 863 864
        idx = 1;
        while (idx) {
            /* get a packet from the previous filter up the chain */
            ret = av_bsf_receive_packet(ost->bsf_ctx[idx - 1], pkt);
865 866 867 868
            if (ret == AVERROR(EAGAIN)) {
                ret = 0;
                idx--;
                continue;
869 870
            } else if (ret == AVERROR_EOF) {
                eof = 1;
871 872
            } else if (ret < 0)
                goto finish;
873 874 875

            /* send it to the next filter down the chain or to the muxer */
            if (idx < ost->nb_bitstream_filters) {
876
                ret = av_bsf_send_packet(ost->bsf_ctx[idx], eof ? NULL : pkt);
877 878 879
                if (ret < 0)
                    goto finish;
                idx++;
880 881 882 883
                eof = 0;
            } else if (eof)
                goto finish;
            else
884
                write_packet(of, pkt, ost, 0);
885
        }
886
    } else if (!eof)
887
        write_packet(of, pkt, ost, 0);
888 889 890 891 892 893 894 895 896 897

finish:
    if (ret < 0 && ret != AVERROR_EOF) {
        av_log(NULL, AV_LOG_ERROR, "Error applying bitstream filters to an output "
               "packet for stream #%d:%d.\n", ost->file_index, ost->index);
        if(exit_on_error)
            exit_program(1);
    }
}

898
static int check_recording_time(OutputStream *ost)
899
{
900
    OutputFile *of = output_files[ost->file_index];
901

902
    if (of->recording_time != INT64_MAX &&
903
        av_compare_ts(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, of->recording_time,
904
                      AV_TIME_BASE_Q) >= 0) {
905
        close_output_stream(ost);
906
        return 0;
907
    }
908 909
    return 1;
}
910

911
static void do_audio_out(OutputFile *of, OutputStream *ost,
912
                         AVFrame *frame)
913
{
914
    AVCodecContext *enc = ost->enc_ctx;
915
    AVPacket pkt;
wm4's avatar
wm4 committed
916
    int ret;
917

918 919 920
    av_init_packet(&pkt);
    pkt.data = NULL;
    pkt.size = 0;
921

922 923
    if (!check_recording_time(ost))
        return;
924

925
    if (frame->pts == AV_NOPTS_VALUE || audio_sync_method < 0)
926
        frame->pts = ost->sync_opts;
927
    ost->sync_opts = frame->pts + frame->nb_samples;
928 929
    ost->samples_encoded += frame->nb_samples;
    ost->frames_encoded++;
930

931 932
    av_assert0(pkt.size || !pkt.data);
    update_benchmark(NULL);
933 934 935 936 937 938
    if (debug_ts) {
        av_log(NULL, AV_LOG_INFO, "encoder <- type:audio "
               "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
               av_ts2str(frame->pts), av_ts2timestr(frame->pts, &enc->time_base),
               enc->time_base.num, enc->time_base.den);
    }
939

wm4's avatar
wm4 committed
940 941 942 943 944 945 946 947 948 949 950 951
    ret = avcodec_send_frame(enc, frame);
    if (ret < 0)
        goto error;

    while (1) {
        ret = avcodec_receive_packet(enc, &pkt);
        if (ret == AVERROR(EAGAIN))
            break;
        if (ret < 0)
            goto error;

        update_benchmark("encode_audio %d.%d", ost->file_index, ost->index);
952

953
        av_packet_rescale_ts(&pkt, enc->time_base, ost->mux_timebase);
954

955 956 957
        if (debug_ts) {
            av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
                   "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
958 959
                   av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &enc->time_base),
                   av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &enc->time_base));
960
        }
961

962
        output_packet(of, &pkt, ost, 0);
963
    }
wm4's avatar
wm4 committed
964 965 966 967 968

    return;
error:
    av_log(NULL, AV_LOG_FATAL, "Audio encoding failed\n");
    exit_program(1);
969 970
}

971
static void do_subtitle_out(OutputFile *of,
972
                            OutputStream *ost,
973
                            AVSubtitle *sub)
974
{
975 976 977 978
    int subtitle_out_max_size = 1024 * 1024;
    int subtitle_out_size, nb, i;
    AVCodecContext *enc;
    AVPacket pkt;
979
    int64_t pts;
980

981
    if (sub->pts == AV_NOPTS_VALUE) {
982
        av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
983
        if (exit_on_error)
984
            exit_program(1);
985
        return;
986
    }
987

988
    enc = ost->enc_ctx;
989

990 991
    if (!subtitle_out) {
        subtitle_out = av_malloc(subtitle_out_max_size);
992 993 994 995
        if (!subtitle_out) {
            av_log(NULL, AV_LOG_FATAL, "Failed to allocate subtitle_out\n");
            exit_program(1);
        }
996 997
    }

998 999 1000
    /* Note: DVB subtitle need one packet to draw them and one other
       packet to clear them */
    /* XXX: signal it in the codec context ? */
1001
    if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE)
1002 1003 1004
        nb = 2;
    else
        nb = 1;
1005

1006
    /* shift timestamp to honor -ss and make check_recording_time() work with -t */
1007 1008 1009
    pts = sub->pts;
    if (output_files[ost->file_index]->start_time != AV_NOPTS_VALUE)
        pts -= output_files[ost->file_index]->start_time;
Aneesh Dogra's avatar
Aneesh Dogra committed
1010
    for (i = 0; i < nb; i++) {
1011 1012
        unsigned save_num_rects = sub->num_rects;

1013
        ost->sync_opts = av_rescale_q(pts, AV_TIME_BASE_Q, enc->time_base);
1014 1015
        if (!check_recording_time(ost))
            return;
1016

1017
        sub->pts = pts;
1018
        // start_display_time is required to be 0
Aneesh Dogra's avatar
Aneesh Dogra committed
1019 1020
        sub->pts               += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, AV_TIME_BASE_Q);
        sub->end_display_time  -= sub->start_display_time;
1021
        sub->start_display_time = 0;
1022 1023
        if (i == 1)
            sub->num_rects = 0;
1024 1025 1026

        ost->frames_encoded++;

1027 1028
        subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
                                                    subtitle_out_max_size, sub);
1029 1030
        if (i == 1)
            sub->num_rects = save_num_rects;
1031
        if (subtitle_out_size < 0) {
1032
            av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
1033
            exit_program(1);
1034 1035 1036 1037 1038
        }

        av_init_packet(&pkt);
        pkt.data = subtitle_out;
        pkt.size = subtitle_out_size;
1039 1040
        pkt.pts  = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->mux_timebase);
        pkt.duration = av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->mux_timebase);
1041
        if (enc->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
1042 1043 1044
            /* XXX: the pts correction is handled here. Maybe handling
               it in the codec would be better */
            if (i == 0)
1045
                pkt.pts += av_rescale_q(sub->start_display_time, (AVRational){ 1, 1000 }, ost->mux_timebase);
1046
            else
1047
                pkt.pts += av_rescale_q(sub->end_display_time, (AVRational){ 1, 1000 }, ost->mux_timebase);
1048
        }
1049
        pkt.dts = pkt.pts;
1050
        output_packet(of, &pkt, ost, 0);
1051
    }
1052
}
1053

1054
static void do_video_out(OutputFile *of,
1055
                         OutputStream *ost,
1056 1057
                         AVFrame *next_picture,
                         double sync_ipts)
1058
{
1059 1060
    int ret, format_video_sync;
    AVPacket pkt;
1061
    AVCodecContext *enc = ost->enc_ctx;
1062
    AVCodecParameters *mux_par = ost->st->codecpar;
1063
    AVRational frame_rate;
1064
    int nb_frames, nb0_frames, i;
1065
    double delta, delta0;
1066 1067 1068
    double duration = 0;
    int frame_size = 0;
    InputStream *ist = NULL;
1069
    AVFilterContext *filter = ost->filter->filter;
1070

1071 1072
    if (ost->source_index >= 0)
        ist = input_streams[ost->source_index];
1073

1074 1075 1076
    frame_rate = av_buffersink_get_frame_rate(filter);
    if (frame_rate.num > 0 && frame_rate.den > 0)
        duration = 1/(av_q2d(frame_rate) * av_q2d(enc->time_base));
1077 1078 1079

    if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
        duration = FFMIN(duration, 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base)));
1080

1081 1082
    if (!ost->filters_script &&
        !ost->filters &&
1083
        (nb_filtergraphs == 0 || !filtergraphs[0]->graph_desc) &&
1084 1085
        next_picture &&
        ist &&
1086 1087
        lrintf(next_picture->pkt_duration * av_q2d(ist->st->time_base) / av_q2d(enc->time_base)) > 0) {
        duration = lrintf(next_picture->pkt_duration * av_q2d(ist->st->time_base) / av_q2d(enc->time_base));
1088 1089
    }

1090 1091 1092 1093 1094 1095
    if (!next_picture) {
        //end, flushing
        nb0_frames = nb_frames = mid_pred(ost->last_nb0_frames[0],
                                          ost->last_nb0_frames[1],
                                          ost->last_nb0_frames[2]);
    } else {
1096
        delta0 = sync_ipts - ost->sync_opts; // delta0 is the "drift" between the input frame (next_picture) and where it would fall in the output.
1097
        delta  = delta0 + duration;
1098

1099
        /* by default, we output a single frame */
1100
        nb0_frames = 0; // tracks the number of times the PREVIOUS frame should be duplicated, mostly for variable framerate (VFR)
1101
        nb_frames = 1;
1102

1103 1104
        format_video_sync = video_sync_method;
        if (format_video_sync == VSYNC_AUTO) {
1105
            if(!strcmp(of->ctx->oformat->name, "avi")) {
1106 1107
                format_video_sync = VSYNC_VFR;
            } else
1108
                format_video_sync = (of->ctx->oformat->flags & AVFMT_VARIABLE_FPS) ? ((of->ctx->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : VSYNC_CFR;
1109 1110 1111 1112 1113 1114 1115 1116 1117
            if (   ist
                && format_video_sync == VSYNC_CFR
                && input_files[ist->file_index]->ctx->nb_streams == 1
                && input_files[ist->file_index]->input_ts_offset == 0) {
                format_video_sync = VSYNC_VSCFR;
            }
            if (format_video_sync == VSYNC_CFR && copy_ts) {
                format_video_sync = VSYNC_VSCFR;
            }
1118
        }
1119
        ost->is_cfr = (format_video_sync == VSYNC_CFR || format_video_sync == VSYNC_VSCFR);
1120

1121 1122 1123 1124 1125
        if (delta0 < 0 &&
            delta > 0 &&
            format_video_sync != VSYNC_PASSTHROUGH &&
            format_video_sync != VSYNC_DROP) {
            if (delta0 < -0.6) {
1126
                av_log(NULL, AV_LOG_VERBOSE, "Past duration %f too large\n", -delta0);
1127
            } else
1128
                av_log(NULL, AV_LOG_DEBUG, "Clipping frame in rate conversion by %f\n", -delta0);
1129 1130 1131
            sync_ipts = ost->sync_opts;
            duration += delta0;
            delta0 = 0;
1132
        }
1133

1134 1135
        switch (format_video_sync) {
        case VSYNC_VSCFR:
1136 1137
            if (ost->frame_number == 0 && delta0 >= 0.5) {
                av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta0));
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
                delta = duration;
                delta0 = 0;
                ost->sync_opts = lrint(sync_ipts);
            }
        case VSYNC_CFR:
            // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
            if (frame_drop_threshold && delta < frame_drop_threshold && ost->frame_number) {
                nb_frames = 0;
            } else if (delta < -1.1)
                nb_frames = 0;
            else if (delta > 1.1) {
                nb_frames = lrintf(delta);
                if (delta0 > 1.1)
                    nb0_frames = lrintf(delta0 - 0.6);
            }
            break;
        case VSYNC_VFR:
            if (delta <= -0.6)
                nb_frames = 0;
            else if (delta > 0.6)
                ost->sync_opts = lrint(sync_ipts);
            break;
        case VSYNC_DROP:
        case VSYNC_PASSTHROUGH:
1162
            ost->sync_opts = lrint(sync_ipts);
1163 1164 1165
            break;
        default:
            av_assert0(0);
1166
        }
1167
    }
1168 1169

    nb_frames = FFMIN(nb_frames, ost->max_frames - ost->frame_number);
1170
    nb0_frames = FFMIN(nb0_frames, nb_frames);
1171 1172 1173 1174 1175 1176

    memmove(ost->last_nb0_frames + 1,
            ost->last_nb0_frames,
            sizeof(ost->last_nb0_frames[0]) * (FF_ARRAY_ELEMS(ost->last_nb0_frames) - 1));
    ost->last_nb0_frames[0] = nb0_frames;

1177
    if (nb0_frames == 0 && ost->last_dropped) {
1178
        nb_frames_drop++;
1179
        av_log(NULL, AV_LOG_VERBOSE,
1180
               "*** dropping frame %d from stream %d at ts %"PRId64"\n",
1181
               ost->frame_number, ost->st->index, ost->last_frame->pts);
1182
    }
1183
    if (nb_frames > (nb0_frames && ost->last_dropped) + (nb_frames > nb0_frames)) {
1184
        if (nb_frames > dts_error_threshold * 30) {
1185
            av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
1186 1187
            nb_frames_drop++;
            return;
1188
        }
1189
        nb_frames_dup += nb_frames - (nb0_frames && ost->last_dropped) - (nb_frames > nb0_frames);
1190
        av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
1191 1192 1193 1194
        if (nb_frames_dup > dup_warning) {
            av_log(NULL, AV_LOG_WARNING, "More than %d frames duplicated\n", dup_warning);
            dup_warning *= 10;
        }
1195
    }
1196
    ost->last_dropped = nb_frames == nb0_frames && next_picture;
1197

1198 1199 1200 1201 1202 1203 1204 1205
    /* duplicates frame if needed */
    for (i = 0; i < nb_frames; i++) {
        AVFrame *in_picture;
        int forced_keyframe = 0;
        double pts_time;
        av_init_packet(&pkt);
        pkt.data = NULL;
        pkt.size = 0;
1206

1207 1208 1209 1210
        if (i < nb0_frames && ost->last_frame) {
            in_picture = ost->last_frame;
        } else
            in_picture = next_picture;
1211

1212 1213
        if (!in_picture)
            return;
1214

1215
        in_picture->pts = ost->sync_opts;
1216

1217 1218
        if (!check_recording_time(ost))
            return;
1219

1220
        if (enc->flags & (AV_CODEC_FLAG_INTERLACED_DCT | AV_CODEC_FLAG_INTERLACED_ME) &&
1221 1222
            ost->top_field_first >= 0)
            in_picture->top_field_first = !!ost->top_field_first;
1223

1224
        if (in_picture->interlaced_frame) {
1225
            if (enc->codec->id == AV_CODEC_ID_MJPEG)
1226
                mux_par->field_order = in_picture->top_field_first ? AV_FIELD_TT:AV_FIELD_BB;
1227
            else
1228
                mux_par->field_order = in_picture->top_field_first ? AV_FIELD_TB:AV_FIELD_BT;
1229
        } else
1230
            mux_par->field_order = AV_FIELD_PROGRESSIVE;
1231

1232
        in_picture->quality = enc->global_quality;
1233
        in_picture->pict_type = 0;
1234

1235 1236 1237 1238
        if (ost->forced_kf_ref_pts == AV_NOPTS_VALUE &&
            in_picture->pts != AV_NOPTS_VALUE)
            ost->forced_kf_ref_pts = in_picture->pts;

1239
        pts_time = in_picture->pts != AV_NOPTS_VALUE ?
1240
            (in_picture->pts - ost->forced_kf_ref_pts) * av_q2d(enc->time_base) : NAN;
Anton Khirnov's avatar
Anton Khirnov committed
1241
        if (ost->forced_kf_index < ost->forced_kf_count &&
1242
            in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
Anton Khirnov's avatar
Anton Khirnov committed
1243
            ost->forced_kf_index++;
1244 1245 1246 1247 1248 1249
            forced_keyframe = 1;
        } else if (ost->forced_keyframes_pexpr) {
            double res;
            ost->forced_keyframes_expr_const_values[FKF_T] = pts_time;
            res = av_expr_eval(ost->forced_keyframes_pexpr,
                               ost->forced_keyframes_expr_const_values, NULL);
1250
            ff_dlog(NULL, "force_key_frame: n:%f n_forced:%f prev_forced_n:%f t:%f prev_forced_t:%f -> res:%f\n",
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
                    ost->forced_keyframes_expr_const_values[FKF_N],
                    ost->forced_keyframes_expr_const_values[FKF_N_FORCED],
                    ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N],
                    ost->forced_keyframes_expr_const_values[FKF_T],
                    ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T],
                    res);
            if (res) {
                forced_keyframe = 1;
                ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] =
                    ost->forced_keyframes_expr_const_values[FKF_N];
                ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] =
                    ost->forced_keyframes_expr_const_values[FKF_T];
                ost->forced_keyframes_expr_const_values[FKF_N_FORCED] += 1;
            }

            ost->forced_keyframes_expr_const_values[FKF_N] += 1;
1267 1268
        } else if (   ost->forced_keyframes
                   && !strncmp(ost->forced_keyframes, "source", 6)
1269 1270
                   && in_picture->key_frame==1
                   && !i) {
1271
            forced_keyframe = 1;
Anton Khirnov's avatar
Anton Khirnov committed
1272
        }
1273

1274
        if (forced_keyframe) {
1275
            in_picture->pict_type = AV_PICTURE_TYPE_I;
1276 1277 1278
            av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time %f\n", pts_time);
        }

1279
        update_benchmark(NULL);
1280 1281 1282 1283 1284 1285 1286
        if (debug_ts) {
            av_log(NULL, AV_LOG_INFO, "encoder <- type:video "
                   "frame_pts:%s frame_pts_time:%s time_base:%d/%d\n",
                   av_ts2str(in_picture->pts), av_ts2timestr(in_picture->pts, &enc->time_base),
                   enc->time_base.num, enc->time_base.den);
        }

1287 1288
        ost->frames_encoded++;

wm4's avatar
wm4 committed
1289 1290 1291
        ret = avcodec_send_frame(enc, in_picture);
        if (ret < 0)
            goto error;
1292 1293
        // Make sure Closed Captions will not be duplicated
        av_frame_remove_side_data(in_picture, AV_FRAME_DATA_A53_CC);
wm4's avatar
wm4 committed
1294 1295 1296 1297 1298 1299 1300 1301

        while (1) {
            ret = avcodec_receive_packet(enc, &pkt);
            update_benchmark("encode_video %d.%d", ost->file_index, ost->index);
            if (ret == AVERROR(EAGAIN))
                break;
            if (ret < 0)
                goto error;
1302

1303 1304 1305 1306 1307 1308 1309
            if (debug_ts) {
                av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
                       "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
                       av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &enc->time_base),
                       av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &enc->time_base));
            }

1310
            if (pkt.pts == AV_NOPTS_VALUE && !(enc->codec->capabilities & AV_CODEC_CAP_DELAY))
1311
                pkt.pts = ost->sync_opts;
1312

1313
            av_packet_rescale_ts(&pkt, enc->time_base, ost->mux_timebase);
1314

1315 1316 1317
            if (debug_ts) {
                av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
                    "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s\n",
1318 1319
                    av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ost->mux_timebase),
                    av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ost->mux_timebase));
1320 1321 1322
            }

            frame_size = pkt.size;
1323
            output_packet(of, &pkt, ost, 0);
1324

Anton Khirnov's avatar
Anton Khirnov committed
1325 1326 1327
            /* if two pass, output log */
            if (ost->logfile && enc->stats_out) {
                fprintf(ost->logfile, "%s", enc->stats_out);
1328
            }
1329
        }
1330 1331 1332 1333 1334 1335 1336
        ost->sync_opts++;
        /*
         * For video, number of frames in == number of packets out.
         * But there may be reordering, so we can't throw away frames on encoder
         * flush, we need to limit them here, before they go into encoder.
         */
        ost->frame_number++;
1337

1338 1339 1340
        if (vstats_filename && frame_size)
            do_video_stats(ost, frame_size);
    }
1341 1342 1343 1344

    if (!ost->last_frame)
        ost->last_frame = av_frame_alloc();
    av_frame_unref(ost->last_frame);
1345
    if (next_picture && ost->last_frame)
1346
        av_frame_ref(ost->last_frame, next_picture);
1347 1348
    else
        av_frame_free(&ost->last_frame);
wm4's avatar
wm4 committed
1349 1350 1351 1352 1353

    return;
error:
    av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
    exit_program(1);
Fabrice Bellard's avatar
Fabrice Bellard committed
1354 1355
}

Aneesh Dogra's avatar
Aneesh Dogra committed
1356
static double psnr(double d)
Fabrice Bellard's avatar
Fabrice Bellard committed
1357
{
1358
    return -10.0 * log10(d);
1359
}
1360

1361
static void do_video_stats(OutputStream *ost, int frame_size)
1362
{
1363 1364 1365
    AVCodecContext *enc;
    int frame_number;
    double ti1, bitrate, avg_bitrate;
1366

1367 1368 1369 1370 1371
    /* this is executed just the first time do_video_stats is called */
    if (!vstats_file) {
        vstats_file = fopen(vstats_filename, "w");
        if (!vstats_file) {
            perror("fopen");
1372
            exit_program(1);
1373
        }
1374
    }
1375

1376
    enc = ost->enc_ctx;
1377
    if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1378
        frame_number = ost->st->nb_frames;
1379 1380 1381 1382 1383 1384 1385
        if (vstats_version <= 1) {
            fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number,
                    ost->quality / (float)FF_QP2LAMBDA);
        } else  {
            fprintf(vstats_file, "out= %2d st= %2d frame= %5d q= %2.1f ", ost->file_index, ost->index, frame_number,
                    ost->quality / (float)FF_QP2LAMBDA);
        }
1386

1387 1388
        if (ost->error[0]>=0 && (enc->flags & AV_CODEC_FLAG_PSNR))
            fprintf(vstats_file, "PSNR= %6.2f ", psnr(ost->error[0] / (enc->width * enc->height * 255.0 * 255.0)));
1389

1390 1391
        fprintf(vstats_file,"f_size= %6d ", frame_size);
        /* compute pts value */
1392
        ti1 = av_stream_get_end_pts(ost->st) * av_q2d(ost->st->time_base);
1393 1394
        if (ti1 < 0.01)
            ti1 = 0.01;
1395

Aneesh Dogra's avatar
Aneesh Dogra committed
1396
        bitrate     = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0;
1397
        avg_bitrate = (double)(ost->data_size * 8) / ti1 / 1000.0;
1398
        fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
1399
               (double)ost->data_size / 1024, ti1, bitrate, avg_bitrate);
1400
        fprintf(vstats_file, "type= %c\n", av_get_picture_type_char(ost->pict_type));
1401
    }
1402
}
1403

1404 1405
static int init_output_stream(OutputStream *ost, char *error, int error_len);

1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
static void finish_output_stream(OutputStream *ost)
{
    OutputFile *of = output_files[ost->file_index];
    int i;

    ost->finished = ENCODER_FINISHED | MUXER_FINISHED;

    if (of->shortest) {
        for (i = 0; i < of->ctx->nb_streams; i++)
            output_streams[of->ost_index + i]->finished = ENCODER_FINISHED | MUXER_FINISHED;
    }
}

1419
/**
1420 1421 1422 1423 1424
 * Get and encode new output from any of the filtergraphs, without causing
 * activity.
 *
 * @return  0 for success, <0 for severe errors
 */
1425
static int reap_filters(int flush)
1426 1427
{
    AVFrame *filtered_frame = NULL;
1428
    int i;
1429

1430 1431 1432 1433
    /* Reap all buffers present in the buffer sinks */
    for (i = 0; i < nb_output_streams; i++) {
        OutputStream *ost = output_streams[i];
        OutputFile    *of = output_files[ost->file_index];
1434
        AVFilterContext *filter;
1435
        AVCodecContext *enc = ost->enc_ctx;
1436 1437
        int ret = 0;

1438
        if (!ost->filter || !ost->filter->graph->graph)
1439
            continue;
1440
        filter = ost->filter->filter;
1441

1442
        if (!ost->initialized) {
1443
            char error[1024] = "";
1444 1445 1446 1447 1448 1449 1450 1451
            ret = init_output_stream(ost, error, sizeof(error));
            if (ret < 0) {
                av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
                       ost->file_index, ost->index, error);
                exit_program(1);
            }
        }

1452
        if (!ost->filtered_frame && !(ost->filtered_frame = av_frame_alloc())) {
1453
            return AVERROR(ENOMEM);
1454
        }
1455 1456 1457
        filtered_frame = ost->filtered_frame;

        while (1) {
1458
            double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precision
1459
            ret = av_buffersink_get_frame_flags(filter, filtered_frame,
1460 1461 1462 1463
                                               AV_BUFFERSINK_FLAG_NO_REQUEST);
            if (ret < 0) {
                if (ret != AVERROR(EAGAIN) && ret != AVERROR_EOF) {
                    av_log(NULL, AV_LOG_WARNING,
1464
                           "Error in av_buffersink_get_frame_flags(): %s\n", av_err2str(ret));
1465
                } else if (flush && ret == AVERROR_EOF) {
1466
                    if (av_buffersink_get_type(filter) == AVMEDIA_TYPE_VIDEO)
1467
                        do_video_out(of, ost, NULL, AV_NOPTS_VALUE);
1468
                }
1469 1470
                break;
            }
1471 1472 1473 1474
            if (ost->finished) {
                av_frame_unref(filtered_frame);
                continue;
            }
1475
            if (filtered_frame->pts != AV_NOPTS_VALUE) {
1476
                int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1477
                AVRational filter_tb = av_buffersink_get_time_base(filter);
1478 1479 1480 1481 1482
                AVRational tb = enc->time_base;
                int extra_bits = av_clip(29 - av_log2(tb.den), 0, 16);

                tb.den <<= extra_bits;
                float_pts =
1483
                    av_rescale_q(filtered_frame->pts, filter_tb, tb) -
1484 1485 1486 1487 1488
                    av_rescale_q(start_time, AV_TIME_BASE_Q, tb);
                float_pts /= 1 << extra_bits;
                // avoid exact midoints to reduce the chance of rounding differences, this can be removed in case the fps code is changed to work with integers
                float_pts += FFSIGN(float_pts) * 1.0 / (1<<17);

1489
                filtered_frame->pts =
1490
                    av_rescale_q(filtered_frame->pts, filter_tb, enc->time_base) -
1491
                    av_rescale_q(start_time, AV_TIME_BASE_Q, enc->time_base);
1492
            }
1493

1494
            switch (av_buffersink_get_type(filter)) {
1495
            case AVMEDIA_TYPE_VIDEO:
1496
                if (!ost->frame_aspect_ratio.num)
1497
                    enc->sample_aspect_ratio = filtered_frame->sample_aspect_ratio;
1498

1499
                if (debug_ts) {
1500
                    av_log(NULL, AV_LOG_INFO, "filter -> pts:%s pts_time:%s exact:%f time_base:%d/%d\n",
1501
                            av_ts2str(filtered_frame->pts), av_ts2timestr(filtered_frame->pts, &enc->time_base),
1502
                            float_pts,
1503 1504 1505
                            enc->time_base.num, enc->time_base.den);
                }

1506
                do_video_out(of, ost, filtered_frame, float_pts);
1507 1508
                break;
            case AVMEDIA_TYPE_AUDIO:
1509
                if (!(enc->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE) &&
1510
                    enc->channels != filtered_frame->channels) {
1511 1512 1513 1514
                    av_log(NULL, AV_LOG_ERROR,
                           "Audio filter graph output is not normalized and encoder does not support parameter changes\n");
                    break;
                }
1515
                do_audio_out(of, ost, filtered_frame);
1516 1517 1518 1519 1520 1521
                break;
            default:
                // TODO support subtitle filters
                av_assert0(0);
            }

1522
            av_frame_unref(filtered_frame);
1523
        }
1524
    }
1525 1526

    return 0;
1527 1528
}

1529 1530 1531 1532 1533 1534
static void print_final_stats(int64_t total_size)
{
    uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0;
    uint64_t subtitle_size = 0;
    uint64_t data_size = 0;
    float percent = -1.0;
1535
    int i, j;
1536
    int pass1_used = 1;
1537 1538 1539

    for (i = 0; i < nb_output_streams; i++) {
        OutputStream *ost = output_streams[i];
1540
        switch (ost->enc_ctx->codec_type) {
1541 1542 1543 1544 1545
            case AVMEDIA_TYPE_VIDEO: video_size += ost->data_size; break;
            case AVMEDIA_TYPE_AUDIO: audio_size += ost->data_size; break;
            case AVMEDIA_TYPE_SUBTITLE: subtitle_size += ost->data_size; break;
            default:                 other_size += ost->data_size; break;
        }
1546
        extra_size += ost->enc_ctx->extradata_size;
1547
        data_size  += ost->data_size;
1548
        if (   (ost->enc_ctx->flags & (AV_CODEC_FLAG_PASS1 | AV_CODEC_FLAG_PASS2))
1549
            != AV_CODEC_FLAG_PASS1)
1550
            pass1_used = 0;
1551 1552
    }

1553
    if (data_size && total_size>0 && total_size >= data_size)
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
        percent = 100.0 * (total_size - data_size) / data_size;

    av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0fkB other streams:%1.0fkB global headers:%1.0fkB muxing overhead: ",
           video_size / 1024.0,
           audio_size / 1024.0,
           subtitle_size / 1024.0,
           other_size / 1024.0,
           extra_size / 1024.0);
    if (percent >= 0.0)
        av_log(NULL, AV_LOG_INFO, "%f%%", percent);
    else
        av_log(NULL, AV_LOG_INFO, "unknown");
    av_log(NULL, AV_LOG_INFO, "\n");
1567 1568 1569 1570 1571 1572 1573

    /* print verbose per-stream stats */
    for (i = 0; i < nb_input_files; i++) {
        InputFile *f = input_files[i];
        uint64_t total_packets = 0, total_size = 0;

        av_log(NULL, AV_LOG_VERBOSE, "Input file #%d (%s):\n",
1574
               i, f->ctx->url);
1575 1576 1577

        for (j = 0; j < f->nb_streams; j++) {
            InputStream *ist = input_streams[f->ist_index + j];
1578
            enum AVMediaType type = ist->dec_ctx->codec_type;
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607

            total_size    += ist->data_size;
            total_packets += ist->nb_packets;

            av_log(NULL, AV_LOG_VERBOSE, "  Input stream #%d:%d (%s): ",
                   i, j, media_type_string(type));
            av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets read (%"PRIu64" bytes); ",
                   ist->nb_packets, ist->data_size);

            if (ist->decoding_needed) {
                av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
                       ist->frames_decoded);
                if (type == AVMEDIA_TYPE_AUDIO)
                    av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
                av_log(NULL, AV_LOG_VERBOSE, "; ");
            }

            av_log(NULL, AV_LOG_VERBOSE, "\n");
        }

        av_log(NULL, AV_LOG_VERBOSE, "  Total: %"PRIu64" packets (%"PRIu64" bytes) demuxed\n",
               total_packets, total_size);
    }

    for (i = 0; i < nb_output_files; i++) {
        OutputFile *of = output_files[i];
        uint64_t total_packets = 0, total_size = 0;

        av_log(NULL, AV_LOG_VERBOSE, "Output file #%d (%s):\n",
1608
               i, of->ctx->url);
1609 1610 1611

        for (j = 0; j < of->ctx->nb_streams; j++) {
            OutputStream *ost = output_streams[of->ost_index + j];
1612
            enum AVMediaType type = ost->enc_ctx->codec_type;
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635

            total_size    += ost->data_size;
            total_packets += ost->packets_written;

            av_log(NULL, AV_LOG_VERBOSE, "  Output stream #%d:%d (%s): ",
                   i, j, media_type_string(type));
            if (ost->encoding_needed) {
                av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames encoded",
                       ost->frames_encoded);
                if (type == AVMEDIA_TYPE_AUDIO)
                    av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ost->samples_encoded);
                av_log(NULL, AV_LOG_VERBOSE, "; ");
            }

            av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets muxed (%"PRIu64" bytes); ",
                   ost->packets_written, ost->data_size);

            av_log(NULL, AV_LOG_VERBOSE, "\n");
        }

        av_log(NULL, AV_LOG_VERBOSE, "  Total: %"PRIu64" packets (%"PRIu64" bytes) muxed\n",
               total_packets, total_size);
    }
1636
    if(video_size + data_size + audio_size + subtitle_size + extra_size == 0){
1637 1638 1639 1640 1641 1642
        av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded ");
        if (pass1_used) {
            av_log(NULL, AV_LOG_WARNING, "\n");
        } else {
            av_log(NULL, AV_LOG_WARNING, "(check -ss / -t / -frames parameters if used)\n");
        }
1643 1644 1645
    }
}

1646
static void print_report(int is_last_report, int64_t timer_start, int64_t cur_time)
1647
{
1648
    AVBPrint buf, buf_script;
1649 1650 1651 1652 1653
    OutputStream *ost;
    AVFormatContext *oc;
    int64_t total_size;
    AVCodecContext *enc;
    int frame_number, vid, i;
1654
    double bitrate;
1655
    double speed;
1656
    int64_t pts = INT64_MIN + 1;
1657 1658
    static int64_t last_time = -1;
    static int qp_histogram[52];
1659
    int hours, mins, secs, us;
1660
    const char *hours_sign;
1661
    int ret;
1662
    float t;
1663

1664
    if (!print_stats && !is_last_report && !progress_avio)
1665
        return;
1666

1667 1668 1669
    if (!is_last_report) {
        if (last_time == -1) {
            last_time = cur_time;
1670
            return;
Ramiro Polla's avatar
Ramiro Polla committed
1671
        }
1672 1673 1674
        if ((cur_time - last_time) < 500000)
            return;
        last_time = cur_time;
1675 1676
    }

1677 1678
    t = (cur_time-timer_start) / 1000000.0;

1679

1680
    oc = output_files[0]->ctx;
1681

1682
    total_size = avio_size(oc->pb);
1683
    if (total_size <= 0) // FIXME improve avio_size() so it works with non seekable output too
Aneesh Dogra's avatar
Aneesh Dogra committed
1684
        total_size = avio_tell(oc->pb);
1685

1686
    vid = 0;
1687
    av_bprint_init(&buf, 0, AV_BPRINT_SIZE_AUTOMATIC);
1688
    av_bprint_init(&buf_script, 0, AV_BPRINT_SIZE_AUTOMATIC);
1689
    for (i = 0; i < nb_output_streams; i++) {
1690
        float q = -1;
1691
        ost = output_streams[i];
1692
        enc = ost->enc_ctx;
1693 1694 1695
        if (!ost->stream_copy)
            q = ost->quality / (float) FF_QP2LAMBDA;

1696
        if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1697
            av_bprintf(&buf, "q=%2.1f ", q);
1698 1699
            av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
                       ost->file_index, ost->index, q);
1700
        }
1701
        if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1702
            float fps;
1703

1704
            frame_number = ost->frame_number;
1705
            fps = t > 1 ? frame_number / t : 0;
1706
            av_bprintf(&buf, "frame=%5d fps=%3.*f q=%3.1f ",
1707 1708
                     frame_number, fps < 9.95, fps, q);
            av_bprintf(&buf_script, "frame=%d\n", frame_number);
1709
            av_bprintf(&buf_script, "fps=%.2f\n", fps);
1710 1711
            av_bprintf(&buf_script, "stream_%d_%d_q=%.1f\n",
                       ost->file_index, ost->index, q);
Aneesh Dogra's avatar
Aneesh Dogra committed
1712
            if (is_last_report)
1713
                av_bprintf(&buf, "L");
Aneesh Dogra's avatar
Aneesh Dogra committed
1714
            if (qp_hist) {
1715 1716
                int j;
                int qp = lrintf(q);
Aneesh Dogra's avatar
Aneesh Dogra committed
1717
                if (qp >= 0 && qp < FF_ARRAY_ELEMS(qp_histogram))
1718
                    qp_histogram[qp]++;
Aneesh Dogra's avatar
Aneesh Dogra committed
1719
                for (j = 0; j < 32; j++)
1720
                    av_bprintf(&buf, "%X", av_log2(qp_histogram[j] + 1));
Fabrice Bellard's avatar
Fabrice Bellard committed
1721
            }
1722

1723
            if ((enc->flags & AV_CODEC_FLAG_PSNR) && (ost->pict_type != AV_PICTURE_TYPE_NONE || is_last_report)) {
1724
                int j;
Aneesh Dogra's avatar
Aneesh Dogra committed
1725 1726
                double error, error_sum = 0;
                double scale, scale_sum = 0;
1727
                double p;
Aneesh Dogra's avatar
Aneesh Dogra committed
1728
                char type[3] = { 'Y','U','V' };
1729
                av_bprintf(&buf, "PSNR=");
Aneesh Dogra's avatar
Aneesh Dogra committed
1730 1731 1732 1733 1734
                for (j = 0; j < 3; j++) {
                    if (is_last_report) {
                        error = enc->error[j];
                        scale = enc->width * enc->height * 255.0 * 255.0 * frame_number;
                    } else {
1735
                        error = ost->error[j];
Aneesh Dogra's avatar
Aneesh Dogra committed
1736
                        scale = enc->width * enc->height * 255.0 * 255.0;
1737
                    }
Aneesh Dogra's avatar
Aneesh Dogra committed
1738 1739
                    if (j)
                        scale /= 4;
1740 1741
                    error_sum += error;
                    scale_sum += scale;
1742
                    p = psnr(error / scale);
1743
                    av_bprintf(&buf, "%c:%2.2f ", type[j], p);
1744
                    av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
1745
                               ost->file_index, ost->index, type[j] | 32, p);
1746
                }
1747
                p = psnr(error_sum / scale_sum);
1748
                av_bprintf(&buf, "*:%2.2f ", psnr(error_sum / scale_sum));
1749 1750
                av_bprintf(&buf_script, "stream_%d_%d_psnr_all=%2.2f\n",
                           ost->file_index, ost->index, p);
1751 1752
            }
            vid = 1;
Fabrice Bellard's avatar
Fabrice Bellard committed
1753
        }
1754
        /* compute min output value */
1755 1756
        if (av_stream_get_end_pts(ost->st) != AV_NOPTS_VALUE)
            pts = FFMAX(pts, av_rescale_q(av_stream_get_end_pts(ost->st),
1757
                                          ost->st->time_base, AV_TIME_BASE_Q));
1758
        if (is_last_report)
1759
            nb_frames_drop += ost->last_dropped;
Fabrice Bellard's avatar
Fabrice Bellard committed
1760 1761
    }

1762 1763
    secs = FFABS(pts) / AV_TIME_BASE;
    us = FFABS(pts) % AV_TIME_BASE;
1764 1765 1766 1767
    mins = secs / 60;
    secs %= 60;
    hours = mins / 60;
    mins %= 60;
1768
    hours_sign = (pts < 0) ? "-" : "";
1769

1770
    bitrate = pts && total_size >= 0 ? total_size * 8 / (pts / 1000.0) : -1;
1771
    speed = t != 0.0 ? (double)pts / AV_TIME_BASE / t : -1;
1772

1773 1774
    if (total_size < 0) av_bprintf(&buf, "size=N/A time=");
    else                av_bprintf(&buf, "size=%8.0fkB time=", total_size / 1024.0);
1775
    if (pts == AV_NOPTS_VALUE) {
1776
        av_bprintf(&buf, "N/A ");
1777
    } else {
1778 1779
        av_bprintf(&buf, "%s%02d:%02d:%02d.%02d ",
                   hours_sign, hours, mins, secs, (100 * us) / AV_TIME_BASE);
1780
    }
1781 1782

    if (bitrate < 0) {
1783
        av_bprintf(&buf, "bitrate=N/A");
1784 1785
        av_bprintf(&buf_script, "bitrate=N/A\n");
    }else{
1786
        av_bprintf(&buf, "bitrate=%6.1fkbits/s", bitrate);
1787 1788 1789
        av_bprintf(&buf_script, "bitrate=%6.1fkbits/s\n", bitrate);
    }

1790 1791
    if (total_size < 0) av_bprintf(&buf_script, "total_size=N/A\n");
    else                av_bprintf(&buf_script, "total_size=%"PRId64"\n", total_size);
1792
    if (pts == AV_NOPTS_VALUE) {
1793
        av_bprintf(&buf_script, "out_time_us=N/A\n");
1794 1795 1796
        av_bprintf(&buf_script, "out_time_ms=N/A\n");
        av_bprintf(&buf_script, "out_time=N/A\n");
    } else {
1797
        av_bprintf(&buf_script, "out_time_us=%"PRId64"\n", pts);
1798 1799 1800 1801
        av_bprintf(&buf_script, "out_time_ms=%"PRId64"\n", pts);
        av_bprintf(&buf_script, "out_time=%s%02d:%02d:%02d.%06d\n",
                   hours_sign, hours, mins, secs, us);
    }
1802

1803
    if (nb_frames_dup || nb_frames_drop)
1804
        av_bprintf(&buf, " dup=%d drop=%d", nb_frames_dup, nb_frames_drop);
1805 1806
    av_bprintf(&buf_script, "dup_frames=%d\n", nb_frames_dup);
    av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
1807

1808
    if (speed < 0) {
1809
        av_bprintf(&buf, " speed=N/A");
1810 1811
        av_bprintf(&buf_script, "speed=N/A\n");
    } else {
1812
        av_bprintf(&buf, " speed=%4.3gx", speed);
1813 1814 1815
        av_bprintf(&buf_script, "speed=%4.3gx\n", speed);
    }

1816
    if (print_stats || is_last_report) {
1817
        const char end = is_last_report ? '\n' : '\r';
1818
        if (print_stats==1 && AV_LOG_INFO > av_log_get_level()) {
1819
            fprintf(stderr, "%s    %c", buf.str, end);
1820
        } else
1821
            av_log(NULL, AV_LOG_INFO, "%s    %c", buf.str, end);
1822

1823
        fflush(stderr);
Fabrice Bellard's avatar
Fabrice Bellard committed
1824
    }
1825
    av_bprint_finalize(&buf, NULL);
Fabrice Bellard's avatar
Fabrice Bellard committed
1826

1827 1828 1829 1830 1831 1832 1833 1834
    if (progress_avio) {
        av_bprintf(&buf_script, "progress=%s\n",
                   is_last_report ? "end" : "continue");
        avio_write(progress_avio, buf_script.str,
                   FFMIN(buf_script.len, buf_script.size - 1));
        avio_flush(progress_avio);
        av_bprint_finalize(&buf_script, NULL);
        if (is_last_report) {
1835 1836 1837
            if ((ret = avio_closep(&progress_avio)) < 0)
                av_log(NULL, AV_LOG_ERROR,
                       "Error closing progress log, loss of information possible: %s\n", av_err2str(ret));
1838 1839
        }
    }
1840

1841 1842
    if (is_last_report)
        print_final_stats(total_size);
1843
}
1844

1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
static void ifilter_parameters_from_codecpar(InputFilter *ifilter, AVCodecParameters *par)
{
    // We never got any input. Set a fake format, which will
    // come from libavformat.
    ifilter->format                 = par->format;
    ifilter->sample_rate            = par->sample_rate;
    ifilter->channels               = par->channels;
    ifilter->channel_layout         = par->channel_layout;
    ifilter->width                  = par->width;
    ifilter->height                 = par->height;
    ifilter->sample_aspect_ratio    = par->sample_aspect_ratio;
}

1858
static void flush_encoders(void)
1859 1860
{
    int i, ret;
1861

1862
    for (i = 0; i < nb_output_streams; i++) {
1863
        OutputStream   *ost = output_streams[i];
1864
        AVCodecContext *enc = ost->enc_ctx;
1865
        OutputFile      *of = output_files[ost->file_index];
1866

1867
        if (!ost->encoding_needed)
1868 1869
            continue;

1870 1871 1872 1873
        // Try to enable encoding with no input frames.
        // Maybe we should just let encoding fail instead.
        if (!ost->initialized) {
            FilterGraph *fg = ost->filter->graph;
1874
            char error[1024] = "";
1875 1876 1877 1878 1879 1880 1881 1882 1883

            av_log(NULL, AV_LOG_WARNING,
                   "Finishing stream %d:%d without any data written to it.\n",
                   ost->file_index, ost->st->index);

            if (ost->filter && !fg->graph) {
                int x;
                for (x = 0; x < fg->nb_inputs; x++) {
                    InputFilter *ifilter = fg->inputs[x];
1884 1885
                    if (ifilter->format < 0)
                        ifilter_parameters_from_codecpar(ifilter, ifilter->ist->st->codecpar);
1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
                }

                if (!ifilter_has_all_input_formats(fg))
                    continue;

                ret = configure_filtergraph(fg);
                if (ret < 0) {
                    av_log(NULL, AV_LOG_ERROR, "Error configuring filter graph\n");
                    exit_program(1);
                }

                finish_output_stream(ost);
            }

            ret = init_output_stream(ost, error, sizeof(error));
            if (ret < 0) {
                av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
                       ost->file_index, ost->index, error);
                exit_program(1);
            }
        }

1908
        if (enc->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <= 1)
1909 1910
            continue;

wm4's avatar
wm4 committed
1911 1912 1913
        if (enc->codec_type != AVMEDIA_TYPE_VIDEO && enc->codec_type != AVMEDIA_TYPE_AUDIO)
            continue;

Aneesh Dogra's avatar
Aneesh Dogra committed
1914
        for (;;) {
wm4's avatar
wm4 committed
1915
            const char *desc = NULL;
1916 1917
            AVPacket pkt;
            int pkt_size;
1918

1919
            switch (enc->codec_type) {
1920
            case AVMEDIA_TYPE_AUDIO:
1921
                desc   = "audio";
1922 1923
                break;
            case AVMEDIA_TYPE_VIDEO:
1924
                desc   = "video";
1925 1926
                break;
            default:
wm4's avatar
wm4 committed
1927
                av_assert0(0);
1928 1929
            }

1930 1931 1932
            av_init_packet(&pkt);
            pkt.data = NULL;
            pkt.size = 0;
1933

1934
            update_benchmark(NULL);
1935

1936 1937 1938
            while ((ret = avcodec_receive_packet(enc, &pkt)) == AVERROR(EAGAIN)) {
                ret = avcodec_send_frame(enc, NULL);
                if (ret < 0) {
1939 1940 1941
                    av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n",
                           desc,
                           av_err2str(ret));
1942
                    exit_program(1);
1943
                }
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
            }

            update_benchmark("flush_%s %d.%d", desc, ost->file_index, ost->index);
            if (ret < 0 && ret != AVERROR_EOF) {
                av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n",
                       desc,
                       av_err2str(ret));
                exit_program(1);
            }
            if (ost->logfile && enc->stats_out) {
                fprintf(ost->logfile, "%s", enc->stats_out);
            }
            if (ret == AVERROR_EOF) {
                output_packet(of, &pkt, ost, 1);
                break;
            }
            if (ost->finished & MUXER_FINISHED) {
                av_packet_unref(&pkt);
                continue;
            }
            av_packet_rescale_ts(&pkt, enc->time_base, ost->mux_timebase);
            pkt_size = pkt.size;
            output_packet(of, &pkt, ost, 0);
            if (ost->enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO && vstats_filename) {
                do_video_stats(ost, pkt_size);
            }
1970 1971
        }
    }
1972
}
1973

1974 1975 1976 1977 1978
/*
 * Check whether a packet from ist should be written into ost at this time
 */
static int check_output_constraints(InputStream *ist, OutputStream *ost)
{
1979 1980
    OutputFile *of = output_files[ost->file_index];
    int ist_index  = input_files[ist->file_index]->ist_index + ist->st->index;
1981

1982 1983
    if (ost->source_index != ist_index)
        return 0;
1984

1985 1986 1987
    if (ost->finished)
        return 0;

1988
    if (of->start_time != AV_NOPTS_VALUE && ist->pts < of->start_time)
1989
        return 0;
1990

1991 1992
    return 1;
}
1993

1994 1995
static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt)
{
1996
    OutputFile *of = output_files[ost->file_index];
1997
    InputFile   *f = input_files [ist->file_index];
1998
    int64_t start_time = (of->start_time == AV_NOPTS_VALUE) ? 0 : of->start_time;
1999
    int64_t ost_tb_start_time = av_rescale_q(start_time, AV_TIME_BASE_Q, ost->mux_timebase);
2000
    AVPacket opkt;
2001

James Almer's avatar
James Almer committed
2002 2003
    // EOF: flush output bitstream filters.
    if (!pkt) {
2004 2005 2006
        av_init_packet(&opkt);
        opkt.data = NULL;
        opkt.size = 0;
James Almer's avatar
James Almer committed
2007 2008 2009 2010
        output_packet(of, &opkt, ost, 1);
        return;
    }

2011 2012 2013 2014
    if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) &&
        !ost->copy_initial_nonkeyframes)
        return;

2015 2016 2017 2018 2019 2020 2021
    if (!ost->frame_number && !ost->copy_prior_start) {
        int64_t comp_start = start_time;
        if (copy_ts && f->start_time != AV_NOPTS_VALUE)
            comp_start = FFMAX(start_time, f->start_time + f->ts_offset);
        if (pkt->pts == AV_NOPTS_VALUE ?
            ist->pts < comp_start :
            pkt->pts < av_rescale_q(comp_start, AV_TIME_BASE_Q, ist->st->time_base))
2022 2023
            return;
    }
2024

2025
    if (of->recording_time != INT64_MAX &&
2026
        ist->pts >= of->recording_time + start_time) {
2027
        close_output_stream(ost);
2028
        return;
2029 2030
    }

2031 2032
    if (f->recording_time != INT64_MAX) {
        start_time = f->ctx->start_time;
2033
        if (f->start_time != AV_NOPTS_VALUE && copy_ts)
2034
            start_time += f->start_time;
2035 2036
        if (ist->pts >= f->recording_time + start_time) {
            close_output_stream(ost);
2037 2038 2039 2040
            return;
        }
    }

2041
    /* force the input stream PTS */
2042
    if (ost->enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO)
2043
        ost->sync_opts++;
Fabrice Bellard's avatar
Fabrice Bellard committed
2044

2045 2046 2047
    if (av_packet_ref(&opkt, pkt) < 0)
        exit_program(1);

2048
    if (pkt->pts != AV_NOPTS_VALUE)
2049
        opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->mux_timebase) - ost_tb_start_time;
2050

2051
    if (pkt->dts == AV_NOPTS_VALUE) {
2052
        opkt.dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->mux_timebase);
2053
    } else if (ost->st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
2054
        int duration = av_get_audio_frame_duration(ist->dec_ctx, pkt->size);
2055
        if(!duration)
2056
            duration = ist->dec_ctx->frame_size;
2057 2058 2059 2060 2061 2062 2063 2064
        opkt.dts = av_rescale_delta(ist->st->time_base, pkt->dts,
                                    (AVRational){1, ist->dec_ctx->sample_rate}, duration,
                                    &ist->filter_in_rescale_delta_last, ost->mux_timebase);
        /* dts will be set immediately afterwards to what pts is now */
        opkt.pts = opkt.dts - ost_tb_start_time;
    } else
        opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->mux_timebase);
    opkt.dts -= ost_tb_start_time;
2065

2066 2067
    opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->mux_timebase);

2068
    output_packet(of, &opkt, ost, 0);
2069
}
2070

2071
int guess_input_channel_layout(InputStream *ist)
2072
{
2073
    AVCodecContext *dec = ist->dec_ctx;
2074

2075 2076
    if (!dec->channel_layout) {
        char layout_name[256];
2077

2078 2079
        if (dec->channels > ist->guess_layout_max)
            return 0;
2080 2081 2082 2083 2084
        dec->channel_layout = av_get_default_channel_layout(dec->channels);
        if (!dec->channel_layout)
            return 0;
        av_get_channel_layout_string(layout_name, sizeof(layout_name),
                                     dec->channels, dec->channel_layout);
2085
        av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
2086
               "#%d.%d : %s\n", ist->file_index, ist->st->index, layout_name);
2087
    }
2088
    return 1;
2089 2090
}

2091
static void check_decode_result(InputStream *ist, int *got_output, int ret)
2092 2093 2094 2095 2096 2097
{
    if (*got_output || ret<0)
        decode_error_stat[ret<0] ++;

    if (ret < 0 && exit_on_error)
        exit_program(1);
2098

2099
    if (*got_output && ist) {
2100
        if (ist->decoded_frame->decode_error_flags || (ist->decoded_frame->flags & AV_FRAME_FLAG_CORRUPT)) {
2101 2102 2103 2104
            av_log(NULL, exit_on_error ? AV_LOG_FATAL : AV_LOG_WARNING,
                   "%s: corrupt decoded frame in stream %d\n", input_files[ist->file_index]->ctx->url, ist->st->index);
            if (exit_on_error)
                exit_program(1);
2105 2106
        }
    }
2107 2108
}

2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140
// Filters can be configured only if the formats of all inputs are known.
static int ifilter_has_all_input_formats(FilterGraph *fg)
{
    int i;
    for (i = 0; i < fg->nb_inputs; i++) {
        if (fg->inputs[i]->format < 0 && (fg->inputs[i]->type == AVMEDIA_TYPE_AUDIO ||
                                          fg->inputs[i]->type == AVMEDIA_TYPE_VIDEO))
            return 0;
    }
    return 1;
}

static int ifilter_send_frame(InputFilter *ifilter, AVFrame *frame)
{
    FilterGraph *fg = ifilter->graph;
    int need_reinit, ret, i;

    /* determine if the parameters for this input changed */
    need_reinit = ifilter->format != frame->format;

    switch (ifilter->ist->st->codecpar->codec_type) {
    case AVMEDIA_TYPE_AUDIO:
        need_reinit |= ifilter->sample_rate    != frame->sample_rate ||
                       ifilter->channels       != frame->channels ||
                       ifilter->channel_layout != frame->channel_layout;
        break;
    case AVMEDIA_TYPE_VIDEO:
        need_reinit |= ifilter->width  != frame->width ||
                       ifilter->height != frame->height;
        break;
    }

2141 2142 2143 2144 2145 2146 2147
    if (!ifilter->ist->reinit_filters && fg->graph)
        need_reinit = 0;

    if (!!ifilter->hw_frames_ctx != !!frame->hw_frames_ctx ||
        (ifilter->hw_frames_ctx && ifilter->hw_frames_ctx->data != frame->hw_frames_ctx->data))
        need_reinit = 1;

2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
    if (need_reinit) {
        ret = ifilter_parameters_from_frame(ifilter, frame);
        if (ret < 0)
            return ret;
    }

    /* (re)init the graph if possible, otherwise buffer the frame and return */
    if (need_reinit || !fg->graph) {
        for (i = 0; i < fg->nb_inputs; i++) {
            if (!ifilter_has_all_input_formats(fg)) {
                AVFrame *tmp = av_frame_clone(frame);
                if (!tmp)
                    return AVERROR(ENOMEM);
                av_frame_unref(frame);

                if (!av_fifo_space(ifilter->frame_queue)) {
                    ret = av_fifo_realloc2(ifilter->frame_queue, 2 * av_fifo_size(ifilter->frame_queue));
2165 2166
                    if (ret < 0) {
                        av_frame_free(&tmp);
2167
                        return ret;
2168
                    }
2169 2170 2171 2172 2173 2174 2175 2176
                }
                av_fifo_generic_write(ifilter->frame_queue, &tmp, sizeof(tmp), NULL);
                return 0;
            }
        }

        ret = reap_filters(1);
        if (ret < 0 && ret != AVERROR_EOF) {
2177
            av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189
            return ret;
        }

        ret = configure_filtergraph(fg);
        if (ret < 0) {
            av_log(NULL, AV_LOG_ERROR, "Error reinitializing filters!\n");
            return ret;
        }
    }

    ret = av_buffersrc_add_frame_flags(ifilter->filter, frame, AV_BUFFERSRC_FLAG_PUSH);
    if (ret < 0) {
2190 2191
        if (ret != AVERROR_EOF)
            av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
2192 2193 2194 2195 2196 2197
        return ret;
    }

    return 0;
}

2198
static int ifilter_send_eof(InputFilter *ifilter, int64_t pts)
2199
{
2200
    int ret;
2201 2202 2203 2204

    ifilter->eof = 1;

    if (ifilter->filter) {
2205
        ret = av_buffersrc_close(ifilter->filter, pts, AV_BUFFERSRC_FLAG_PUSH);
2206 2207 2208 2209
        if (ret < 0)
            return ret;
    } else {
        // the filtergraph was never configured
2210 2211 2212 2213 2214 2215
        if (ifilter->format < 0)
            ifilter_parameters_from_codecpar(ifilter, ifilter->ist->st->codecpar);
        if (ifilter->format < 0 && (ifilter->type == AVMEDIA_TYPE_AUDIO || ifilter->type == AVMEDIA_TYPE_VIDEO)) {
            av_log(NULL, AV_LOG_ERROR, "Cannot determine format of input stream %d:%d after EOF\n", ifilter->ist->file_index, ifilter->ist->st->index);
            return AVERROR_INVALIDDATA;
        }
2216 2217 2218 2219 2220
    }

    return 0;
}

wm4's avatar
wm4 committed
2221 2222
// This does not quite work like avcodec_decode_audio4/avcodec_decode_video2.
// There is the following difference: if you got a frame, you must call
2223 2224
// it again with pkt=NULL. pkt==NULL is treated differently from pkt->size==0
// (pkt==NULL means get more output, pkt->size==0 is a flush/drain packet)
wm4's avatar
wm4 committed
2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
{
    int ret;

    *got_frame = 0;

    if (pkt) {
        ret = avcodec_send_packet(avctx, pkt);
        // In particular, we don't expect AVERROR(EAGAIN), because we read all
        // decoded frames with avcodec_receive_frame() until done.
        if (ret < 0 && ret != AVERROR_EOF)
            return ret;
    }

    ret = avcodec_receive_frame(avctx, frame);
    if (ret < 0 && ret != AVERROR(EAGAIN))
        return ret;
    if (ret >= 0)
        *got_frame = 1;

    return 0;
}

2248 2249 2250 2251 2252
static int send_frame_to_filters(InputStream *ist, AVFrame *decoded_frame)
{
    int i, ret;
    AVFrame *f;

2253
    av_assert1(ist->nb_filters > 0); /* ensure ret is initialized */
2254 2255 2256 2257 2258 2259 2260 2261
    for (i = 0; i < ist->nb_filters; i++) {
        if (i < ist->nb_filters - 1) {
            f = ist->filter_frame;
            ret = av_frame_ref(f, decoded_frame);
            if (ret < 0)
                break;
        } else
            f = decoded_frame;
2262
        ret = ifilter_send_frame(ist->filters[i], f);
2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
        if (ret == AVERROR_EOF)
            ret = 0; /* ignore */
        if (ret < 0) {
            av_log(NULL, AV_LOG_ERROR,
                   "Failed to inject frame into filter network: %s\n", av_err2str(ret));
            break;
        }
    }
    return ret;
}

2274 2275
static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output,
                        int *decode_failed)
2276
{
2277
    AVFrame *decoded_frame;
2278
    AVCodecContext *avctx = ist->dec_ctx;
2279
    int ret, err = 0;
2280
    AVRational decoded_frame_tb;
2281

2282
    if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
2283
        return AVERROR(ENOMEM);
2284 2285
    if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
        return AVERROR(ENOMEM);
2286
    decoded_frame = ist->decoded_frame;
2287

2288
    update_benchmark(NULL);
wm4's avatar
wm4 committed
2289
    ret = decode(avctx, decoded_frame, got_output, pkt);
2290
    update_benchmark("decode_audio %d.%d", ist->file_index, ist->st->index);
2291 2292
    if (ret < 0)
        *decode_failed = 1;
2293 2294

    if (ret >= 0 && avctx->sample_rate <= 0) {
2295
        av_log(avctx, AV_LOG_ERROR, "Sample rate %d invalid\n", avctx->sample_rate);
2296
        ret = AVERROR_INVALIDDATA;
2297
    }
2298

wm4's avatar
wm4 committed
2299 2300
    if (ret != AVERROR_EOF)
        check_decode_result(ist, got_output, ret);
2301

2302
    if (!*got_output || ret < 0)
2303
        return ret;
2304

2305 2306 2307
    ist->samples_decoded += decoded_frame->nb_samples;
    ist->frames_decoded++;

2308 2309 2310 2311 2312 2313
    /* increment next_dts to use for the case where the input stream does not
       have timestamps or there are multiple frames in the packet */
    ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
                     avctx->sample_rate;
    ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
                     avctx->sample_rate;
2314

2315
    if (decoded_frame->pts != AV_NOPTS_VALUE) {
2316
        decoded_frame_tb   = ist->st->time_base;
wm4's avatar
wm4 committed
2317
    } else if (pkt && pkt->pts != AV_NOPTS_VALUE) {
2318 2319 2320 2321 2322 2323
        decoded_frame->pts = pkt->pts;
        decoded_frame_tb   = ist->st->time_base;
    }else {
        decoded_frame->pts = ist->dts;
        decoded_frame_tb   = AV_TIME_BASE_Q;
    }
2324
    if (decoded_frame->pts != AV_NOPTS_VALUE)
2325
        decoded_frame->pts = av_rescale_delta(decoded_frame_tb, decoded_frame->pts,
2326 2327
                                              (AVRational){1, avctx->sample_rate}, decoded_frame->nb_samples, &ist->filter_in_rescale_delta_last,
                                              (AVRational){1, avctx->sample_rate});
2328
    ist->nb_samples = decoded_frame->nb_samples;
2329
    err = send_frame_to_filters(ist, decoded_frame);
2330

2331 2332 2333
    av_frame_unref(ist->filter_frame);
    av_frame_unref(decoded_frame);
    return err < 0 ? err : ret;
2334 2335
}

2336
static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output, int64_t *duration_pts, int eof,
2337
                        int *decode_failed)
2338
{
2339
    AVFrame *decoded_frame;
2340
    int i, ret = 0, err = 0;
2341
    int64_t best_effort_timestamp;
wm4's avatar
wm4 committed
2342 2343 2344 2345 2346 2347 2348 2349
    int64_t dts = AV_NOPTS_VALUE;
    AVPacket avpkt;

    // With fate-indeo3-2, we're getting 0-sized packets before EOF for some
    // reason. This seems like a semi-critical bug. Don't trigger EOF, and
    // skip the packet.
    if (!eof && pkt && pkt->size == 0)
        return 0;
2350

2351 2352 2353
    if (!ist->decoded_frame && !(ist->decoded_frame = av_frame_alloc()))
        return AVERROR(ENOMEM);
    if (!ist->filter_frame && !(ist->filter_frame = av_frame_alloc()))
2354
        return AVERROR(ENOMEM);
2355
    decoded_frame = ist->decoded_frame;
wm4's avatar
wm4 committed
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371
    if (ist->dts != AV_NOPTS_VALUE)
        dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ist->st->time_base);
    if (pkt) {
        avpkt = *pkt;
        avpkt.dts = dts; // ffmpeg.c probably shouldn't do this
    }

    // The old code used to set dts on the drain packet, which does not work
    // with the new API anymore.
    if (eof) {
        void *new = av_realloc_array(ist->dts_buffer, ist->nb_dts_buffer + 1, sizeof(ist->dts_buffer[0]));
        if (!new)
            return AVERROR(ENOMEM);
        ist->dts_buffer = new;
        ist->dts_buffer[ist->nb_dts_buffer++] = dts;
    }
2372

2373
    update_benchmark(NULL);
wm4's avatar
wm4 committed
2374
    ret = decode(ist->dec_ctx, decoded_frame, got_output, pkt ? &avpkt : NULL);
2375
    update_benchmark("decode_video %d.%d", ist->file_index, ist->st->index);
2376 2377
    if (ret < 0)
        *decode_failed = 1;
2378 2379 2380

    // The following line may be required in some cases where there is no parser
    // or the parser does not has_b_frames correctly
2381
    if (ist->st->codecpar->video_delay < ist->dec_ctx->has_b_frames) {
2382
        if (ist->dec_ctx->codec_id == AV_CODEC_ID_H264) {
2383
            ist->st->codecpar->video_delay = ist->dec_ctx->has_b_frames;
2384
        } else
2385
            av_log(ist->dec_ctx, AV_LOG_WARNING,
2386
                   "video_delay is larger in decoder than demuxer %d > %d.\n"
2387 2388
                   "If you want to help, upload a sample "
                   "of this file to ftp://upload.ffmpeg.org/incoming/ "
2389
                   "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n",
2390
                   ist->dec_ctx->has_b_frames,
2391
                   ist->st->codecpar->video_delay);
2392
    }
2393

wm4's avatar
wm4 committed
2394 2395
    if (ret != AVERROR_EOF)
        check_decode_result(ist, got_output, ret);
2396

2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410
    if (*got_output && ret >= 0) {
        if (ist->dec_ctx->width  != decoded_frame->width ||
            ist->dec_ctx->height != decoded_frame->height ||
            ist->dec_ctx->pix_fmt != decoded_frame->format) {
            av_log(NULL, AV_LOG_DEBUG, "Frame parameters mismatch context %d,%d,%d != %d,%d,%d\n",
                decoded_frame->width,
                decoded_frame->height,
                decoded_frame->format,
                ist->dec_ctx->width,
                ist->dec_ctx->height,
                ist->dec_ctx->pix_fmt);
        }
    }

2411
    if (!*got_output || ret < 0)
2412
        return ret;
2413

2414 2415
    if(ist->top_field_first>=0)
        decoded_frame->top_field_first = ist->top_field_first;
2416

2417 2418
    ist->frames_decoded++;

2419
    if (ist->hwaccel_retrieve_data && decoded_frame->format == ist->hwaccel_pix_fmt) {
2420
        err = ist->hwaccel_retrieve_data(ist->dec_ctx, decoded_frame);
2421 2422 2423
        if (err < 0)
            goto fail;
    }
2424 2425
    ist->hwaccel_retrieved_pix_fmt = decoded_frame->format;

2426
    best_effort_timestamp= decoded_frame->best_effort_timestamp;
2427
    *duration_pts = decoded_frame->pkt_duration;
wm4's avatar
wm4 committed
2428

2429 2430 2431
    if (ist->framerate.num)
        best_effort_timestamp = ist->cfr_next_pts++;

wm4's avatar
wm4 committed
2432 2433 2434 2435 2436 2437 2438 2439
    if (eof && best_effort_timestamp == AV_NOPTS_VALUE && ist->nb_dts_buffer > 0) {
        best_effort_timestamp = ist->dts_buffer[0];

        for (i = 0; i < ist->nb_dts_buffer - 1; i++)
            ist->dts_buffer[i] = ist->dts_buffer[i + 1];
        ist->nb_dts_buffer--;
    }

2440 2441 2442 2443 2444 2445
    if(best_effort_timestamp != AV_NOPTS_VALUE) {
        int64_t ts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q);

        if (ts != AV_NOPTS_VALUE)
            ist->next_pts = ist->pts = ts;
    }
2446

2447 2448
    if (debug_ts) {
        av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
2449 2450 2451 2452 2453 2454 2455
               "frame_pts:%s frame_pts_time:%s best_effort_ts:%"PRId64" best_effort_ts_time:%s keyframe:%d frame_type:%d time_base:%d/%d\n",
               ist->st->index, av_ts2str(decoded_frame->pts),
               av_ts2timestr(decoded_frame->pts, &ist->st->time_base),
               best_effort_timestamp,
               av_ts2timestr(best_effort_timestamp, &ist->st->time_base),
               decoded_frame->key_frame, decoded_frame->pict_type,
               ist->st->time_base.num, ist->st->time_base.den);
2456 2457
    }

2458 2459
    if (ist->st->sample_aspect_ratio.num)
        decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
2460

2461
    err = send_frame_to_filters(ist, decoded_frame);
2462

2463
fail:
2464 2465 2466
    av_frame_unref(ist->filter_frame);
    av_frame_unref(decoded_frame);
    return err < 0 ? err : ret;
2467 2468
}

2469 2470
static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output,
                               int *decode_failed)
2471
{
2472
    AVSubtitle subtitle;
2473
    int free_sub = 1;
2474
    int i, ret = avcodec_decode_subtitle2(ist->dec_ctx,
2475
                                          &subtitle, got_output, pkt);
2476

2477
    check_decode_result(NULL, got_output, ret);
2478

2479
    if (ret < 0 || !*got_output) {
2480
        *decode_failed = 1;
2481 2482
        if (!pkt->size)
            sub2video_flush(ist);
2483
        return ret;
2484
    }
2485

2486
    if (ist->fix_sub_duration) {
2487
        int end = 1;
2488
        if (ist->prev_sub.got_output) {
2489 2490
            end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
                             1000, AV_TIME_BASE);
2491
            if (end < ist->prev_sub.subtitle.end_display_time) {
2492
                av_log(ist->dec_ctx, AV_LOG_DEBUG,
2493
                       "Subtitle duration reduced from %"PRId32" to %d%s\n",
2494 2495
                       ist->prev_sub.subtitle.end_display_time, end,
                       end <= 0 ? ", dropping it" : "");
2496 2497 2498 2499 2500 2501
                ist->prev_sub.subtitle.end_display_time = end;
            }
        }
        FFSWAP(int,        *got_output, ist->prev_sub.got_output);
        FFSWAP(int,        ret,         ist->prev_sub.ret);
        FFSWAP(AVSubtitle, subtitle,    ist->prev_sub.subtitle);
2502 2503
        if (end <= 0)
            goto out;
2504 2505
    }

2506 2507 2508
    if (!*got_output)
        return ret;

2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523
    if (ist->sub2video.frame) {
        sub2video_update(ist, &subtitle);
    } else if (ist->nb_filters) {
        if (!ist->sub2video.sub_queue)
            ist->sub2video.sub_queue = av_fifo_alloc(8 * sizeof(AVSubtitle));
        if (!ist->sub2video.sub_queue)
            exit_program(1);
        if (!av_fifo_space(ist->sub2video.sub_queue)) {
            ret = av_fifo_realloc2(ist->sub2video.sub_queue, 2 * av_fifo_size(ist->sub2video.sub_queue));
            if (ret < 0)
                exit_program(1);
        }
        av_fifo_generic_write(ist->sub2video.sub_queue, &subtitle, sizeof(subtitle), NULL);
        free_sub = 0;
    }
2524

2525
    if (!subtitle.num_rects)
2526
        goto out;
2527

2528 2529
    ist->frames_decoded++;

2530
    for (i = 0; i < nb_output_streams; i++) {
2531
        OutputStream *ost = output_streams[i];
2532

2533 2534
        if (!check_output_constraints(ist, ost) || !ost->encoding_needed
            || ost->enc->type != AVMEDIA_TYPE_SUBTITLE)
2535
            continue;
2536

2537
        do_subtitle_out(output_files[ost->file_index], ost, &subtitle);
2538
    }
2539

2540
out:
2541 2542
    if (free_sub)
        avsubtitle_free(&subtitle);
2543
    return ret;
2544
}
2545

2546 2547
static int send_filter_eof(InputStream *ist)
{
2548
    int i, ret;
2549 2550 2551 2552
    /* TODO keep pts also in stream time base to avoid converting back */
    int64_t pts = av_rescale_q_rnd(ist->pts, AV_TIME_BASE_Q, ist->st->time_base,
                                   AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX);

2553
    for (i = 0; i < ist->nb_filters; i++) {
2554
        ret = ifilter_send_eof(ist->filters[i], pts);
2555 2556
        if (ret < 0)
            return ret;
2557 2558 2559 2560
    }
    return 0;
}

2561
/* pkt = NULL means EOF (needed to flush decoder buffers) */
2562
static int process_input_packet(InputStream *ist, const AVPacket *pkt, int no_eof)
2563
{
2564
    int ret = 0, i;
wm4's avatar
wm4 committed
2565 2566
    int repeating = 0;
    int eof_reached = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2567

2568
    AVPacket avpkt;
2569
    if (!ist->saw_first_ts) {
2570
        ist->dts = ist->st->avg_frame_rate.num ? - ist->dec_ctx->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
2571
        ist->pts = 0;
2572
        if (pkt && pkt->pts != AV_NOPTS_VALUE && !ist->decoding_needed) {
2573 2574
            ist->dts += av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q);
            ist->pts = ist->dts; //unused but better to set it to a value thats not totally wrong
2575
        }
2576 2577
        ist->saw_first_ts = 1;
    }
2578

2579
    if (ist->next_dts == AV_NOPTS_VALUE)
2580 2581 2582
        ist->next_dts = ist->dts;
    if (ist->next_pts == AV_NOPTS_VALUE)
        ist->next_pts = ist->pts;
2583

2584
    if (!pkt) {
2585 2586 2587 2588 2589 2590 2591
        /* EOF handling */
        av_init_packet(&avpkt);
        avpkt.data = NULL;
        avpkt.size = 0;
    } else {
        avpkt = *pkt;
    }
2592

wm4's avatar
wm4 committed
2593
    if (pkt && pkt->dts != AV_NOPTS_VALUE) {
2594
        ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
2595
        if (ist->dec_ctx->codec_type != AVMEDIA_TYPE_VIDEO || !ist->decoding_needed)
2596
            ist->next_pts = ist->pts = ist->dts;
2597
    }
2598

Aneesh Dogra's avatar
Aneesh Dogra committed
2599
    // while we have more to decode or while the decoder did output something on EOF
wm4's avatar
wm4 committed
2600
    while (ist->decoding_needed) {
2601
        int64_t duration_dts = 0;
2602
        int64_t duration_pts = 0;
wm4's avatar
wm4 committed
2603
        int got_output = 0;
2604
        int decode_failed = 0;
2605

2606 2607
        ist->pts = ist->next_pts;
        ist->dts = ist->next_dts;
2608

2609
        switch (ist->dec_ctx->codec_type) {
2610
        case AVMEDIA_TYPE_AUDIO:
2611 2612
            ret = decode_audio    (ist, repeating ? NULL : &avpkt, &got_output,
                                   &decode_failed);
2613 2614
            break;
        case AVMEDIA_TYPE_VIDEO:
2615
            ret = decode_video    (ist, repeating ? NULL : &avpkt, &got_output, &duration_pts, !pkt,
2616
                                   &decode_failed);
wm4's avatar
wm4 committed
2617 2618
            if (!repeating || !pkt || got_output) {
                if (pkt && pkt->duration) {
2619
                    duration_dts = av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
wm4's avatar
wm4 committed
2620 2621
                } else if(ist->dec_ctx->framerate.num != 0 && ist->dec_ctx->framerate.den != 0) {
                    int ticks= av_stream_get_parser(ist->st) ? av_stream_get_parser(ist->st)->repeat_pict+1 : ist->dec_ctx->ticks_per_frame;
2622
                    duration_dts = ((int64_t)AV_TIME_BASE *
wm4's avatar
wm4 committed
2623 2624 2625
                                    ist->dec_ctx->framerate.den * ticks) /
                                    ist->dec_ctx->framerate.num / ist->dec_ctx->ticks_per_frame;
                }
2626

2627 2628
                if(ist->dts != AV_NOPTS_VALUE && duration_dts) {
                    ist->next_dts += duration_dts;
wm4's avatar
wm4 committed
2629 2630 2631
                }else
                    ist->next_dts = AV_NOPTS_VALUE;
            }
2632

2633 2634 2635 2636 2637 2638 2639
            if (got_output) {
                if (duration_pts > 0) {
                    ist->next_pts += av_rescale_q(duration_pts, ist->st->time_base, AV_TIME_BASE_Q);
                } else {
                    ist->next_pts += duration_dts;
                }
            }
2640 2641
            break;
        case AVMEDIA_TYPE_SUBTITLE:
wm4's avatar
wm4 committed
2642 2643
            if (repeating)
                break;
2644
            ret = transcode_subtitles(ist, &avpkt, &got_output, &decode_failed);
wm4's avatar
wm4 committed
2645 2646
            if (!pkt && ret >= 0)
                ret = AVERROR_EOF;
2647
            break;
Anton Khirnov's avatar
Anton Khirnov committed
2648 2649
        default:
            return -1;
2650
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
2651

wm4's avatar
wm4 committed
2652 2653 2654 2655 2656
        if (ret == AVERROR_EOF) {
            eof_reached = 1;
            break;
        }

2657
        if (ret < 0) {
2658 2659 2660 2661 2662 2663 2664 2665
            if (decode_failed) {
                av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
                       ist->file_index, ist->st->index, av_err2str(ret));
            } else {
                av_log(NULL, AV_LOG_FATAL, "Error while processing the decoded "
                       "data for stream #%d:%d\n", ist->file_index, ist->st->index);
            }
            if (!decode_failed || exit_on_error)
2666 2667 2668
                exit_program(1);
            break;
        }
2669

2670 2671 2672
        if (got_output)
            ist->got_output = 1;

wm4's avatar
wm4 committed
2673 2674
        if (!got_output)
            break;
2675

wm4's avatar
wm4 committed
2676 2677 2678 2679 2680 2681 2682 2683 2684
        // During draining, we might get multiple output frames in this loop.
        // ffmpeg.c does not drain the filter chain on configuration changes,
        // which means if we send multiple frames at once to the filters, and
        // one of those frames changes configuration, the buffered frames will
        // be lost. This can upset certain FATE tests.
        // Decode only 1 frame per call on EOF to appease these FATE tests.
        // The ideal solution would be to rewrite decoding to use the new
        // decoding API in a better way.
        if (!pkt)
2685
            break;
wm4's avatar
wm4 committed
2686 2687

        repeating = 1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2688 2689
    }

2690
    /* after flushing, send an EOF on all the filter inputs attached to the stream */
2691
    /* except when looping we need to flush but not to send an EOF */
wm4's avatar
wm4 committed
2692
    if (!pkt && ist->decoding_needed && eof_reached && !no_eof) {
2693 2694 2695 2696 2697 2698 2699
        int ret = send_filter_eof(ist);
        if (ret < 0) {
            av_log(NULL, AV_LOG_FATAL, "Error marking filters as finished\n");
            exit_program(1);
        }
    }

2700
    /* handle stream copy */
2701
    if (!ist->decoding_needed && pkt) {
2702
        ist->dts = ist->next_dts;
2703
        switch (ist->dec_ctx->codec_type) {
2704
        case AVMEDIA_TYPE_AUDIO:
2705
            av_assert1(pkt->duration >= 0);
2706 2707 2708 2709 2710 2711
            if (ist->dec_ctx->sample_rate) {
                ist->next_dts += ((int64_t)AV_TIME_BASE * ist->dec_ctx->frame_size) /
                                  ist->dec_ctx->sample_rate;
            } else {
                ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
            }
2712 2713
            break;
        case AVMEDIA_TYPE_VIDEO:
2714
            if (ist->framerate.num) {
2715 2716 2717 2718
                // TODO: Remove work-around for c99-to-c89 issue 7
                AVRational time_base_q = AV_TIME_BASE_Q;
                int64_t next_dts = av_rescale_q(ist->next_dts, time_base_q, av_inv_q(ist->framerate));
                ist->next_dts = av_rescale_q(next_dts + 1, av_inv_q(ist->framerate), time_base_q);
2719
            } else if (pkt->duration) {
2720
                ist->next_dts += av_rescale_q(pkt->duration, ist->st->time_base, AV_TIME_BASE_Q);
2721
            } else if(ist->dec_ctx->framerate.num != 0) {
2722
                int ticks= av_stream_get_parser(ist->st) ? av_stream_get_parser(ist->st)->repeat_pict + 1 : ist->dec_ctx->ticks_per_frame;
2723
                ist->next_dts += ((int64_t)AV_TIME_BASE *
2724 2725
                                  ist->dec_ctx->framerate.den * ticks) /
                                  ist->dec_ctx->framerate.num / ist->dec_ctx->ticks_per_frame;
Fabrice Bellard's avatar
Fabrice Bellard committed
2726
            }
2727
            break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2728
        }
2729 2730
        ist->pts = ist->dts;
        ist->next_pts = ist->next_dts;
Fabrice Bellard's avatar
Fabrice Bellard committed
2731
    }
James Almer's avatar
James Almer committed
2732
    for (i = 0; i < nb_output_streams; i++) {
2733
        OutputStream *ost = output_streams[i];
2734

2735 2736
        if (!check_output_constraints(ist, ost) || ost->encoding_needed)
            continue;
2737

2738 2739
        do_streamcopy(ist, ost, pkt);
    }
2740

wm4's avatar
wm4 committed
2741
    return !eof_reached;
2742 2743
}

2744
static void print_sdp(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
2745
{
2746
    char sdp[16384];
2747
    int i;
2748 2749
    int j;
    AVIOContext *sdp_pb;
2750 2751 2752 2753 2754 2755
    AVFormatContext **avc;

    for (i = 0; i < nb_output_files; i++) {
        if (!output_files[i]->header_written)
            return;
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
2756

2757
    avc = av_malloc_array(nb_output_files, sizeof(*avc));
2758
    if (!avc)
2759
        exit_program(1);
2760 2761 2762 2763 2764 2765 2766
    for (i = 0, j = 0; i < nb_output_files; i++) {
        if (!strcmp(output_files[i]->ctx->oformat->name, "rtp")) {
            avc[j] = output_files[i]->ctx;
            j++;
        }
    }

2767 2768 2769
    if (!j)
        goto fail;

2770 2771 2772 2773 2774 2775 2776 2777 2778
    av_sdp_create(avc, j, sdp, sizeof(sdp));

    if (!sdp_filename) {
        printf("SDP:\n%s\n", sdp);
        fflush(stdout);
    } else {
        if (avio_open2(&sdp_pb, sdp_filename, AVIO_FLAG_WRITE, &int_cb, NULL) < 0) {
            av_log(NULL, AV_LOG_ERROR, "Failed to open sdp file '%s'\n", sdp_filename);
        } else {
2779
            avio_print(sdp_pb, sdp);
2780
            avio_closep(&sdp_pb);
2781
            av_freep(&sdp_filename);
2782 2783
        }
    }
2784

2785
fail:
2786
    av_freep(&avc);
2787 2788
}

2789 2790 2791 2792 2793 2794
static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
{
    InputStream *ist = s->opaque;
    const enum AVPixelFormat *p;
    int ret;

2795
    for (p = pix_fmts; *p != AV_PIX_FMT_NONE; p++) {
2796
        const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(*p);
2797 2798
        const AVCodecHWConfig  *config = NULL;
        int i;
2799 2800 2801 2802

        if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
            break;

2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
        if (ist->hwaccel_id == HWACCEL_GENERIC ||
            ist->hwaccel_id == HWACCEL_AUTO) {
            for (i = 0;; i++) {
                config = avcodec_get_hw_config(s->codec, i);
                if (!config)
                    break;
                if (!(config->methods &
                      AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX))
                    continue;
                if (config->pix_fmt == *p)
                    break;
            }
        }
        if (config) {
            if (config->device_type != ist->hwaccel_device_type) {
                // Different hwaccel offered, ignore.
                continue;
            }
2821

2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853
            ret = hwaccel_decode_init(s);
            if (ret < 0) {
                if (ist->hwaccel_id == HWACCEL_GENERIC) {
                    av_log(NULL, AV_LOG_FATAL,
                           "%s hwaccel requested for input stream #%d:%d, "
                           "but cannot be initialized.\n",
                           av_hwdevice_get_type_name(config->device_type),
                           ist->file_index, ist->st->index);
                    return AV_PIX_FMT_NONE;
                }
                continue;
            }
        } else {
            const HWAccel *hwaccel = NULL;
            int i;
            for (i = 0; hwaccels[i].name; i++) {
                if (hwaccels[i].pix_fmt == *p) {
                    hwaccel = &hwaccels[i];
                    break;
                }
            }
            if (!hwaccel) {
                // No hwaccel supporting this pixfmt.
                continue;
            }
            if (hwaccel->id != ist->hwaccel_id) {
                // Does not match requested hwaccel.
                continue;
            }

            ret = hwaccel->init(s);
            if (ret < 0) {
2854 2855 2856 2857
                av_log(NULL, AV_LOG_FATAL,
                       "%s hwaccel requested for input stream #%d:%d, "
                       "but cannot be initialized.\n", hwaccel->name,
                       ist->file_index, ist->st->index);
2858
                return AV_PIX_FMT_NONE;
2859 2860
            }
        }
2861 2862 2863 2864 2865 2866 2867

        if (ist->hw_frames_ctx) {
            s->hw_frames_ctx = av_buffer_ref(ist->hw_frames_ctx);
            if (!s->hw_frames_ctx)
                return AV_PIX_FMT_NONE;
        }

2868
        ist->hwaccel_pix_fmt = *p;
2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884
        break;
    }

    return *p;
}

static int get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
{
    InputStream *ist = s->opaque;

    if (ist->hwaccel_get_buffer && frame->format == ist->hwaccel_pix_fmt)
        return ist->hwaccel_get_buffer(s, frame, flags);

    return avcodec_default_get_buffer2(s, frame, flags);
}

2885
static int init_input_stream(int ist_index, char *error, int error_len)
2886
{
2887
    int ret;
2888
    InputStream *ist = input_streams[ist_index];
2889

2890 2891 2892
    if (ist->decoding_needed) {
        AVCodec *codec = ist->dec;
        if (!codec) {
2893
            snprintf(error, error_len, "Decoder (codec %s) not found for input stream #%d:%d",
2894
                    avcodec_get_name(ist->dec_ctx->codec_id), ist->file_index, ist->st->index);
2895
            return AVERROR(EINVAL);
2896 2897
        }

2898 2899 2900 2901
        ist->dec_ctx->opaque                = ist;
        ist->dec_ctx->get_format            = get_format;
        ist->dec_ctx->get_buffer2           = get_buffer;
        ist->dec_ctx->thread_safe_callbacks = 1;
2902

2903
        av_opt_set_int(ist->dec_ctx, "refcounted_frames", 1, 0);
2904 2905
        if (ist->dec_ctx->codec_id == AV_CODEC_ID_DVB_SUBTITLE &&
           (ist->decoding_needed & DECODING_FOR_OST)) {
2906
            av_dict_set(&ist->decoder_opts, "compute_edt", "1", AV_DICT_DONT_OVERWRITE);
2907 2908 2909
            if (ist->decoding_needed & DECODING_FOR_FILTER)
                av_log(NULL, AV_LOG_WARNING, "Warning using DVB subtitles for filtering and output at the same time is not fully supported, also see -compute_edt [0|1]\n");
        }
2910

2911 2912
        av_dict_set(&ist->decoder_opts, "sub_text_format", "ass", AV_DICT_DONT_OVERWRITE);

2913 2914
        /* Useful for subtitles retiming by lavf (FIXME), skipping samples in
         * audio, and video decoders such as cuvid or mediacodec */
2915
        ist->dec_ctx->pkt_timebase = ist->st->time_base;
2916

2917 2918
        if (!av_dict_get(ist->decoder_opts, "threads", NULL, 0))
            av_dict_set(&ist->decoder_opts, "threads", "auto", 0);
2919 2920 2921
        /* Attached pics are sparse, therefore we would not want to delay their decoding till EOF. */
        if (ist->st->disposition & AV_DISPOSITION_ATTACHED_PIC)
            av_dict_set(&ist->decoder_opts, "threads", "1", 0);
2922 2923 2924 2925 2926 2927 2928 2929 2930

        ret = hw_device_setup_for_decode(ist);
        if (ret < 0) {
            snprintf(error, error_len, "Device setup failed for "
                     "decoder on input stream #%d:%d : %s",
                     ist->file_index, ist->st->index, av_err2str(ret));
            return ret;
        }

2931
        if ((ret = avcodec_open2(ist->dec_ctx, codec, &ist->decoder_opts)) < 0) {
2932 2933
            if (ret == AVERROR_EXPERIMENTAL)
                abort_codec_experimental(codec, 0);
2934 2935 2936 2937

            snprintf(error, error_len,
                     "Error while opening decoder for input stream "
                     "#%d:%d : %s",
2938
                     ist->file_index, ist->st->index, av_err2str(ret));
2939
            return ret;
2940
        }
2941
        assert_avoptions(ist->decoder_opts);
2942
    }
2943

2944
    ist->next_pts = AV_NOPTS_VALUE;
2945
    ist->next_dts = AV_NOPTS_VALUE;
2946

2947
    return 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2948 2949
}

2950
static InputStream *get_input_stream(OutputStream *ost)
2951
{
2952 2953 2954
    if (ost->source_index >= 0)
        return input_streams[ost->source_index];
    return NULL;
2955 2956
}

2957 2958
static int compare_int64(const void *a, const void *b)
{
2959
    return FFDIFFSIGN(*(const int64_t *)a, *(const int64_t *)b);
2960 2961
}

2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
/* open the muxer when all the streams are initialized */
static int check_init_output_file(OutputFile *of, int file_index)
{
    int ret, i;

    for (i = 0; i < of->ctx->nb_streams; i++) {
        OutputStream *ost = output_streams[of->ost_index + i];
        if (!ost->initialized)
            return 0;
    }

    of->ctx->interrupt_callback = int_cb;

    ret = avformat_write_header(of->ctx, &of->opts);
    if (ret < 0) {
        av_log(NULL, AV_LOG_ERROR,
               "Could not write header for output file #%d "
2979
               "(incorrect codec parameters ?): %s\n",
2980 2981 2982 2983 2984 2985
               file_index, av_err2str(ret));
        return ret;
    }
    //assert_avoptions(of->opts);
    of->header_written = 1;

2986
    av_dump_format(of->ctx, file_index, of->ctx->url, 1);
2987 2988 2989 2990

    if (sdp_filename || want_sdp)
        print_sdp();

2991 2992 2993 2994
    /* flush the muxing queues */
    for (i = 0; i < of->ctx->nb_streams; i++) {
        OutputStream *ost = output_streams[of->ost_index + i];

2995 2996 2997 2998
        /* try to improve muxing time_base (only possible if nothing has been written yet) */
        if (!av_fifo_size(ost->muxing_queue))
            ost->mux_timebase = ost->st->time_base;

2999 3000 3001
        while (av_fifo_size(ost->muxing_queue)) {
            AVPacket pkt;
            av_fifo_generic_read(ost->muxing_queue, &pkt, sizeof(pkt), NULL);
3002
            write_packet(of, &pkt, ost, 1);
3003 3004 3005
        }
    }

3006 3007 3008
    return 0;
}

3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028
static int init_output_bsfs(OutputStream *ost)
{
    AVBSFContext *ctx;
    int i, ret;

    if (!ost->nb_bitstream_filters)
        return 0;

    for (i = 0; i < ost->nb_bitstream_filters; i++) {
        ctx = ost->bsf_ctx[i];

        ret = avcodec_parameters_copy(ctx->par_in,
                                      i ? ost->bsf_ctx[i - 1]->par_out : ost->st->codecpar);
        if (ret < 0)
            return ret;

        ctx->time_base_in = i ? ost->bsf_ctx[i - 1]->time_base_out : ost->st->time_base;

        ret = av_bsf_init(ctx);
        if (ret < 0) {
3029
            av_log(NULL, AV_LOG_ERROR, "Error initializing bitstream filter: %s\n",
3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044
                   ost->bsf_ctx[i]->filter->name);
            return ret;
        }
    }

    ctx = ost->bsf_ctx[ost->nb_bitstream_filters - 1];
    ret = avcodec_parameters_copy(ost->st->codecpar, ctx->par_out);
    if (ret < 0)
        return ret;

    ost->st->time_base = ctx->time_base_out;

    return 0;
}

James Almer's avatar
James Almer committed
3045 3046 3047 3048 3049 3050 3051 3052
static int init_output_stream_streamcopy(OutputStream *ost)
{
    OutputFile *of = output_files[ost->file_index];
    InputStream *ist = get_input_stream(ost);
    AVCodecParameters *par_dst = ost->st->codecpar;
    AVCodecParameters *par_src = ost->ref_par;
    AVRational sar;
    int i, ret;
3053
    uint32_t codec_tag = par_dst->codec_tag;
James Almer's avatar
James Almer committed
3054 3055 3056

    av_assert0(ist && !ost->filter);

3057 3058 3059
    ret = avcodec_parameters_to_context(ost->enc_ctx, ist->st->codecpar);
    if (ret >= 0)
        ret = av_opt_set_dict(ost->enc_ctx, &ost->encoder_opts);
James Almer's avatar
James Almer committed
3060 3061 3062 3063 3064
    if (ret < 0) {
        av_log(NULL, AV_LOG_FATAL,
               "Error setting up codec context options.\n");
        return ret;
    }
3065 3066 3067 3068 3069 3070 3071

    ret = avcodec_parameters_from_context(par_src, ost->enc_ctx);
    if (ret < 0) {
        av_log(NULL, AV_LOG_FATAL,
               "Error getting reference codec parameters.\n");
        return ret;
    }
James Almer's avatar
James Almer committed
3072

3073 3074
    if (!codec_tag) {
        unsigned int codec_tag_tmp;
James Almer's avatar
James Almer committed
3075
        if (!of->ctx->oformat->codec_tag ||
3076 3077 3078
            av_codec_get_id (of->ctx->oformat->codec_tag, par_src->codec_tag) == par_src->codec_id ||
            !av_codec_get_tag2(of->ctx->oformat->codec_tag, par_src->codec_id, &codec_tag_tmp))
            codec_tag = par_src->codec_tag;
James Almer's avatar
James Almer committed
3079 3080
    }

3081 3082 3083
    ret = avcodec_parameters_copy(par_dst, par_src);
    if (ret < 0)
        return ret;
James Almer's avatar
James Almer committed
3084

3085
    par_dst->codec_tag = codec_tag;
James Almer's avatar
James Almer committed
3086 3087 3088 3089 3090 3091 3092 3093 3094 3095

    if (!ost->frame_rate.num)
        ost->frame_rate = ist->framerate;
    ost->st->avg_frame_rate = ost->frame_rate;

    ret = avformat_transfer_internal_stream_timing_info(of->ctx->oformat, ost->st, ist->st, copy_tb);
    if (ret < 0)
        return ret;

    // copy timebase while removing common factors
3096 3097
    if (ost->st->time_base.num <= 0 || ost->st->time_base.den <= 0)
        ost->st->time_base = av_add_q(av_stream_get_codec_timebase(ost->st), (AVRational){0, 1});
James Almer's avatar
James Almer committed
3098

3099 3100 3101 3102
    // copy estimated duration as a hint to the muxer
    if (ost->st->duration <= 0 && ist->st->duration > 0)
        ost->st->duration = av_rescale_q(ist->st->duration, ist->st->time_base, ost->st->time_base);

3103 3104 3105
    // copy disposition
    ost->st->disposition = ist->st->disposition;

James Almer's avatar
James Almer committed
3106 3107 3108
    if (ist->st->nb_side_data) {
        for (i = 0; i < ist->st->nb_side_data; i++) {
            const AVPacketSideData *sd_src = &ist->st->side_data[i];
3109
            uint8_t *dst_data;
James Almer's avatar
James Almer committed
3110

3111 3112
            dst_data = av_stream_new_side_data(ost->st, sd_src->type, sd_src->size);
            if (!dst_data)
James Almer's avatar
James Almer committed
3113
                return AVERROR(ENOMEM);
3114
            memcpy(dst_data, sd_src->data, sd_src->size);
James Almer's avatar
James Almer committed
3115 3116 3117
        }
    }

3118 3119 3120 3121 3122 3123 3124
    if (ost->rotate_overridden) {
        uint8_t *sd = av_stream_new_side_data(ost->st, AV_PKT_DATA_DISPLAYMATRIX,
                                              sizeof(int32_t) * 9);
        if (sd)
            av_display_rotation_set((int32_t *)sd, -ost->rotate_override_value);
    }

James Almer's avatar
James Almer committed
3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153
    switch (par_dst->codec_type) {
    case AVMEDIA_TYPE_AUDIO:
        if (audio_volume != 256) {
            av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
            exit_program(1);
        }
        if((par_dst->block_align == 1 || par_dst->block_align == 1152 || par_dst->block_align == 576) && par_dst->codec_id == AV_CODEC_ID_MP3)
            par_dst->block_align= 0;
        if(par_dst->codec_id == AV_CODEC_ID_AC3)
            par_dst->block_align= 0;
        break;
    case AVMEDIA_TYPE_VIDEO:
        if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
            sar =
                av_mul_q(ost->frame_aspect_ratio,
                         (AVRational){ par_dst->height, par_dst->width });
            av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
                   "with stream copy may produce invalid files\n");
            }
        else if (ist->st->sample_aspect_ratio.num)
            sar = ist->st->sample_aspect_ratio;
        else
            sar = par_src->sample_aspect_ratio;
        ost->st->sample_aspect_ratio = par_dst->sample_aspect_ratio = sar;
        ost->st->avg_frame_rate = ist->st->avg_frame_rate;
        ost->st->r_frame_rate = ist->st->r_frame_rate;
        break;
    }

3154 3155
    ost->mux_timebase = ist->st->time_base;

James Almer's avatar
James Almer committed
3156 3157 3158
    return 0;
}

3159 3160 3161 3162 3163 3164 3165
static void set_encoder_id(OutputFile *of, OutputStream *ost)
{
    AVDictionaryEntry *e;

    uint8_t *encoder_string;
    int encoder_string_len;
    int format_flags = 0;
3166
    int codec_flags = ost->enc_ctx->flags;
3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262

    if (av_dict_get(ost->st->metadata, "encoder",  NULL, 0))
        return;

    e = av_dict_get(of->opts, "fflags", NULL, 0);
    if (e) {
        const AVOption *o = av_opt_find(of->ctx, "fflags", NULL, 0, 0);
        if (!o)
            return;
        av_opt_eval_flags(of->ctx, o, e->value, &format_flags);
    }
    e = av_dict_get(ost->encoder_opts, "flags", NULL, 0);
    if (e) {
        const AVOption *o = av_opt_find(ost->enc_ctx, "flags", NULL, 0, 0);
        if (!o)
            return;
        av_opt_eval_flags(ost->enc_ctx, o, e->value, &codec_flags);
    }

    encoder_string_len = sizeof(LIBAVCODEC_IDENT) + strlen(ost->enc->name) + 2;
    encoder_string     = av_mallocz(encoder_string_len);
    if (!encoder_string)
        exit_program(1);

    if (!(format_flags & AVFMT_FLAG_BITEXACT) && !(codec_flags & AV_CODEC_FLAG_BITEXACT))
        av_strlcpy(encoder_string, LIBAVCODEC_IDENT " ", encoder_string_len);
    else
        av_strlcpy(encoder_string, "Lavc ", encoder_string_len);
    av_strlcat(encoder_string, ost->enc->name, encoder_string_len);
    av_dict_set(&ost->st->metadata, "encoder",  encoder_string,
                AV_DICT_DONT_STRDUP_VAL | AV_DICT_DONT_OVERWRITE);
}

static void parse_forced_key_frames(char *kf, OutputStream *ost,
                                    AVCodecContext *avctx)
{
    char *p;
    int n = 1, i, size, index = 0;
    int64_t t, *pts;

    for (p = kf; *p; p++)
        if (*p == ',')
            n++;
    size = n;
    pts = av_malloc_array(size, sizeof(*pts));
    if (!pts) {
        av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
        exit_program(1);
    }

    p = kf;
    for (i = 0; i < n; i++) {
        char *next = strchr(p, ',');

        if (next)
            *next++ = 0;

        if (!memcmp(p, "chapters", 8)) {

            AVFormatContext *avf = output_files[ost->file_index]->ctx;
            int j;

            if (avf->nb_chapters > INT_MAX - size ||
                !(pts = av_realloc_f(pts, size += avf->nb_chapters - 1,
                                     sizeof(*pts)))) {
                av_log(NULL, AV_LOG_FATAL,
                       "Could not allocate forced key frames array.\n");
                exit_program(1);
            }
            t = p[8] ? parse_time_or_die("force_key_frames", p + 8, 1) : 0;
            t = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);

            for (j = 0; j < avf->nb_chapters; j++) {
                AVChapter *c = avf->chapters[j];
                av_assert1(index < size);
                pts[index++] = av_rescale_q(c->start, c->time_base,
                                            avctx->time_base) + t;
            }

        } else {

            t = parse_time_or_die("force_key_frames", p, 1);
            av_assert1(index < size);
            pts[index++] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base);

        }

        p = next;
    }

    av_assert0(index == size);
    qsort(pts, size, sizeof(*pts), compare_int64);
    ost->forced_kf_count = size;
    ost->forced_kf_pts   = pts;
}

3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286
static void init_encoder_time_base(OutputStream *ost, AVRational default_time_base)
{
    InputStream *ist = get_input_stream(ost);
    AVCodecContext *enc_ctx = ost->enc_ctx;
    AVFormatContext *oc;

    if (ost->enc_timebase.num > 0) {
        enc_ctx->time_base = ost->enc_timebase;
        return;
    }

    if (ost->enc_timebase.num < 0) {
        if (ist) {
            enc_ctx->time_base = ist->st->time_base;
            return;
        }

        oc = output_files[ost->file_index]->ctx;
        av_log(oc, AV_LOG_WARNING, "Input stream data not available, using default time base\n");
    }

    enc_ctx->time_base = default_time_base;
}

3287 3288 3289 3290 3291 3292 3293 3294 3295 3296
static int init_output_stream_encode(OutputStream *ost)
{
    InputStream *ist = get_input_stream(ost);
    AVCodecContext *enc_ctx = ost->enc_ctx;
    AVCodecContext *dec_ctx = NULL;
    AVFormatContext *oc = output_files[ost->file_index]->ctx;
    int j, ret;

    set_encoder_id(output_files[ost->file_index], ost);

3297 3298 3299 3300 3301
    // Muxers use AV_PKT_DATA_DISPLAYMATRIX to signal rotation. On the other
    // hand, the legacy API makes demuxers set "rotate" metadata entries,
    // which have to be filtered out to prevent leaking them to output files.
    av_dict_set(&ost->st->metadata, "rotate", NULL, 0);

3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335
    if (ist) {
        ost->st->disposition          = ist->st->disposition;

        dec_ctx = ist->dec_ctx;

        enc_ctx->chroma_sample_location = dec_ctx->chroma_sample_location;
    } else {
        for (j = 0; j < oc->nb_streams; j++) {
            AVStream *st = oc->streams[j];
            if (st != ost->st && st->codecpar->codec_type == ost->st->codecpar->codec_type)
                break;
        }
        if (j == oc->nb_streams)
            if (ost->st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO ||
                ost->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
                ost->st->disposition = AV_DISPOSITION_DEFAULT;
    }

    if (enc_ctx->codec_type == AVMEDIA_TYPE_VIDEO) {
        if (!ost->frame_rate.num)
            ost->frame_rate = av_buffersink_get_frame_rate(ost->filter->filter);
        if (ist && !ost->frame_rate.num)
            ost->frame_rate = ist->framerate;
        if (ist && !ost->frame_rate.num)
            ost->frame_rate = ist->st->r_frame_rate;
        if (ist && !ost->frame_rate.num) {
            ost->frame_rate = (AVRational){25, 1};
            av_log(NULL, AV_LOG_WARNING,
                   "No information "
                   "about the input framerate is available. Falling "
                   "back to a default value of 25fps for output stream #%d:%d. Use the -r option "
                   "if you want a different framerate.\n",
                   ost->file_index, ost->index);
        }
3336

3337
        if (ost->enc->supported_framerates && !ost->force_fps) {
3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349
            int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
            ost->frame_rate = ost->enc->supported_framerates[idx];
        }
        // reduce frame rate for mpeg4 to be within the spec limits
        if (enc_ctx->codec_id == AV_CODEC_ID_MPEG4) {
            av_reduce(&ost->frame_rate.num, &ost->frame_rate.den,
                      ost->frame_rate.num, ost->frame_rate.den, 65535);
        }
    }

    switch (enc_ctx->codec_type) {
    case AVMEDIA_TYPE_AUDIO:
3350
        enc_ctx->sample_fmt     = av_buffersink_get_format(ost->filter->filter);
3351 3352 3353
        if (dec_ctx)
            enc_ctx->bits_per_raw_sample = FFMIN(dec_ctx->bits_per_raw_sample,
                                                 av_get_bytes_per_sample(enc_ctx->sample_fmt) << 3);
3354 3355 3356
        enc_ctx->sample_rate    = av_buffersink_get_sample_rate(ost->filter->filter);
        enc_ctx->channel_layout = av_buffersink_get_channel_layout(ost->filter->filter);
        enc_ctx->channels       = av_buffersink_get_channels(ost->filter->filter);
3357 3358

        init_encoder_time_base(ost, av_make_q(1, enc_ctx->sample_rate));
3359
        break;
3360

3361
    case AVMEDIA_TYPE_VIDEO:
3362 3363
        init_encoder_time_base(ost, av_inv_q(ost->frame_rate));

3364
        if (!(enc_ctx->time_base.num && enc_ctx->time_base.den))
3365
            enc_ctx->time_base = av_buffersink_get_time_base(ost->filter->filter);
3366 3367 3368 3369 3370 3371
        if (   av_q2d(enc_ctx->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH
           && (video_sync_method == VSYNC_CFR || video_sync_method == VSYNC_VSCFR || (video_sync_method == VSYNC_AUTO && !(oc->oformat->flags & AVFMT_VARIABLE_FPS)))){
            av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not efficiently supporting it.\n"
                                       "Please consider specifying a lower framerate, a different muxer or -vsync 2\n");
        }

3372 3373
        enc_ctx->width  = av_buffersink_get_w(ost->filter->filter);
        enc_ctx->height = av_buffersink_get_h(ost->filter->filter);
3374 3375 3376
        enc_ctx->sample_aspect_ratio = ost->st->sample_aspect_ratio =
            ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option
            av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) :
3377
            av_buffersink_get_sample_aspect_ratio(ost->filter->filter);
3378

3379
        enc_ctx->pix_fmt = av_buffersink_get_format(ost->filter->filter);
3380 3381 3382 3383
        if (dec_ctx)
            enc_ctx->bits_per_raw_sample = FFMIN(dec_ctx->bits_per_raw_sample,
                                                 av_pix_fmt_desc_get(enc_ctx->pix_fmt)->comp[0].depth);

3384 3385
        enc_ctx->framerate = ost->frame_rate;

3386 3387 3388 3389 3390 3391 3392 3393 3394
        ost->st->avg_frame_rate = ost->frame_rate;

        if (!dec_ctx ||
            enc_ctx->width   != dec_ctx->width  ||
            enc_ctx->height  != dec_ctx->height ||
            enc_ctx->pix_fmt != dec_ctx->pix_fmt) {
            enc_ctx->bits_per_raw_sample = frame_bits_per_raw_sample;
        }

3395 3396 3397 3398 3399 3400
        if (ost->top_field_first == 0) {
            enc_ctx->field_order = AV_FIELD_BB;
        } else if (ost->top_field_first == 1) {
            enc_ctx->field_order = AV_FIELD_TT;
        }

3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414
        if (ost->forced_keyframes) {
            if (!strncmp(ost->forced_keyframes, "expr:", 5)) {
                ret = av_expr_parse(&ost->forced_keyframes_pexpr, ost->forced_keyframes+5,
                                    forced_keyframes_const_names, NULL, NULL, NULL, NULL, 0, NULL);
                if (ret < 0) {
                    av_log(NULL, AV_LOG_ERROR,
                           "Invalid force_key_frames expression '%s'\n", ost->forced_keyframes+5);
                    return ret;
                }
                ost->forced_keyframes_expr_const_values[FKF_N] = 0;
                ost->forced_keyframes_expr_const_values[FKF_N_FORCED] = 0;
                ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_N] = NAN;
                ost->forced_keyframes_expr_const_values[FKF_PREV_FORCED_T] = NAN;

3415 3416
                // Don't parse the 'forced_keyframes' in case of 'keep-source-keyframes',
                // parse it only for static kf timings
3417 3418 3419 3420 3421 3422
            } else if(strncmp(ost->forced_keyframes, "source", 6)) {
                parse_forced_key_frames(ost->forced_keyframes, ost, ost->enc_ctx);
            }
        }
        break;
    case AVMEDIA_TYPE_SUBTITLE:
3423
        enc_ctx->time_base = AV_TIME_BASE_Q;
3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
        if (!enc_ctx->width) {
            enc_ctx->width     = input_streams[ost->source_index]->st->codecpar->width;
            enc_ctx->height    = input_streams[ost->source_index]->st->codecpar->height;
        }
        break;
    case AVMEDIA_TYPE_DATA:
        break;
    default:
        abort();
        break;
    }

3436 3437
    ost->mux_timebase = enc_ctx->time_base;

3438 3439 3440
    return 0;
}

3441 3442 3443 3444 3445 3446 3447 3448 3449
static int init_output_stream(OutputStream *ost, char *error, int error_len)
{
    int ret = 0;

    if (ost->encoding_needed) {
        AVCodec      *codec = ost->enc;
        AVCodecContext *dec = NULL;
        InputStream *ist;

3450 3451 3452 3453
        ret = init_output_stream_encode(ost);
        if (ret < 0)
            return ret;

3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465
        if ((ist = get_input_stream(ost)))
            dec = ist->dec_ctx;
        if (dec && dec->subtitle_header) {
            /* ASS code assumes this buffer is null terminated so add extra byte. */
            ost->enc_ctx->subtitle_header = av_mallocz(dec->subtitle_header_size + 1);
            if (!ost->enc_ctx->subtitle_header)
                return AVERROR(ENOMEM);
            memcpy(ost->enc_ctx->subtitle_header, dec->subtitle_header, dec->subtitle_header_size);
            ost->enc_ctx->subtitle_header_size = dec->subtitle_header_size;
        }
        if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
            av_dict_set(&ost->encoder_opts, "threads", "auto", 0);
3466 3467 3468 3469 3470
        if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
            !codec->defaults &&
            !av_dict_get(ost->encoder_opts, "b", NULL, 0) &&
            !av_dict_get(ost->encoder_opts, "ab", NULL, 0))
            av_dict_set(&ost->encoder_opts, "b", "128000", 0);
3471

3472 3473 3474
        if (ost->filter && av_buffersink_get_hw_frames_ctx(ost->filter->filter) &&
            ((AVHWFramesContext*)av_buffersink_get_hw_frames_ctx(ost->filter->filter)->data)->format ==
            av_buffersink_get_format(ost->filter->filter)) {
3475
            ost->enc_ctx->hw_frames_ctx = av_buffer_ref(av_buffersink_get_hw_frames_ctx(ost->filter->filter));
3476 3477
            if (!ost->enc_ctx->hw_frames_ctx)
                return AVERROR(ENOMEM);
3478 3479 3480 3481 3482 3483 3484 3485
        } else {
            ret = hw_device_setup_for_encode(ost);
            if (ret < 0) {
                snprintf(error, error_len, "Device setup failed for "
                         "encoder on output stream #%d:%d : %s",
                     ost->file_index, ost->index, av_err2str(ret));
                return ret;
            }
3486
        }
3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503
        if (ist && ist->dec->type == AVMEDIA_TYPE_SUBTITLE && ost->enc->type == AVMEDIA_TYPE_SUBTITLE) {
            int input_props = 0, output_props = 0;
            AVCodecDescriptor const *input_descriptor =
                avcodec_descriptor_get(dec->codec_id);
            AVCodecDescriptor const *output_descriptor =
                avcodec_descriptor_get(ost->enc_ctx->codec_id);
            if (input_descriptor)
                input_props = input_descriptor->props & (AV_CODEC_PROP_TEXT_SUB | AV_CODEC_PROP_BITMAP_SUB);
            if (output_descriptor)
                output_props = output_descriptor->props & (AV_CODEC_PROP_TEXT_SUB | AV_CODEC_PROP_BITMAP_SUB);
            if (input_props && output_props && input_props != output_props) {
                snprintf(error, error_len,
                         "Subtitle encoding currently only possible from text to text "
                         "or bitmap to bitmap");
                return AVERROR_INVALIDDATA;
            }
        }
3504

3505 3506 3507 3508 3509 3510 3511 3512 3513 3514
        if ((ret = avcodec_open2(ost->enc_ctx, codec, &ost->encoder_opts)) < 0) {
            if (ret == AVERROR_EXPERIMENTAL)
                abort_codec_experimental(codec, 1);
            snprintf(error, error_len,
                     "Error while opening encoder for output stream #%d:%d - "
                     "maybe incorrect parameters such as bit_rate, rate, width or height",
                    ost->file_index, ost->index);
            return ret;
        }
        if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
3515
            !(ost->enc->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE))
3516 3517 3518
            av_buffersink_set_frame_size(ost->filter->filter,
                                            ost->enc_ctx->frame_size);
        assert_avoptions(ost->encoder_opts);
3519 3520
        if (ost->enc_ctx->bit_rate && ost->enc_ctx->bit_rate < 1000 &&
            ost->enc_ctx->codec_id != AV_CODEC_ID_CODEC2 /* don't complain about 700 bit/s modes */)
3521 3522 3523
            av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
                                         " It takes bits/s as argument, not kbits/s\n");

3524
        ret = avcodec_parameters_from_context(ost->st->codecpar, ost->enc_ctx);
3525 3526 3527 3528 3529
        if (ret < 0) {
            av_log(NULL, AV_LOG_FATAL,
                   "Error initializing the output stream codec context.\n");
            exit_program(1);
        }
3530
        /*
3531
         * FIXME: ost->st->codec should't be needed here anymore.
3532 3533 3534 3535
         */
        ret = avcodec_copy_context(ost->st->codec, ost->enc_ctx);
        if (ret < 0)
            return ret;
3536

3537 3538 3539 3540 3541
        if (ost->enc_ctx->nb_coded_side_data) {
            int i;

            for (i = 0; i < ost->enc_ctx->nb_coded_side_data; i++) {
                const AVPacketSideData *sd_src = &ost->enc_ctx->coded_side_data[i];
3542
                uint8_t *dst_data;
3543

3544 3545
                dst_data = av_stream_new_side_data(ost->st, sd_src->type, sd_src->size);
                if (!dst_data)
3546
                    return AVERROR(ENOMEM);
3547
                memcpy(dst_data, sd_src->data, sd_src->size);
3548 3549 3550
            }
        }

3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561
        /*
         * Add global input side data. For now this is naive, and copies it
         * from the input stream's global side data. All side data should
         * really be funneled over AVFrame and libavfilter, then added back to
         * packet side data, and then potentially using the first packet for
         * global side data.
         */
        if (ist) {
            int i;
            for (i = 0; i < ist->st->nb_side_data; i++) {
                AVPacketSideData *sd = &ist->st->side_data[i];
3562
                if (sd->type != AV_PKT_DATA_CPB_PROPERTIES) {
3563 3564 3565 3566 3567 3568
                    uint8_t *dst = av_stream_new_side_data(ost->st, sd->type, sd->size);
                    if (!dst)
                        return AVERROR(ENOMEM);
                    memcpy(dst, sd->data, sd->size);
                    if (ist->autorotate && sd->type == AV_PKT_DATA_DISPLAYMATRIX)
                        av_display_rotation_set((uint32_t *)dst, 0);
3569
                }
3570 3571 3572
            }
        }

3573
        // copy timebase while removing common factors
3574 3575
        if (ost->st->time_base.num <= 0 || ost->st->time_base.den <= 0)
            ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0, 1});
3576 3577 3578 3579 3580

        // copy estimated duration as a hint to the muxer
        if (ost->st->duration <= 0 && ist && ist->st->duration > 0)
            ost->st->duration = av_rescale_q(ist->st->duration, ist->st->time_base, ost->st->time_base);

3581
        ost->st->codec->codec= ost->enc_ctx->codec;
Timothy Gu's avatar
Timothy Gu committed
3582
    } else if (ost->stream_copy) {
James Almer's avatar
James Almer committed
3583 3584 3585
        ret = init_output_stream_streamcopy(ost);
        if (ret < 0)
            return ret;
3586 3587
    }

3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601
    // parse user provided disposition, and update stream values
    if (ost->disposition) {
        static const AVOption opts[] = {
            { "disposition"         , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
            { "default"             , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DEFAULT           },    .unit = "flags" },
            { "dub"                 , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DUB               },    .unit = "flags" },
            { "original"            , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ORIGINAL          },    .unit = "flags" },
            { "comment"             , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_COMMENT           },    .unit = "flags" },
            { "lyrics"              , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_LYRICS            },    .unit = "flags" },
            { "karaoke"             , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_KARAOKE           },    .unit = "flags" },
            { "forced"              , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_FORCED            },    .unit = "flags" },
            { "hearing_impaired"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_HEARING_IMPAIRED  },    .unit = "flags" },
            { "visual_impaired"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_VISUAL_IMPAIRED   },    .unit = "flags" },
            { "clean_effects"       , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CLEAN_EFFECTS     },    .unit = "flags" },
3602
            { "attached_pic"        , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ATTACHED_PIC      },    .unit = "flags" },
3603 3604
            { "captions"            , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CAPTIONS          },    .unit = "flags" },
            { "descriptions"        , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DESCRIPTIONS      },    .unit = "flags" },
3605
            { "dependent"           , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DEPENDENT         },    .unit = "flags" },
3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621
            { "metadata"            , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_METADATA          },    .unit = "flags" },
            { NULL },
        };
        static const AVClass class = {
            .class_name = "",
            .item_name  = av_default_item_name,
            .option     = opts,
            .version    = LIBAVUTIL_VERSION_INT,
        };
        const AVClass *pclass = &class;

        ret = av_opt_eval_flags(&pclass, &opts[0], ost->disposition, &ost->st->disposition);
        if (ret < 0)
            return ret;
    }

3622 3623 3624 3625 3626 3627 3628
    /* initialize bitstream filters for the output stream
     * needs to be done here, because the codec id for streamcopy is not
     * known until now */
    ret = init_output_bsfs(ost);
    if (ret < 0)
        return ret;

3629 3630 3631 3632 3633 3634
    ost->initialized = 1;

    ret = check_init_output_file(output_files[ost->file_index], ost->file_index);
    if (ret < 0)
        return ret;

3635 3636 3637
    return ret;
}

3638
static void report_new_stream(int input_index, AVPacket *pkt)
3639
{
3640 3641 3642 3643 3644 3645 3646
    InputFile *file = input_files[input_index];
    AVStream *st = file->ctx->streams[pkt->stream_index];

    if (pkt->stream_index < file->nb_streams_warn)
        return;
    av_log(file->ctx, AV_LOG_WARNING,
           "New %s stream %d:%d at pos:%"PRId64" and DTS:%ss\n",
3647
           av_get_media_type_string(st->codecpar->codec_type),
3648 3649 3650
           input_index, pkt->stream_index,
           pkt->pos, av_ts2timestr(pkt->dts, &st->time_base));
    file->nb_streams_warn = pkt->stream_index + 1;
3651 3652
}

3653
static int transcode_init(void)
3654
{
3655
    int ret = 0, i, j, k;
3656
    AVFormatContext *oc;
3657
    OutputStream *ost;
3658
    InputStream *ist;
3659
    char error[1024] = {0};
3660

3661 3662 3663 3664
    for (i = 0; i < nb_filtergraphs; i++) {
        FilterGraph *fg = filtergraphs[i];
        for (j = 0; j < fg->nb_outputs; j++) {
            OutputFilter *ofilter = fg->outputs[j];
3665
            if (!ofilter->ost || ofilter->ost->source_index >= 0)
3666 3667 3668 3669 3670 3671 3672 3673 3674 3675
                continue;
            if (fg->nb_inputs != 1)
                continue;
            for (k = nb_input_streams-1; k >= 0 ; k--)
                if (fg->inputs[0]->ist == input_streams[k])
                    break;
            ofilter->ost->source_index = k;
        }
    }

3676 3677
    /* init framerate emulation */
    for (i = 0; i < nb_input_files; i++) {
3678
        InputFile *ifile = input_files[i];
3679 3680
        if (ifile->rate_emu)
            for (j = 0; j < ifile->nb_streams; j++)
3681
                input_streams[j + ifile->ist_index]->start = av_gettime_relative();
3682
    }
3683

3684 3685
    /* init input streams */
    for (i = 0; i < nb_input_streams; i++)
3686 3687 3688
        if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
            for (i = 0; i < nb_output_streams; i++) {
                ost = output_streams[i];
3689
                avcodec_close(ost->enc_ctx);
3690
            }
3691
            goto dump_format;
3692
        }
3693

3694 3695
    /* open each encoder */
    for (i = 0; i < nb_output_streams; i++) {
3696 3697 3698 3699
        // skip streams fed from filtergraphs until we have a frame for them
        if (output_streams[i]->filter)
            continue;

3700 3701 3702 3703 3704
        ret = init_output_stream(output_streams[i], error, sizeof(error));
        if (ret < 0)
            goto dump_format;
    }

3705 3706
    /* discard unused programs */
    for (i = 0; i < nb_input_files; i++) {
3707
        InputFile *ifile = input_files[i];
3708 3709 3710
        for (j = 0; j < ifile->ctx->nb_programs; j++) {
            AVProgram *p = ifile->ctx->programs[j];
            int discard  = AVDISCARD_ALL;
3711

3712
            for (k = 0; k < p->nb_stream_indexes; k++)
3713
                if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
3714 3715 3716 3717
                    discard = AVDISCARD_DEFAULT;
                    break;
                }
            p->discard = discard;
3718
        }
3719 3720
    }

3721 3722 3723 3724 3725 3726 3727 3728 3729 3730
    /* write headers for files with no streams */
    for (i = 0; i < nb_output_files; i++) {
        oc = output_files[i]->ctx;
        if (oc->oformat->flags & AVFMT_NOSTREAMS && oc->nb_streams == 0) {
            ret = check_init_output_file(output_files[i], i);
            if (ret < 0)
                goto dump_format;
        }
    }

3731 3732
 dump_format:
    /* dump the stream mapping */
3733
    av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
3734 3735
    for (i = 0; i < nb_input_streams; i++) {
        ist = input_streams[i];
3736

3737
        for (j = 0; j < ist->nb_filters; j++) {
Timothy Gu's avatar
Timothy Gu committed
3738
            if (!filtergraph_is_simple(ist->filters[j]->graph)) {
3739 3740
                av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
                       ist->file_index, ist->st->index, ist->dec ? ist->dec->name : "?",
3741
                       ist->filters[j]->name);
3742 3743 3744 3745
                if (nb_filtergraphs > 1)
                    av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
                av_log(NULL, AV_LOG_INFO, "\n");
            }
3746 3747 3748
        }
    }

3749
    for (i = 0; i < nb_output_streams; i++) {
3750
        ost = output_streams[i];
3751

3752 3753 3754 3755 3756
        if (ost->attachment_filename) {
            /* an attached file */
            av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
                   ost->attachment_filename, ost->file_index, ost->index);
            continue;
3757
        }
3758

Timothy Gu's avatar
Timothy Gu committed
3759
        if (ost->filter && !filtergraph_is_simple(ost->filter->graph)) {
3760
            /* output from a complex graph */
3761
            av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
3762 3763
            if (nb_filtergraphs > 1)
                av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
3764

3765 3766
            av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
                   ost->index, ost->enc ? ost->enc->name : "?");
3767
            continue;
3768
        }
3769

3770
        av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
3771 3772
               input_streams[ost->source_index]->file_index,
               input_streams[ost->source_index]->st->index,
3773 3774
               ost->file_index,
               ost->index);
3775
        if (ost->sync_ist != input_streams[ost->source_index])
3776
            av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
3777 3778
                   ost->sync_ist->file_index,
                   ost->sync_ist->st->index);
3779
        if (ost->stream_copy)
3780
            av_log(NULL, AV_LOG_INFO, " (copy)");
3781 3782 3783 3784 3785 3786 3787
        else {
            const AVCodec *in_codec    = input_streams[ost->source_index]->dec;
            const AVCodec *out_codec   = ost->enc;
            const char *decoder_name   = "?";
            const char *in_codec_name  = "?";
            const char *encoder_name   = "?";
            const char *out_codec_name = "?";
3788
            const AVCodecDescriptor *desc;
3789 3790 3791

            if (in_codec) {
                decoder_name  = in_codec->name;
3792 3793 3794
                desc = avcodec_descriptor_get(in_codec->id);
                if (desc)
                    in_codec_name = desc->name;
3795 3796 3797 3798 3799 3800
                if (!strcmp(decoder_name, in_codec_name))
                    decoder_name = "native";
            }

            if (out_codec) {
                encoder_name   = out_codec->name;
3801 3802 3803
                desc = avcodec_descriptor_get(out_codec->id);
                if (desc)
                    out_codec_name = desc->name;
3804
                if (!strcmp(encoder_name, out_codec_name))
3805 3806 3807 3808 3809 3810 3811
                    encoder_name = "native";
            }

            av_log(NULL, AV_LOG_INFO, " (%s (%s) -> %s (%s))",
                   in_codec_name, decoder_name,
                   out_codec_name, encoder_name);
        }
3812
        av_log(NULL, AV_LOG_INFO, "\n");
3813 3814
    }

3815
    if (ret) {
3816
        av_log(NULL, AV_LOG_ERROR, "%s\n", error);
3817
        return ret;
3818 3819
    }

3820
    atomic_store(&transcode_init_done, 1);
3821

3822 3823
    return 0;
}
3824

3825
/* Return 1 if there remain streams where more output is wanted, 0 otherwise. */
3826 3827 3828
static int need_output(void)
{
    int i;
3829

3830 3831 3832 3833
    for (i = 0; i < nb_output_streams; i++) {
        OutputStream *ost    = output_streams[i];
        OutputFile *of       = output_files[ost->file_index];
        AVFormatContext *os  = output_files[ost->file_index]->ctx;
3834

3835
        if (ost->finished ||
3836 3837
            (os->pb && avio_tell(os->pb) >= of->limit_filesize))
            continue;
3838
        if (ost->frame_number >= ost->max_frames) {
3839 3840
            int j;
            for (j = 0; j < of->ctx->nb_streams; j++)
3841
                close_output_stream(output_streams[of->ost_index + j]);
3842 3843
            continue;
        }
3844

3845
        return 1;
3846
    }
3847

3848 3849
    return 0;
}
3850

3851
/**
3852
 * Select the output stream to process.
3853
 *
3854
 * @return  selected output stream, or NULL if none available
3855
 */
3856
static OutputStream *choose_output(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
3857
{
3858 3859 3860
    int i;
    int64_t opts_min = INT64_MAX;
    OutputStream *ost_min = NULL;
3861

3862 3863
    for (i = 0; i < nb_output_streams; i++) {
        OutputStream *ost = output_streams[i];
3864 3865
        int64_t opts = ost->st->cur_dts == AV_NOPTS_VALUE ? INT64_MIN :
                       av_rescale_q(ost->st->cur_dts, ost->st->time_base,
3866
                                    AV_TIME_BASE_Q);
3867
        if (ost->st->cur_dts == AV_NOPTS_VALUE)
3868 3869 3870
            av_log(NULL, AV_LOG_DEBUG,
                "cur_dts is invalid st:%d (%d) [init:%d i_done:%d finish:%d] (this is harmless if it occurs once at the start per stream)\n",
                ost->st->index, ost->st->id, ost->initialized, ost->inputs_done, ost->finished);
3871

3872 3873 3874
        if (!ost->initialized && !ost->inputs_done)
            return ost;

3875
        if (!ost->finished && opts < opts_min) {
3876
            opts_min = opts;
3877
            ost_min  = ost->unavailable ? NULL : ost;
3878
        }
3879
    }
3880
    return ost_min;
3881
}
3882

3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894
static void set_tty_echo(int on)
{
#if HAVE_TERMIOS_H
    struct termios tty;
    if (tcgetattr(0, &tty) == 0) {
        if (on) tty.c_lflag |= ECHO;
        else    tty.c_lflag &= ~ECHO;
        tcsetattr(0, TCSANOW, &tty);
    }
#endif
}

3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924
static int check_keyboard_interaction(int64_t cur_time)
{
    int i, ret, key;
    static int64_t last_time;
    if (received_nb_signals)
        return AVERROR_EXIT;
    /* read_key() returns 0 on EOF */
    if(cur_time - last_time >= 100000 && !run_as_daemon){
        key =  read_key();
        last_time = cur_time;
    }else
        key = -1;
    if (key == 'q')
        return AVERROR_EXIT;
    if (key == '+') av_log_set_level(av_log_get_level()+10);
    if (key == '-') av_log_set_level(av_log_get_level()-10);
    if (key == 's') qp_hist     ^= 1;
    if (key == 'h'){
        if (do_hex_dump){
            do_hex_dump = do_pkt_dump = 0;
        } else if(do_pkt_dump){
            do_hex_dump = 1;
        } else
            do_pkt_dump = 1;
        av_log_set_level(AV_LOG_DEBUG);
    }
    if (key == 'c' || key == 'C'){
        char buf[4096], target[64], command[256], arg[256] = {0};
        double time;
        int k, n = 0;
3925
        fprintf(stderr, "\nEnter command: <target>|all <time>|-1 <command>[ <argument>]\n");
3926
        i = 0;
3927
        set_tty_echo(1);
3928 3929 3930 3931
        while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
            if (k > 0)
                buf[i++] = k;
        buf[i] = 0;
3932 3933
        set_tty_echo(0);
        fprintf(stderr, "\n");
3934 3935 3936 3937 3938 3939 3940 3941 3942 3943
        if (k > 0 &&
            (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
            av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
                   target, time, command, arg);
            for (i = 0; i < nb_filtergraphs; i++) {
                FilterGraph *fg = filtergraphs[i];
                if (fg->graph) {
                    if (time < 0) {
                        ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
                                                          key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
3944
                        fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
3945
                    } else if (key == 'c') {
3946
                        fprintf(stderr, "Queuing commands only on filters supporting the specific command is unsupported\n");
3947
                        ret = AVERROR_PATCHWELCOME;
3948 3949
                    } else {
                        ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
3950
                        if (ret < 0)
3951
                            fprintf(stderr, "Queuing command failed with error %s\n", av_err2str(ret));
3952 3953
                    }
                }
3954
            }
3955 3956 3957 3958
        } else {
            av_log(NULL, AV_LOG_ERROR,
                   "Parse error, at least 3 arguments were expected, "
                   "only %d given in string '%s'\n", n, buf);
3959
        }
3960 3961 3962 3963 3964 3965
    }
    if (key == 'd' || key == 'D'){
        int debug=0;
        if(key == 'D') {
            debug = input_streams[0]->st->codec->debug<<1;
            if(!debug) debug = 1;
3966 3967 3968 3969 3970
            while(debug & (FF_DEBUG_DCT_COEFF
#if FF_API_DEBUG_MV
                                             |FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE
#endif
                                                                                  )) //unsupported, would just crash
3971
                debug += debug;
3972 3973 3974 3975
        }else{
            char buf[32];
            int k = 0;
            i = 0;
3976
            set_tty_echo(1);
3977 3978 3979 3980
            while ((k = read_key()) != '\n' && k != '\r' && i < sizeof(buf)-1)
                if (k > 0)
                    buf[i++] = k;
            buf[i] = 0;
3981 3982
            set_tty_echo(0);
            fprintf(stderr, "\n");
3983
            if (k <= 0 || sscanf(buf, "%d", &debug)!=1)
3984
                fprintf(stderr,"error parsing debug value\n");
3985
        }
3986 3987
        for(i=0;i<nb_input_streams;i++) {
            input_streams[i]->st->codec->debug = debug;
3988
        }
3989 3990
        for(i=0;i<nb_output_streams;i++) {
            OutputStream *ost = output_streams[i];
3991
            ost->enc_ctx->debug = debug;
3992 3993 3994
        }
        if(debug) av_log_set_level(AV_LOG_DEBUG);
        fprintf(stderr,"debug=%d\n", debug);
3995
    }
3996 3997 3998 3999 4000
    if (key == '?'){
        fprintf(stderr, "key    function\n"
                        "?      show this help\n"
                        "+      increase verbosity\n"
                        "-      decrease verbosity\n"
4001
                        "c      Send command to first matching filter supporting it\n"
4002
                        "C      Send/Queue command to all matching filters\n"
4003 4004 4005 4006 4007 4008 4009
                        "D      cycle through available debug modes\n"
                        "h      dump packets/hex press to cycle through the 3 states\n"
                        "q      quit\n"
                        "s      Show QP histogram\n"
        );
    }
    return 0;
4010 4011
}

4012
#if HAVE_THREADS
4013
static void *input_thread(void *arg)
4014
{
4015
    InputFile *f = arg;
4016
    unsigned flags = f->non_blocking ? AV_THREAD_MESSAGE_NONBLOCK : 0;
4017
    int ret = 0;
4018

4019
    while (1) {
4020 4021
        AVPacket pkt;
        ret = av_read_frame(f->ctx, &pkt);
4022

4023
        if (ret == AVERROR(EAGAIN)) {
4024
            av_usleep(10000);
4025
            continue;
4026 4027 4028
        }
        if (ret < 0) {
            av_thread_message_queue_set_err_recv(f->in_thread_queue, ret);
4029
            break;
4030
        }
4031 4032 4033 4034 4035 4036 4037 4038 4039
        ret = av_thread_message_queue_send(f->in_thread_queue, &pkt, flags);
        if (flags && ret == AVERROR(EAGAIN)) {
            flags = 0;
            ret = av_thread_message_queue_send(f->in_thread_queue, &pkt, flags);
            av_log(f->ctx, AV_LOG_WARNING,
                   "Thread message queue blocking; consider raising the "
                   "thread_queue_size option (current value: %d)\n",
                   f->thread_queue_size);
        }
4040 4041 4042 4043 4044
        if (ret < 0) {
            if (ret != AVERROR_EOF)
                av_log(f->ctx, AV_LOG_ERROR,
                       "Unable to send packet to main thread: %s\n",
                       av_err2str(ret));
4045
            av_packet_unref(&pkt);
4046 4047 4048
            av_thread_message_queue_set_err_recv(f->in_thread_queue, ret);
            break;
        }
4049 4050
    }

4051
    return NULL;
4052
}
4053

4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069
static void free_input_thread(int i)
{
    InputFile *f = input_files[i];
    AVPacket pkt;

    if (!f || !f->in_thread_queue)
        return;
    av_thread_message_queue_set_err_send(f->in_thread_queue, AVERROR_EOF);
    while (av_thread_message_queue_recv(f->in_thread_queue, &pkt, 0) >= 0)
        av_packet_unref(&pkt);

    pthread_join(f->thread, NULL);
    f->joined = 1;
    av_thread_message_queue_free(&f->in_thread_queue);
}

4070
static void free_input_threads(void)
4071
{
4072
    int i;
4073

4074 4075 4076
    for (i = 0; i < nb_input_files; i++)
        free_input_thread(i);
}
4077

4078 4079 4080 4081
static int init_input_thread(int i)
{
    int ret;
    InputFile *f = input_files[i];
4082

4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095
    if (nb_input_files == 1)
        return 0;

    if (f->ctx->pb ? !f->ctx->pb->seekable :
        strcmp(f->ctx->iformat->name, "lavfi"))
        f->non_blocking = 1;
    ret = av_thread_message_queue_alloc(&f->in_thread_queue,
                                        f->thread_queue_size, sizeof(AVPacket));
    if (ret < 0)
        return ret;

    if ((ret = pthread_create(&f->thread, NULL, input_thread, f))) {
        av_log(NULL, AV_LOG_ERROR, "pthread_create failed: %s. Try to increase `ulimit -v` or decrease `ulimit -s`.\n", strerror(ret));
4096
        av_thread_message_queue_free(&f->in_thread_queue);
4097
        return AVERROR(ret);
4098
    }
4099 4100

    return 0;
4101
}
4102

4103
static int init_input_threads(void)
4104
{
4105
    int i, ret;
4106

4107
    for (i = 0; i < nb_input_files; i++) {
4108
        ret = init_input_thread(i);
4109 4110
        if (ret < 0)
            return ret;
4111 4112 4113 4114
    }
    return 0;
}

4115
static int get_input_packet_mt(InputFile *f, AVPacket *pkt)
4116
{
4117 4118 4119
    return av_thread_message_queue_recv(f->in_thread_queue, pkt,
                                        f->non_blocking ?
                                        AV_THREAD_MESSAGE_NONBLOCK : 0);
4120 4121
}
#endif
4122

4123 4124
static int get_input_packet(InputFile *f, AVPacket *pkt)
{
4125 4126 4127 4128
    if (f->rate_emu) {
        int i;
        for (i = 0; i < f->nb_streams; i++) {
            InputStream *ist = input_streams[f->ist_index + i];
4129
            int64_t pts = av_rescale(ist->dts, 1000000, AV_TIME_BASE);
4130
            int64_t now = av_gettime_relative() - ist->start;
4131 4132 4133 4134 4135
            if (pts > now)
                return AVERROR(EAGAIN);
        }
    }

4136
#if HAVE_THREADS
4137 4138 4139 4140
    if (nb_input_files > 1)
        return get_input_packet_mt(f, pkt);
#endif
    return av_read_frame(f->ctx, pkt);
4141 4142
}

4143 4144 4145
static int got_eagain(void)
{
    int i;
4146 4147
    for (i = 0; i < nb_output_streams; i++)
        if (output_streams[i]->unavailable)
4148 4149 4150 4151 4152 4153 4154 4155 4156
            return 1;
    return 0;
}

static void reset_eagain(void)
{
    int i;
    for (i = 0; i < nb_input_files; i++)
        input_files[i]->eagain = 0;
4157 4158 4159 4160
    for (i = 0; i < nb_output_streams; i++)
        output_streams[i]->unavailable = 0;
}

4161 4162
// set duration to max(tmp, duration) in a proper time base and return duration's time_base
static AVRational duration_max(int64_t tmp, int64_t *duration, AVRational tmp_time_base,
4163
                               AVRational time_base)
4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187
{
    int ret;

    if (!*duration) {
        *duration = tmp;
        return tmp_time_base;
    }

    ret = av_compare_ts(*duration, time_base, tmp, tmp_time_base);
    if (ret < 0) {
        *duration = tmp;
        return tmp_time_base;
    }

    return time_base;
}

static int seek_to_start(InputFile *ifile, AVFormatContext *is)
{
    InputStream *ist;
    AVCodecContext *avctx;
    int i, ret, has_audio = 0;
    int64_t duration = 0;

4188
    ret = avformat_seek_file(is, -1, INT64_MIN, is->start_time, is->start_time, 0);
4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211
    if (ret < 0)
        return ret;

    for (i = 0; i < ifile->nb_streams; i++) {
        ist   = input_streams[ifile->ist_index + i];
        avctx = ist->dec_ctx;

        /* duration is the length of the last frame in a stream
         * when audio stream is present we don't care about
         * last video frame length because it's not defined exactly */
        if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && ist->nb_samples)
            has_audio = 1;
    }

    for (i = 0; i < ifile->nb_streams; i++) {
        ist   = input_streams[ifile->ist_index + i];
        avctx = ist->dec_ctx;

        if (has_audio) {
            if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && ist->nb_samples) {
                AVRational sample_rate = {1, avctx->sample_rate};

                duration = av_rescale_q(ist->nb_samples, sample_rate, ist->st->time_base);
4212
            } else {
4213
                continue;
4214
            }
4215 4216
        } else {
            if (ist->framerate.num) {
4217
                duration = av_rescale_q(1, av_inv_q(ist->framerate), ist->st->time_base);
4218
            } else if (ist->st->avg_frame_rate.num) {
4219
                duration = av_rescale_q(1, av_inv_q(ist->st->avg_frame_rate), ist->st->time_base);
4220 4221 4222
            } else {
                duration = 1;
            }
4223 4224 4225 4226 4227
        }
        if (!ifile->duration)
            ifile->time_base = ist->st->time_base;
        /* the total duration of the stream, max_pts - min_pts is
         * the duration of the stream without the last frame */
4228 4229
        if (ist->max_pts > ist->min_pts && ist->max_pts - (uint64_t)ist->min_pts < INT64_MAX - duration)
            duration += ist->max_pts - ist->min_pts;
4230 4231 4232 4233
        ifile->time_base = duration_max(duration, &ifile->duration, ist->st->time_base,
                                        ifile->time_base);
    }

4234 4235
    if (ifile->loop > 0)
        ifile->loop--;
4236 4237 4238 4239

    return ret;
}

4240 4241
/*
 * Return
4242 4243 4244 4245 4246
 * - 0 -- one packet was read and processed
 * - AVERROR(EAGAIN) -- no packets were available for selected file,
 *   this function should be called again
 * - AVERROR_EOF -- this function should not be called again
 */
4247
static int process_input(int file_index)
4248
{
4249
    InputFile *ifile = input_files[file_index];
4250 4251 4252
    AVFormatContext *is;
    InputStream *ist;
    AVPacket pkt;
4253
    int ret, thread_ret, i, j;
4254
    int64_t duration;
4255
    int64_t pkt_dts;
4256 4257 4258 4259 4260 4261 4262 4263

    is  = ifile->ctx;
    ret = get_input_packet(ifile, &pkt);

    if (ret == AVERROR(EAGAIN)) {
        ifile->eagain = 1;
        return ret;
    }
4264
    if (ret < 0 && ifile->loop) {
4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275
        AVCodecContext *avctx;
        for (i = 0; i < ifile->nb_streams; i++) {
            ist = input_streams[ifile->ist_index + i];
            avctx = ist->dec_ctx;
            if (ist->decoding_needed) {
                ret = process_input_packet(ist, NULL, 1);
                if (ret>0)
                    return 0;
                avcodec_flush_buffers(avctx);
            }
        }
4276 4277 4278
#if HAVE_THREADS
        free_input_thread(file_index);
#endif
James Almer's avatar
James Almer committed
4279
        ret = seek_to_start(ifile, is);
4280 4281 4282 4283 4284
#if HAVE_THREADS
        thread_ret = init_input_thread(file_index);
        if (thread_ret < 0)
            return thread_ret;
#endif
James Almer's avatar
James Almer committed
4285 4286 4287 4288
        if (ret < 0)
            av_log(NULL, AV_LOG_WARNING, "Seek to start failed.\n");
        else
            ret = get_input_packet(ifile, &pkt);
4289 4290 4291 4292
        if (ret == AVERROR(EAGAIN)) {
            ifile->eagain = 1;
            return ret;
        }
4293
    }
4294 4295
    if (ret < 0) {
        if (ret != AVERROR_EOF) {
4296
            print_error(is->url, ret);
4297
            if (exit_on_error)
4298
                exit_program(1);
4299 4300 4301 4302
        }

        for (i = 0; i < ifile->nb_streams; i++) {
            ist = input_streams[ifile->ist_index + i];
4303
            if (ist->decoding_needed) {
4304
                ret = process_input_packet(ist, NULL, 0);
4305 4306 4307
                if (ret>0)
                    return 0;
            }
4308

4309 4310 4311
            /* mark all outputs that don't go through lavfi as finished */
            for (j = 0; j < nb_output_streams; j++) {
                OutputStream *ost = output_streams[j];
4312

4313 4314
                if (ost->source_index == ifile->ist_index + i &&
                    (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
4315
                    finish_output_stream(ost);
4316 4317 4318
            }
        }

4319
        ifile->eof_reached = 1;
4320
        return AVERROR(EAGAIN);
4321 4322 4323 4324 4325
    }

    reset_eagain();

    if (do_pkt_dump) {
4326
        av_pkt_dump_log2(NULL, AV_LOG_INFO, &pkt, do_hex_dump,
4327 4328 4329 4330 4331 4332 4333 4334 4335 4336
                         is->streams[pkt.stream_index]);
    }
    /* the following test is needed in case new streams appear
       dynamically in stream : we ignore them */
    if (pkt.stream_index >= ifile->nb_streams) {
        report_new_stream(file_index, &pkt);
        goto discard_packet;
    }

    ist = input_streams[ifile->ist_index + pkt.stream_index];
4337 4338

    ist->data_size += pkt.size;
4339
    ist->nb_packets++;
4340

4341 4342 4343
    if (ist->discard)
        goto discard_packet;

4344 4345 4346 4347 4348
    if (pkt.flags & AV_PKT_FLAG_CORRUPT) {
        av_log(NULL, exit_on_error ? AV_LOG_FATAL : AV_LOG_WARNING,
               "%s: corrupt input packet in stream %d\n", is->url, pkt.stream_index);
        if (exit_on_error)
            exit_program(1);
4349 4350
    }

4351 4352
    if (debug_ts) {
        av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
4353
               "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",
4354
               ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->dec_ctx->codec_type),
4355 4356 4357 4358 4359 4360
               av_ts2str(ist->next_dts), av_ts2timestr(ist->next_dts, &AV_TIME_BASE_Q),
               av_ts2str(ist->next_pts), av_ts2timestr(ist->next_pts, &AV_TIME_BASE_Q),
               av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
               av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
               av_ts2str(input_files[ist->file_index]->ts_offset),
               av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
4361 4362
    }

4363
    if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){
4364
        int64_t stime, stime2;
4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383
        // Correcting starttime based on the enabled streams
        // FIXME this ideally should be done before the first use of starttime but we do not know which are the enabled streams at that point.
        //       so we instead do it here as part of discontinuity handling
        if (   ist->next_dts == AV_NOPTS_VALUE
            && ifile->ts_offset == -is->start_time
            && (is->iformat->flags & AVFMT_TS_DISCONT)) {
            int64_t new_start_time = INT64_MAX;
            for (i=0; i<is->nb_streams; i++) {
                AVStream *st = is->streams[i];
                if(st->discard == AVDISCARD_ALL || st->start_time == AV_NOPTS_VALUE)
                    continue;
                new_start_time = FFMIN(new_start_time, av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q));
            }
            if (new_start_time > is->start_time) {
                av_log(is, AV_LOG_VERBOSE, "Correcting start time by %"PRId64"\n", new_start_time - is->start_time);
                ifile->ts_offset = -new_start_time;
            }
        }

4384 4385
        stime = av_rescale_q(is->start_time, AV_TIME_BASE_Q, ist->st->time_base);
        stime2= stime + (1ULL<<ist->st->pts_wrap_bits);
4386
        ist->wrap_correction_done = 1;
4387 4388 4389

        if(stime2 > stime && pkt.dts != AV_NOPTS_VALUE && pkt.dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
            pkt.dts -= 1ULL<<ist->st->pts_wrap_bits;
4390 4391
            ist->wrap_correction_done = 0;
        }
4392 4393
        if(stime2 > stime && pkt.pts != AV_NOPTS_VALUE && pkt.pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) {
            pkt.pts -= 1ULL<<ist->st->pts_wrap_bits;
4394 4395 4396 4397
            ist->wrap_correction_done = 0;
        }
    }

4398
    /* add the stream-global side data to the first packet */
4399
    if (ist->nb_packets == 1) {
4400 4401 4402 4403
        for (i = 0; i < ist->st->nb_side_data; i++) {
            AVPacketSideData *src_sd = &ist->st->side_data[i];
            uint8_t *dst_data;

4404
            if (src_sd->type == AV_PKT_DATA_DISPLAYMATRIX)
4405
                continue;
4406 4407

            if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
4408
                continue;
4409 4410 4411 4412 4413 4414 4415

            dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
            if (!dst_data)
                exit_program(1);

            memcpy(dst_data, src_sd->data, src_sd->size);
        }
4416
    }
4417

4418 4419 4420 4421 4422 4423 4424 4425 4426 4427
    if (pkt.dts != AV_NOPTS_VALUE)
        pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
    if (pkt.pts != AV_NOPTS_VALUE)
        pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);

    if (pkt.pts != AV_NOPTS_VALUE)
        pkt.pts *= ist->ts_scale;
    if (pkt.dts != AV_NOPTS_VALUE)
        pkt.dts *= ist->ts_scale;

4428
    pkt_dts = av_rescale_q_rnd(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
4429 4430
    if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
         ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) &&
4431
        pkt_dts != AV_NOPTS_VALUE && ist->next_dts == AV_NOPTS_VALUE && !copy_ts
4432 4433
        && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
        int64_t delta   = pkt_dts - ifile->last_ts;
4434 4435
        if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
            delta >  1LL*dts_delta_threshold*AV_TIME_BASE){
4436 4437 4438 4439 4440 4441 4442 4443 4444
            ifile->ts_offset -= delta;
            av_log(NULL, AV_LOG_DEBUG,
                   "Inter stream timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",
                   delta, ifile->ts_offset);
            pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
            if (pkt.pts != AV_NOPTS_VALUE)
                pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
        }
    }
4445

4446 4447 4448 4449 4450 4451 4452 4453 4454
    duration = av_rescale_q(ifile->duration, ifile->time_base, ist->st->time_base);
    if (pkt.pts != AV_NOPTS_VALUE) {
        pkt.pts += duration;
        ist->max_pts = FFMAX(pkt.pts, ist->max_pts);
        ist->min_pts = FFMIN(pkt.pts, ist->min_pts);
    }

    if (pkt.dts != AV_NOPTS_VALUE)
        pkt.dts += duration;
4455

4456
    pkt_dts = av_rescale_q_rnd(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
4457 4458
    if ((ist->dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO ||
         ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) &&
4459
         pkt_dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE &&
4460 4461 4462
        !copy_ts) {
        int64_t delta   = pkt_dts - ist->next_dts;
        if (is->iformat->flags & AVFMT_TS_DISCONT) {
4463
            if (delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
4464
                delta >  1LL*dts_delta_threshold*AV_TIME_BASE ||
4465 4466 4467
                pkt_dts + AV_TIME_BASE/10 < FFMAX(ist->pts, ist->dts)) {
                ifile->ts_offset -= delta;
                av_log(NULL, AV_LOG_DEBUG,
4468 4469 4470 4471
                       "timestamp discontinuity for stream #%d:%d "
                       "(id=%d, type=%s): %"PRId64", new offset= %"PRId64"\n",
                       ist->file_index, ist->st->index, ist->st->id,
                       av_get_media_type_string(ist->dec_ctx->codec_type),
4472 4473 4474 4475 4476
                       delta, ifile->ts_offset);
                pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
                if (pkt.pts != AV_NOPTS_VALUE)
                    pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base);
            }
4477 4478
        } else {
            if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
4479
                 delta >  1LL*dts_error_threshold*AV_TIME_BASE) {
4480 4481 4482 4483 4484 4485 4486
                av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
                pkt.dts = AV_NOPTS_VALUE;
            }
            if (pkt.pts != AV_NOPTS_VALUE){
                int64_t pkt_pts = av_rescale_q(pkt.pts, ist->st->time_base, AV_TIME_BASE_Q);
                delta   = pkt_pts - ist->next_dts;
                if ( delta < -1LL*dts_error_threshold*AV_TIME_BASE ||
4487
                     delta >  1LL*dts_error_threshold*AV_TIME_BASE) {
4488 4489 4490 4491 4492 4493 4494
                    av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
                    pkt.pts = AV_NOPTS_VALUE;
                }
            }
        }
    }

4495 4496 4497
    if (pkt.dts != AV_NOPTS_VALUE)
        ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);

4498
    if (debug_ts) {
4499
        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",
4500
               ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->dec_ctx->codec_type),
4501 4502 4503 4504
               av_ts2str(pkt.pts), av_ts2timestr(pkt.pts, &ist->st->time_base),
               av_ts2str(pkt.dts), av_ts2timestr(pkt.dts, &ist->st->time_base),
               av_ts2str(input_files[ist->file_index]->ts_offset),
               av_ts2timestr(input_files[ist->file_index]->ts_offset, &AV_TIME_BASE_Q));
4505 4506
    }

4507 4508
    sub2video_heartbeat(ist, pkt.pts);

4509
    process_input_packet(ist, &pkt, 0);
4510 4511

discard_packet:
4512
    av_packet_unref(&pkt);
4513 4514 4515 4516

    return 0;
}

4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533
/**
 * Perform a step of transcoding for the specified filter graph.
 *
 * @param[in]  graph     filter graph to consider
 * @param[out] best_ist  input stream where a frame would allow to continue
 * @return  0 for success, <0 for error
 */
static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
{
    int i, ret;
    int nb_requests, nb_requests_max = 0;
    InputFilter *ifilter;
    InputStream *ist;

    *best_ist = NULL;
    ret = avfilter_graph_request_oldest(graph->graph);
    if (ret >= 0)
4534
        return reap_filters(0);
4535 4536

    if (ret == AVERROR_EOF) {
4537
        ret = reap_filters(1);
4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572
        for (i = 0; i < graph->nb_outputs; i++)
            close_output_stream(graph->outputs[i]->ost);
        return ret;
    }
    if (ret != AVERROR(EAGAIN))
        return ret;

    for (i = 0; i < graph->nb_inputs; i++) {
        ifilter = graph->inputs[i];
        ist = ifilter->ist;
        if (input_files[ist->file_index]->eagain ||
            input_files[ist->file_index]->eof_reached)
            continue;
        nb_requests = av_buffersrc_get_nb_failed_requests(ifilter->filter);
        if (nb_requests > nb_requests_max) {
            nb_requests_max = nb_requests;
            *best_ist = ist;
        }
    }

    if (!*best_ist)
        for (i = 0; i < graph->nb_outputs; i++)
            graph->outputs[i]->ost->unavailable = 1;

    return 0;
}

/**
 * Run a single step of transcoding.
 *
 * @return  0 for success, <0 for error
 */
static int transcode_step(void)
{
    OutputStream *ost;
4573
    InputStream  *ist = NULL;
4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586
    int ret;

    ost = choose_output();
    if (!ost) {
        if (got_eagain()) {
            reset_eagain();
            av_usleep(10000);
            return 0;
        }
        av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
        return AVERROR_EOF;
    }

4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597
    if (ost->filter && !ost->filter->graph->graph) {
        if (ifilter_has_all_input_formats(ost->filter->graph)) {
            ret = configure_filtergraph(ost->filter->graph);
            if (ret < 0) {
                av_log(NULL, AV_LOG_ERROR, "Error reinitializing filters!\n");
                return ret;
            }
        }
    }

    if (ost->filter && ost->filter->graph->graph) {
4598 4599 4600 4601 4602 4603 4604 4605 4606
        if (!ost->initialized) {
            char error[1024] = {0};
            ret = init_output_stream(ost, error, sizeof(error));
            if (ret < 0) {
                av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
                       ost->file_index, ost->index, error);
                exit_program(1);
            }
        }
4607 4608 4609 4610
        if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
            return ret;
        if (!ist)
            return 0;
4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623
    } else if (ost->filter) {
        int i;
        for (i = 0; i < ost->filter->graph->nb_inputs; i++) {
            InputFilter *ifilter = ost->filter->graph->inputs[i];
            if (!ifilter->ist->got_output && !input_files[ifilter->ist->file_index]->eof_reached) {
                ist = ifilter->ist;
                break;
            }
        }
        if (!ist) {
            ost->inputs_done = 1;
            return 0;
        }
4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634
    } else {
        av_assert0(ost->source_index >= 0);
        ist = input_streams[ost->source_index];
    }

    ret = process_input(ist->file_index);
    if (ret == AVERROR(EAGAIN)) {
        if (input_files[ist->file_index]->eagain)
            ost->unavailable = 1;
        return 0;
    }
4635

4636 4637 4638
    if (ret < 0)
        return ret == AVERROR_EOF ? 0 : ret;

4639
    return reap_filters(0);
4640 4641
}

4642 4643 4644
/*
 * The following code is the main loop of the file converter
 */
4645
static int transcode(void)
4646
{
4647
    int ret, i;
4648
    AVFormatContext *os;
4649
    OutputStream *ost;
4650 4651
    InputStream *ist;
    int64_t timer_start;
4652
    int64_t total_packets_written = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
4653

4654
    ret = transcode_init();
4655 4656 4657
    if (ret < 0)
        goto fail;

4658 4659
    if (stdin_interaction) {
        av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
4660 4661
    }

4662
    timer_start = av_gettime_relative();
Fabrice Bellard's avatar
Fabrice Bellard committed
4663

4664
#if HAVE_THREADS
4665 4666 4667
    if ((ret = init_input_threads()) < 0)
        goto fail;
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
4668

Anton Khirnov's avatar
Anton Khirnov committed
4669
    while (!received_sigterm) {
4670
        int64_t cur_time= av_gettime_relative();
4671

4672 4673 4674 4675
        /* if 'q' pressed, exits */
        if (stdin_interaction)
            if (check_keyboard_interaction(cur_time) < 0)
                break;
4676

4677
        /* check if there's any stream where output is still needed */
4678 4679
        if (!need_output()) {
            av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
4680
            break;
4681
        }
4682

4683
        ret = transcode_step();
4684
        if (ret < 0 && ret != AVERROR_EOF) {
4685
            av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
4686
            break;
4687
        }
4688 4689

        /* dump report by using the output first video and audio streams */
4690
        print_report(0, timer_start, cur_time);
Fabrice Bellard's avatar
Fabrice Bellard committed
4691
    }
4692
#if HAVE_THREADS
4693 4694
    free_input_threads();
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
4695

4696 4697
    /* at the end of stream, we must flush the decoder buffers */
    for (i = 0; i < nb_input_streams; i++) {
4698
        ist = input_streams[i];
James Almer's avatar
James Almer committed
4699
        if (!input_files[ist->file_index]->eof_reached) {
4700
            process_input_packet(ist, NULL, 0);
4701
        }
4702
    }
4703
    flush_encoders();
4704

4705
    term_exit();
Fabrice Bellard's avatar
Fabrice Bellard committed
4706

4707
    /* write the trailer if needed and close file */
Aneesh Dogra's avatar
Aneesh Dogra committed
4708
    for (i = 0; i < nb_output_files; i++) {
4709
        os = output_files[i]->ctx;
4710 4711 4712 4713
        if (!output_files[i]->header_written) {
            av_log(NULL, AV_LOG_ERROR,
                   "Nothing was written into output file %d (%s), because "
                   "at least one of its streams received no packets.\n",
4714
                   i, os->url);
4715 4716
            continue;
        }
4717
        if ((ret = av_write_trailer(os)) < 0) {
4718
            av_log(NULL, AV_LOG_ERROR, "Error writing trailer of %s: %s\n", os->url, av_err2str(ret));
4719 4720
            if (exit_on_error)
                exit_program(1);
4721
        }
4722
    }
4723

4724
    /* dump report by using the first video and audio streams */
4725
    print_report(1, timer_start, av_gettime_relative());
4726

4727
    /* close each encoder */
4728
    for (i = 0; i < nb_output_streams; i++) {
4729
        ost = output_streams[i];
4730
        if (ost->encoding_needed) {
4731
            av_freep(&ost->enc_ctx->stats_in);
4732
        }
4733 4734 4735 4736 4737 4738
        total_packets_written += ost->packets_written;
    }

    if (!total_packets_written && (abort_on_flags & ABORT_ON_FLAG_EMPTY_OUTPUT)) {
        av_log(NULL, AV_LOG_FATAL, "Empty output\n");
        exit_program(1);
4739 4740
    }

4741 4742
    /* close each decoder */
    for (i = 0; i < nb_input_streams; i++) {
4743
        ist = input_streams[i];
4744
        if (ist->decoding_needed) {
4745
            avcodec_close(ist->dec_ctx);
4746
            if (ist->hwaccel_uninit)
4747
                ist->hwaccel_uninit(ist->dec_ctx);
4748 4749
        }
    }
4750

4751
    av_buffer_unref(&hw_device_ctx);
4752
    hw_device_free_all();
4753

4754 4755 4756 4757
    /* finished ! */
    ret = 0;

 fail:
4758
#if HAVE_THREADS
4759 4760
    free_input_threads();
#endif
4761

4762 4763
    if (output_streams) {
        for (i = 0; i < nb_output_streams; i++) {
4764
            ost = output_streams[i];
4765 4766
            if (ost) {
                if (ost->logfile) {
4767 4768 4769 4770
                    if (fclose(ost->logfile))
                        av_log(NULL, AV_LOG_ERROR,
                               "Error closing logfile, loss of information possible: %s\n",
                               av_err2str(AVERROR(errno)));
4771
                    ost->logfile = NULL;
4772
                }
4773
                av_freep(&ost->forced_kf_pts);
4774
                av_freep(&ost->apad);
4775
                av_freep(&ost->disposition);
4776
                av_dict_free(&ost->encoder_opts);
4777
                av_dict_free(&ost->sws_dict);
4778
                av_dict_free(&ost->swr_opts);
4779
                av_dict_free(&ost->resample_opts);
4780 4781 4782
            }
        }
    }
4783
    return ret;
Fabrice Bellard's avatar
Fabrice Bellard committed
4784 4785
}

4786
static BenchmarkTimeStamps get_benchmark_time_stamps(void)
4787
{
4788
    BenchmarkTimeStamps time_stamps = { av_gettime_relative() };
4789 4790
#if HAVE_GETRUSAGE
    struct rusage rusage;
4791

4792
    getrusage(RUSAGE_SELF, &rusage);
4793 4794 4795 4796
    time_stamps.user_usec =
        (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
    time_stamps.sys_usec =
        (rusage.ru_stime.tv_sec * 1000000LL) + rusage.ru_stime.tv_usec;
4797 4798 4799 4800 4801
#elif HAVE_GETPROCESSTIMES
    HANDLE proc;
    FILETIME c, e, k, u;
    proc = GetCurrentProcess();
    GetProcessTimes(proc, &c, &e, &k, &u);
4802 4803 4804 4805
    time_stamps.user_usec =
        ((int64_t)u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
    time_stamps.sys_usec =
        ((int64_t)k.dwHighDateTime << 32 | k.dwLowDateTime) / 10;
4806
#else
4807
    time_stamps.user_usec = time_stamps.sys_usec = 0;
4808
#endif
4809
    return time_stamps;
4810
}
4811

4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829
static int64_t getmaxrss(void)
{
#if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
    struct rusage rusage;
    getrusage(RUSAGE_SELF, &rusage);
    return (int64_t)rusage.ru_maxrss * 1024;
#elif HAVE_GETPROCESSMEMORYINFO
    HANDLE proc;
    PROCESS_MEMORY_COUNTERS memcounters;
    proc = GetCurrentProcess();
    memcounters.cb = sizeof(memcounters);
    GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
    return memcounters.PeakPagefileUsage;
#else
    return 0;
#endif
}

4830
static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
4831 4832 4833
{
}

4834 4835
int main(int argc, char **argv)
{
4836
    int i, ret;
4837
    BenchmarkTimeStamps ti;
4838

4839 4840
    init_dynload();

4841
    register_exit(ffmpeg_cleanup);
4842

4843 4844
    setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */

4845
    av_log_set_flags(AV_LOG_SKIP_REPEATED);
4846
    parse_loglevel(argc, argv, options);
4847

4848
    if(argc>1 && !strcmp(argv[1], "-d")){
4849
        run_as_daemon=1;
4850 4851 4852 4853 4854
        av_log_set_callback(log_callback_null);
        argc--;
        argv++;
    }

4855
#if CONFIG_AVDEVICE
Luca Abeni's avatar
Luca Abeni committed
4856
    avdevice_register_all();
4857
#endif
4858
    avformat_network_init();
4859

4860
    show_banner(argc, argv, options);
4861

4862
    /* parse options and open all input/output files */
4863
    ret = ffmpeg_parse_options(argc, argv);
4864
    if (ret < 0)
4865
        exit_program(1);
4866

4867
    if (nb_output_files <= 0 && nb_input_files == 0) {
4868
        show_usage();
4869
        av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
4870
        exit_program(1);
4871
    }
4872

4873 4874
    /* file converter / grab */
    if (nb_output_files <= 0) {
4875
        av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
4876
        exit_program(1);
4877 4878
    }

4879 4880 4881 4882 4883
    for (i = 0; i < nb_output_files; i++) {
        if (strcmp(output_files[i]->ctx->oformat->name, "rtp"))
            want_sdp = 0;
    }

4884
    current_time = ti = get_benchmark_time_stamps();
4885
    if (transcode() < 0)
4886
        exit_program(1);
4887
    if (do_benchmark) {
4888
        int64_t utime, stime, rtime;
4889
        current_time = get_benchmark_time_stamps();
4890 4891 4892
        utime = current_time.user_usec - ti.user_usec;
        stime = current_time.sys_usec  - ti.sys_usec;
        rtime = current_time.real_usec - ti.real_usec;
4893 4894 4895
        av_log(NULL, AV_LOG_INFO,
               "bench: utime=%0.3fs stime=%0.3fs rtime=%0.3fs\n",
               utime / 1000000.0, stime / 1000000.0, rtime / 1000000.0);
4896
    }
4897 4898
    av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
           decode_error_stat[0], decode_error_stat[1]);
4899
    if ((decode_error_stat[0] + decode_error_stat[1]) * max_error_rate < decode_error_stat[1])
4900
        exit_program(69);
4901

4902 4903
    exit_program(received_nb_signals ? 255 : main_return_code);
    return main_return_code;
4904
}