Searched refs:bsf (Results 1 - 18 of 18) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dbitstream_filter.c37 void av_register_bitstream_filter(AVBitStreamFilter *bsf) argument
40 bsf->next = first_bitstream_filter;
41 } while(bsf->next != avpriv_atomic_ptr_cas((void * volatile *)&first_bitstream_filter, bsf->next, bsf));
46 AVBitStreamFilter *bsf = first_bitstream_filter; local
48 while (bsf) {
49 if (!strcmp(name, bsf->name)) {
52 bsfc->filter = bsf;
54 bsf
[all...]
H A Davcodec.h4941 void av_register_bitstream_filter(AVBitStreamFilter *bsf);
4991 * @param bsf the bitstream filter context created with
4994 void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dbitstream_filter.c30 void av_register_bitstream_filter(AVBitStreamFilter *bsf){ argument
31 bsf->next = first_bitstream_filter;
32 first_bitstream_filter= bsf;
36 AVBitStreamFilter *bsf= first_bitstream_filter; local
38 while(bsf){
39 if(!strcmp(name, bsf->name)){
41 bsfc->filter= bsf;
42 bsfc->priv_data= av_mallocz(bsf->priv_data_size);
45 bsf= bsf
[all...]
H A Davcodec.h4620 void av_register_bitstream_filter(AVBitStreamFilter *bsf);
4626 void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dtee.c112 AVBitStreamFilterContext *bsf = av_bitstream_filter_init(bsf_name); local
114 if (!bsf) {
123 /* append bsf context to the list of bsf contexts */
124 *bsfs = bsf;
125 bsfs = &bsf->next;
298 AVBitStreamFilterContext *bsf_next, *bsf = tee->slaves[i].bsfs[j]; local
299 while (bsf) {
300 bsf_next = bsf->next;
301 av_bitstream_filter_close(bsf);
322 AVBitStreamFilterContext *bsf = slave->bsfs[i]; local
[all...]
H A Dconcatdec.c36 AVBitStreamFilterContext *bsf; member in struct:ConcatStream
182 AVBitStreamFilterContext *bsf; local
188 if (!(bsf = av_bitstream_filter_init("h264_mp4toannexb"))) {
193 cs->bsf = bsf;
435 AVBitStreamFilterContext *bsf; local
440 for (bsf = cs->bsf; bsf; bsf
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dcmdutils.c719 AVBitStreamFilter *bsf = NULL; local
722 while ((bsf = av_bitstream_filter_next(bsf)))
723 printf("%s\n", bsf->name);
H A Davconv.c3472 char *bsf = NULL, *next, *codec_tag = NULL; local
3530 MATCH_PER_STREAM_OPT(bitstream_filters, str, bsf, oc, st);
3531 while (bsf) {
3532 if (next = strchr(bsf, ','))
3534 if (!(bsfc = av_bitstream_filter_init(bsf))) {
3535 av_log(NULL, AV_LOG_FATAL, "Unknown bitstream filter %s\n", bsf);
3544 bsf = next;
4500 { "bsf", HAS_ARG | OPT_STRING | OPT_SPEC, {.off = OFFSET(bitstream_filters)}, "A comma-separated list of bitstream filters", "bitstream_filters" },
H A Dconfigure139 --enable-bsf=NAME enable bitstream filter NAME
140 --disable-bsf=NAME disable bitstream filter NAME
1754 BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
3253 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/amd64/
H A Damd64-match.S364 * This three-liner is tantalizingly simple, but bsf is a slow instruction,
368 LeaveLoopCmps: bsf %rax, %rax /* find the first non-zero bit */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/amd64/
H A Damd64-match.S364 * This three-liner is tantalizingly simple, but bsf is a slow instruction,
368 LeaveLoopCmps: bsf %rax, %rax /* find the first non-zero bit */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/tests/fate/
H A Dh264.mak178 fate-h264-bsf-mp4toannexb \
359 fate-h264-bsf-mp4toannexb: CMD = md5 -i $(SAMPLES)/h264/interlaced_crop.mp4 -vcodec copy -bsf h264_mp4toannexb -f h264
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dcmdutils.c1520 AVBitStreamFilter *bsf = NULL; local
1523 while ((bsf = av_bitstream_filter_next(bsf)))
1524 printf("%s\n", bsf->name);
H A Dffmpeg_opt.c1055 char *bsf = NULL, *next, *codec_tag = NULL; local
1133 MATCH_PER_STREAM_OPT(bitstream_filters, str, bsf, oc, st);
1134 while (bsf) {
1135 if (next = strchr(bsf, ','))
1137 if (!(bsfc = av_bitstream_filter_init(bsf))) {
1138 av_log(NULL, AV_LOG_FATAL, "Unknown bitstream filter %s\n", bsf);
1147 bsf = next;
3017 { "bsf", HAS_ARG | OPT_STRING | OPT_SPEC | OPT_EXPERT | OPT_OUTPUT, { .off = OFFSET(bitstream_filters) },
H A Dconfigure174 --enable-bsf=NAME enable bitstream filter NAME
175 --disable-bsf=NAME disable bitstream filter NAME
2757 BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
5339 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavcodec/
H A Davcodec.h3262 void av_register_bitstream_filter(AVBitStreamFilter *bsf);
3268 void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/x86/
H A Dx86inc.asm1410 ; tzcnt is equivalent to "rep bsf" and is backwards-compatible with bsf.
1412 %define tzcnt rep bsf
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dh264.mak199 FATE_H264-$(call ALLYES, MOV_DEMUXER H264_MP4TOANNEXB_BSF) += fate-h264-bsf-mp4toannexb
389 fate-h264-bsf-mp4toannexb: CMD = md5 -i $(TARGET_SAMPLES)/h264/interlaced_crop.mp4 -vcodec copy -bsf h264_mp4toannexb -f h264

Completed in 288 milliseconds