Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2015-10-18 00:46:09 +0300
committerMarton Balint <cus@passwd.hu>2015-10-22 20:03:01 +0300
commitddc6bd8c95868b14aec385b2e7bb519559583042 (patch)
tree3356e7f8ecdffb2515d539cc57418a2e1d907fc4 /ffmpeg.h
parent5821244b225b34dbabcd5bf6cf1c0a9dc3e529dc (diff)
ffmpeg: add abort_on option to allow aborting on empty output
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r--ffmpeg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ffmpeg.h b/ffmpeg.h
index e8066f84df..cdcb3b46fa 100644
--- a/ffmpeg.h
+++ b/ffmpeg.h
@@ -383,6 +383,8 @@ enum forced_keyframes_const {
FKF_NB
};
+#define ABORT_ON_FLAG_EMPTY_OUTPUT (1 << 0)
+
extern const char *const forced_keyframes_const_names[];
typedef enum {
@@ -527,6 +529,7 @@ extern int start_at_zero;
extern int copy_tb;
extern int debug_ts;
extern int exit_on_error;
+extern int abort_on_flags;
extern int print_stats;
extern int qp_hist;
extern int stdin_interaction;