diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-02-25 15:41:45 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-20 08:15:01 +0100 |
commit | 4426540f0c3ee516662f79d0a6ab5b95503b6611 (patch) | |
tree | 296b8f1d98f10ee42f62e2db40382860573981f4 /avconv.h | |
parent | 33d18982fa03feb061c8f744a4f0a9175c1f63ab (diff) | |
download | ffmpeg-4426540f0c3ee516662f79d0a6ab5b95503b6611.tar.gz |
avconv: switch to the new BSF API
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; |