summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/avconv.h b/avconv.h
index bc3b6c3948..60729c3491 100644
--- a/avconv.h
+++ b/avconv.h
@@ -190,6 +190,8 @@ typedef struct OptionsContext {
int nb_pass;
SpecifierOpt *passlogfiles;
int nb_passlogfiles;
+ SpecifierOpt *max_muxing_queue_size;
+ int nb_max_muxing_queue_size;
} OptionsContext;
typedef struct InputFilter {
@@ -391,6 +393,11 @@ typedef struct OutputStream {
/* packet quality factor */
int quality;
+
+ int max_muxing_queue_size;
+
+ /* the packets are buffered here until the muxer is ready to be initialized */
+ AVFifoBuffer *muxing_queue;
} OutputStream;
typedef struct OutputFile {