diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-19 09:15:48 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-08-30 13:56:25 +0200 |
commit | bbcedade008b5471c71122944cf4dee1951138ec (patch) | |
tree | 96f36fc9549f7d6508e66afccc935c4e9036879d /avconv.h | |
parent | 038c0b1e06cadffdd6ac50f058dcc6bc075b9019 (diff) | |
download | ffmpeg-bbcedade008b5471c71122944cf4dee1951138ec.tar.gz |
avconv: make the -passlogfile option per-stream.
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -160,6 +160,8 @@ typedef struct OptionsContext { int nb_filters; SpecifierOpt *pass; int nb_pass; + SpecifierOpt *passlogfiles; + int nb_passlogfiles; } OptionsContext; typedef struct InputFilter { @@ -284,6 +286,7 @@ typedef struct OutputStream { int forced_kf_index; char *forced_keyframes; + char *logfile_prefix; FILE *logfile; OutputFilter *filter; @@ -323,7 +326,6 @@ extern int nb_output_files; extern FilterGraph **filtergraphs; extern int nb_filtergraphs; -extern char *pass_logfilename_prefix; extern char *vstats_filename; extern float audio_drift_threshold; |