summaryrefslogtreecommitdiff
path: root/ffmpeg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ffmpeg.h')
-rw-r--r--ffmpeg.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ffmpeg.h b/ffmpeg.h
index 5caf584c7d..b7f8b7a146 100644
--- a/ffmpeg.h
+++ b/ffmpeg.h
@@ -416,7 +416,11 @@ typedef struct OutputStream {
int64_t first_pts;
/* dts of the last packet sent to the muxer */
int64_t last_mux_dts;
- AVBitStreamFilterContext *bitstream_filters;
+
+ int nb_bitstream_filters;
+ uint8_t *bsf_extradata_updated;
+ AVBSFContext **bsf_ctx;
+
AVCodecContext *enc_ctx;
AVCodecParameters *ref_par; /* associated input codec parameters with encoders options applied */
AVCodec *enc;