Home
last modified time | relevance | path

Searched refs:bsfs (Results 1 – 20 of 20) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dbsf.c271 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 …]
Dcodec.h334 const char *bsfs; member
Dlibopenh264dec.c175 .bsfs = "h264_mp4toannexb",
Dv4l2_m2m_dec.c249 .bsfs = bsf_name, \
Ddecode.c196 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()
Dmediacodecdec.c538 .bsfs = bsf, \
Drkmppdec.c579 .bsfs = BSFS, \
Dcuviddec.c973 if (avctx->codec->bsfs) { in cuvid_decode_init()
1151 .bsfs = bsf_name, \
Dcrystalhd.c786 .bsfs = bsf_name, \
Daudiotoolboxdec.c598 .bsfs = bsf_name, \
Dqsvdec.c847 .bsfs = bsf_name, \
Dvp9.c1896 .bsfs = "vp9_superframe_split",
/third_party/ffmpeg/libavformat/
Dtee.c40 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/
Dfftools-common-opts.texi115 Use the @option{-bsfs} option to get a list of all bitstream filters.
152 @item -bsfs
Dbitstream_filters.texi6 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
Dmuxers.texi2386 @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…
Dffmpeg.texi1714 a comma-separated list of bitstream filters. Use the @code{-bsfs} option
/third_party/ffmpeg/fftools/
Dffmpeg_opt.c1429 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/
Dconfigure74 --list-bsfs show all available bitstream filters
173 --disable-bsfs disable all bitstream filters
DChangelog1605 - -formats option split into -formats, -codecs, -bsfs, and -protocols