diff options
author | Marton Balint <cus@passwd.hu> | 2015-10-17 23:46:09 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2015-10-22 19:03:01 +0200 |
commit | ddc6bd8c95868b14aec385b2e7bb519559583042 (patch) | |
tree | 3356e7f8ecdffb2515d539cc57418a2e1d907fc4 /ffmpeg.h | |
parent | 5821244b225b34dbabcd5bf6cf1c0a9dc3e529dc (diff) | |
download | ffmpeg-ddc6bd8c95868b14aec385b2e7bb519559583042.tar.gz |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |