pub unsafe extern "C" fn av_bitstream_filter_filter(
    bsfc: *mut AVBitStreamFilterContext,
    avctx: *mut AVCodecContext,
    args: *const c_char,
    poutbuf: *mut *mut u8,
    poutbuf_size: *mut c_int,
    buf: *const u8,
    buf_size: c_int,
    keyframe: c_int
) -> c_int
Expand description

@deprecated the old bitstream filtering API (using AVBitStreamFilterContext) is deprecated. Use av_bsf_send_packet() and av_bsf_receive_packet() from the new bitstream filtering API (using AVBSFContext).