/third_party/ffmpeg/libavdevice/ |
D | lavfi.c | 102 int stream_idx, sink_idx; in create_subcc_streams() local 105 for (stream_idx = 0; stream_idx < lavfi->nb_sinks; stream_idx++) { in create_subcc_streams() 106 sink_idx = lavfi->stream_sink_map[stream_idx]; in create_subcc_streams() 113 time_base = &avctx->streams[stream_idx]->time_base; in create_subcc_streams() 203 int stream_idx = 0, suffix = 0, use_subcc = 0; in lavfi_read_header() local 204 sscanf(inout->name, "out%n%d%n", &suffix, &stream_idx, &suffix); in lavfi_read_header() 220 if ((unsigned)stream_idx >= n) { in lavfi_read_header() 228 if (lavfi->stream_sink_map[stream_idx] != -1) { in lavfi_read_header() 231 stream_idx); in lavfi_read_header() 234 lavfi->sink_stream_map[i] = stream_idx; in lavfi_read_header() [all …]
|
/third_party/ffmpeg/tools/ |
D | decode_simple.c | 119 int ds_open(DecodeContext *dc, const char *url, int stream_idx) in ds_open() argument 139 if (stream_idx < 0 || stream_idx >= dc->demuxer->nb_streams) in ds_open() 142 dc->stream = dc->demuxer->streams[stream_idx]; in ds_open()
|
D | venc_data_dump.c | 73 unsigned int stream_idx, max_frames; in main() local 83 stream_idx = strtol(argv[2], NULL, 0); in main() 90 ret = ds_open(&dc, filename, stream_idx); in main()
|
D | decode_simple.h | 48 int ds_open(DecodeContext *dc, const char *url, int stream_idx);
|
/third_party/ffmpeg/doc/examples/ |
D | extract_mvs.c | 91 int stream_idx = ret; in open_codec_context() local 92 st = fmt_ctx->streams[stream_idx]; in open_codec_context() 116 video_stream_idx = stream_idx; in open_codec_context()
|
D | demuxing_decoding.c | 148 static int open_codec_context(int *stream_idx, in open_codec_context() argument 193 *stream_idx = stream_index; in open_codec_context()
|
/third_party/ffmpeg/libavcodec/ |
D | opus.h | 148 int stream_idx; member
|
D | opus.c | 448 map->stream_idx = idx / 2; in ff_opus_parse_extradata() 451 map->stream_idx = idx - stereo_streams; in ff_opus_parse_extradata()
|
D | opusdec.c | 464 c->streams[map->stream_idx].out[map->channel_idx] = (float*)frame->extended_data[i]; in opus_decode_packet()
|
/third_party/ffmpeg/libavformat/ |
D | rtpdec.h | 224 int ff_rtp_finalize_packet(AVPacket *pkt, AVIOContext **dyn_buf, int stream_idx);
|
D | libgme.c | 169 static int read_seek_gme(AVFormatContext *s, int stream_idx, int64_t ts, int flags) in read_seek_gme() argument
|
D | libopenmpt.c | 211 static int read_seek_openmpt(AVFormatContext *s, int stream_idx, int64_t ts, int flags) in read_seek_openmpt() argument
|
D | rtpdec.c | 1002 int ff_rtp_finalize_packet(AVPacket *pkt, AVIOContext **dyn_buf, int stream_idx) in ff_rtp_finalize_packet() argument 1008 pkt->stream_index = stream_idx; in ff_rtp_finalize_packet()
|
D | libmodplug.c | 354 static int modplug_read_seek(AVFormatContext *s, int stream_idx, int64_t ts, int flags) in modplug_read_seek() argument
|
D | vapoursynth.c | 459 static int read_seek_vs(AVFormatContext *s, int stream_idx, int64_t ts, int flags) in read_seek_vs() argument
|
D | matroskaenc.c | 163 int stream_idx; member 935 entries[idx].stream_idx = stream; in mkv_add_cuepoint() 963 int idx = entry->stream_idx; in mkv_assemble_cues()
|
/third_party/ffmpeg/fftools/ |
D | ffmpeg_opt.c | 552 m->file_idx = m->stream_idx = -1; in opt_map_channel() 561 &m->file_idx, &m->stream_idx, &m->channel_idx, in opt_map_channel() 579 if (m->stream_idx < 0 || in opt_map_channel() 580 m->stream_idx >= input_files[m->file_idx]->nb_streams) { in opt_map_channel() 582 m->file_idx, m->stream_idx); in opt_map_channel() 585 st = input_files[m->file_idx]->ctx->streams[m->stream_idx]; in opt_map_channel() 588 m->file_idx, m->stream_idx); in opt_map_channel() 595 …input_streams[input_files[m->file_idx]->ist_index + m->stream_idx]->user_set_discard == AVDISCARD_… in opt_map_channel() 598 m->file_idx, m->stream_idx, m->channel_idx); in opt_map_channel() 602 m->file_idx, m->stream_idx, m->channel_idx); in opt_map_channel() [all …]
|
D | ffmpeg.h | 84 int file_idx, stream_idx, channel_idx; // input member
|
D | ffprobe.c | 2922 static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx, InputStream *ist… in show_stream() argument 3086 …if (nb_streams_frames[stream_idx]) print_fmt ("nb_read_frames", "%"PRIu64, nb_streams_frames[s… in show_stream() 3088 …if (nb_streams_packets[stream_idx]) print_fmt ("nb_read_packets", "%"PRIu64, nb_streams_packets… in show_stream()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_llvm.c | 1818 …LLVMValueRef stream_idx = LLVMBuildExtractElement(builder, stream_id, lp_build_const_int32(gallivm… in draw_gs_llvm_emit_vertex() local 1819 …LLVMValueRef cnd = LLVMBuildICmp(builder, LLVMIntULT, stream_idx, lp_build_const_int32(gallivm, va… in draw_gs_llvm_emit_vertex()
|