summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-02-25 15:41:45 +0100
committerAnton Khirnov <anton@khirnov.net>2016-03-20 08:15:01 +0100
commit4426540f0c3ee516662f79d0a6ab5b95503b6611 (patch)
tree296b8f1d98f10ee42f62e2db40382860573981f4 /avconv.h
parent33d18982fa03feb061c8f744a4f0a9175c1f63ab (diff)
avconv: switch to the new BSF API
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/avconv.h b/avconv.h
index 645dc30e12..d8ee44f7b1 100644
--- a/avconv.h
+++ b/avconv.h
@@ -325,7 +325,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;
+ const AVBitStreamFilter **bitstream_filters;
+ AVBSFContext **bsf_ctx;
+
AVCodecContext *enc_ctx;
AVCodec *enc;
int64_t max_frames;