summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-19 09:15:48 +0200
committerAnton Khirnov <anton@khirnov.net>2012-08-30 13:56:25 +0200
commitbbcedade008b5471c71122944cf4dee1951138ec (patch)
tree96f36fc9549f7d6508e66afccc935c4e9036879d /avconv.h
parent038c0b1e06cadffdd6ac50f058dcc6bc075b9019 (diff)
avconv: make the -passlogfile option per-stream.
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/avconv.h b/avconv.h
index 7a51ccbec1..2d6f60b451 100644
--- a/avconv.h
+++ b/avconv.h
@@ -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;