Searched refs:bsfs (Results 1 – 20 of 20) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | bsf.c | 271 AVBSFContext **bsfs; member 288 ret = avcodec_parameters_copy(lst->bsfs[i]->par_in, cod_par); in bsf_list_init() 292 lst->bsfs[i]->time_base_in = tb; in bsf_list_init() 294 ret = av_bsf_init(lst->bsfs[i]); in bsf_list_init() 298 cod_par = lst->bsfs[i]->par_out; in bsf_list_init() 299 tb = lst->bsfs[i]->time_base_out; in bsf_list_init() 320 ret = av_bsf_receive_packet(lst->bsfs[lst->idx-1], out); in bsf_list_filter() 335 ret = av_bsf_send_packet(lst->bsfs[lst->idx], eof ? NULL : out); in bsf_list_filter() 356 av_bsf_flush(lst->bsfs[i]); in bsf_list_flush() 366 av_bsf_free(&lst->bsfs[i]); in bsf_list_close() [all …]
|
D | codec.h | 334 const char *bsfs; member
|
D | libopenh264dec.c | 175 .bsfs = "h264_mp4toannexb",
|
D | v4l2_m2m_dec.c | 249 .bsfs = bsf_name, \
|
D | decode.c | 196 ret = av_bsf_list_parse_str(avctx->codec->bsfs, &avci->bsf); in decode_bsfs_init() 198 …_ERROR, "Error parsing decoder bitstream filters '%s': %s\n", avctx->codec->bsfs, av_err2str(ret)); in decode_bsfs_init() 839 if (avci->draining || (!avctx->codec->bsfs && avci->compat_decode_consumed < pkt->size)) in compat_decode() 846 if (avctx->codec->bsfs) in compat_decode()
|
D | mediacodecdec.c | 538 .bsfs = bsf, \
|
D | rkmppdec.c | 579 .bsfs = BSFS, \
|
D | cuviddec.c | 973 if (avctx->codec->bsfs) { in cuvid_decode_init() 1151 .bsfs = bsf_name, \
|
D | crystalhd.c | 786 .bsfs = bsf_name, \
|
D | audiotoolboxdec.c | 598 .bsfs = bsf_name, \
|
D | qsvdec.c | 847 .bsfs = bsf_name, \
|
D | vp9.c | 1896 .bsfs = "vp9_superframe_split",
|
/third_party/ffmpeg/libavformat/ |
D | tee.c | 40 AVBSFContext **bsfs; ///< bitstream filters per stream member 134 if (tee_slave->bsfs) { in close_slave() 136 av_bsf_free(&tee_slave->bsfs[i]); in close_slave() 139 av_freep(&tee_slave->bsfs); in close_slave() 312 tee_slave->bsfs = av_calloc(avf2->nb_streams, sizeof(*tee_slave->bsfs)); in open_slave() 313 if (!tee_slave->bsfs) { in open_slave() 344 if (tee_slave->bsfs[i]) { in open_slave() 350 ret = av_bsf_list_parse_str(entry->value, &tee_slave->bsfs[i]); in open_slave() 368 if (!tee_slave->bsfs[target_stream]) { in open_slave() 370 ret = av_bsf_get_null_filter(&tee_slave->bsfs[target_stream]); in open_slave() [all …]
|
/third_party/ffmpeg/doc/ |
D | fftools-common-opts.texi | 115 Use the @option{-bsfs} option to get a list of all bitstream filters. 152 @item -bsfs
|
D | bitstream_filters.texi | 6 the configure option @code{--list-bsfs}. 9 @code{--disable-bsfs}, and selectively enable any bitstream filter using 13 The option @code{-bsfs} of the ff* tools will display the list of
|
D | muxers.texi | 2386 @item bsfs[/@var{spec}] 2454 … -f tee "[bsfs/v=dump_extra=freq=keyframe]out.ts|[movflags=+faststart]out.mp4|[select=a]out.aac" 2463 …-f tee "[bsfs/v=dump_extra=freq=keyframe]out.ts|[movflags=+faststart]out.mp4|[select=\'a:1\']out.a…
|
D | ffmpeg.texi | 1714 a comma-separated list of bitstream filters. Use the @code{-bsfs} option
|
/third_party/ffmpeg/fftools/ |
D | ffmpeg_opt.c | 1429 const char *bsfs = NULL, *time_base = NULL; in new_output_stream() local 1548 MATCH_PER_STREAM_OPT(bitstream_filters, str, bsfs, oc, st); in new_output_stream() 1549 if (bsfs && *bsfs) { in new_output_stream() 1550 ret = av_bsf_list_parse_str(bsfs, &ost->bsf_ctx); in new_output_stream() 1552 …av_log(NULL, AV_LOG_ERROR, "Error parsing bitstream filter sequence '%s': %s\n", bsfs, av_err2str(… in new_output_stream()
|
/third_party/ffmpeg/ |
D | configure | 74 --list-bsfs show all available bitstream filters 173 --disable-bsfs disable all bitstream filters
|
D | Changelog | 1605 - -formats option split into -formats, -codecs, -bsfs, and -protocols
|