summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg.h
diff options
context:
space:
mode:
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r--fftools/ffmpeg.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h
index 7288a48aa1..300ad8a987 100644
--- a/fftools/ffmpeg.h
+++ b/fftools/ffmpeg.h
@@ -263,11 +263,18 @@ typedef struct InputFilterOptions {
AVFrame *fallback;
} InputFilterOptions;
+enum OFilterFlags {
+ OFILTER_FLAG_DISABLE_CONVERT = (1 << 0),
+};
+
typedef struct OutputFilterOptions {
// Codec used for encoding, may be NULL
const AVCodec *enc;
int64_t ts_offset;
+
+ // A combination of OFilterFlags.
+ unsigned flags;
} OutputFilterOptions;
typedef struct InputFilter {
@@ -556,8 +563,6 @@ typedef struct OutputStream {
char *attachment_filename;
- int keep_pix_fmt;
-
/* stats */
// number of packets send to the muxer
atomic_uint_least64_t packets_written;