Home
last modified time | relevance | path

Searched refs:ist (Results 1 - 16 of 16) sorted by relevance

/third_party/openssl/crypto/x509/
H A Dv3_ist.c38 ISSUER_SIGN_TOOL *ist = ISSUER_SIGN_TOOL_new();
41 if (ist == NULL) {
52 ist->signTool = ASN1_UTF8STRING_new();
53 if (ist->signTool == NULL) {
55 ISSUER_SIGN_TOOL_free(ist);
58 ASN1_STRING_set(ist->signTool, cnf->value, strlen(cnf->value));
60 ist->cATool = ASN1_UTF8STRING_new();
61 if (ist->cATool == NULL) {
63 ISSUER_SIGN_TOOL_free(ist);
66 ASN1_STRING_set(ist
[all...]
/third_party/ffmpeg/fftools/
H A Dffmpeg.c176 static int sub2video_get_blank_frame(InputStream *ist) in sub2video_get_blank_frame() argument
179 AVFrame *frame = ist->sub2video.frame; in sub2video_get_blank_frame()
182 ist->sub2video.frame->width = ist->dec_ctx->width ? ist->dec_ctx->width : ist->sub2video.w; in sub2video_get_blank_frame()
183 ist->sub2video.frame->height = ist->dec_ctx->height ? ist->dec_ctx->height : ist in sub2video_get_blank_frame()
222 sub2video_push_ref(InputStream *ist, int64_t pts) sub2video_push_ref() argument
240 sub2video_update(InputStream *ist, int64_t heartbeat_pts, AVSubtitle *sub) sub2video_update() argument
280 sub2video_heartbeat(InputStream *ist, int64_t pts) sub2video_heartbeat() argument
312 sub2video_flush(InputStream *ist) sub2video_flush() argument
528 struct InputStream *ist = ifilter->ist; ffmpeg_cleanup() local
614 InputStream *ist = input_streams[i]; ffmpeg_cleanup() local
1089 InputStream *ist = NULL; do_video_out() local
1438 InputStream *ist = input_streams[f->ist_index + j]; print_final_stats() local
1794 check_output_constraints(InputStream *ist, OutputStream *ost) check_output_constraints() argument
1811 do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *pkt) do_streamcopy() argument
1888 guess_input_channel_layout(InputStream *ist) guess_input_channel_layout() argument
1907 check_decode_result(InputStream *ist, int *got_output, int ret) check_decode_result() argument
2070 send_frame_to_filters(InputStream *ist, AVFrame *decoded_frame) send_frame_to_filters() argument
2088 decode_audio(InputStream *ist, AVPacket *pkt, int *got_output, int *decode_failed) decode_audio() argument
2148 decode_video(InputStream *ist, AVPacket *pkt, int *got_output, int64_t *duration_pts, int eof, int *decode_failed) decode_video() argument
2273 transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output, int *decode_failed) transcode_subtitles() argument
2348 send_filter_eof(InputStream *ist) send_filter_eof() argument
2364 process_input_packet(InputStream *ist, const AVPacket *pkt, int no_eof) process_input_packet() argument
2554 InputStream *ist = s->opaque; get_format() local
2604 InputStream *ist = input_streams[ist_index]; init_input_stream() local
2710 InputStream *ist = get_input_stream(ost); init_output_stream_streamcopy() local
2932 InputStream *ist = get_input_stream(ost); init_encoder_time_base() local
2956 InputStream *ist = get_input_stream(ost); init_output_stream_encode() local
3125 InputStream *ist; init_output_stream() local
3281 InputStream *ist; transcode_init() local
3772 InputStream *ist = input_streams[f->ist_index + i]; get_input_packet() local
3831 InputStream *ist; seek_to_start() local
3899 InputStream *ist; process_input() local
4196 InputStream *ist; transcode_from_filter() local
4240 InputStream *ist = NULL; transcode_step() local
4332 InputStream *ist; transcode() local
[all...]
H A Dffmpeg_qsv.c36 InputStream *ist = s->opaque; in qsv_get_buffer() local
38 return av_hwframe_get_buffer(ist->hw_frames_ctx, frame, 0); in qsv_get_buffer()
43 InputStream *ist = s->opaque; in qsv_uninit() local
44 av_buffer_unref(&ist->hw_frames_ctx); in qsv_uninit()
47 static int qsv_device_init(InputStream *ist) in qsv_device_init() argument
59 ist->hwaccel_device, dict, 0); in qsv_device_init()
74 InputStream *ist = s->opaque; in qsv_init() local
80 ret = qsv_device_init(ist); in qsv_init()
85 av_buffer_unref(&ist->hw_frames_ctx); in qsv_init()
86 ist in qsv_init()
[all...]
H A Dffmpeg_hw.c317 int hw_device_setup_for_decode(InputStream *ist) in hw_device_setup_for_decode() argument
324 if (ist->hwaccel_device) { in hw_device_setup_for_decode()
325 dev = hw_device_get_by_name(ist->hwaccel_device); in hw_device_setup_for_decode()
327 if (ist->hwaccel_id == HWACCEL_AUTO) { in hw_device_setup_for_decode()
329 } else if (ist->hwaccel_id == HWACCEL_GENERIC) { in hw_device_setup_for_decode()
330 type = ist->hwaccel_device_type; in hw_device_setup_for_decode()
331 err = hw_device_init_from_type(type, ist->hwaccel_device, in hw_device_setup_for_decode()
339 if (ist->hwaccel_id == HWACCEL_AUTO) { in hw_device_setup_for_decode()
340 ist->hwaccel_device_type = dev->type; in hw_device_setup_for_decode()
341 } else if (ist in hw_device_setup_for_decode()
502 InputStream *ist = avctx->opaque; hwaccel_retrieve_data() local
544 InputStream *ist = avctx->opaque; hwaccel_decode_init() local
[all...]
H A Dffmpeg_filter.c176 int init_simple_filtergraph(InputStream *ist, OutputStream *ost) in init_simple_filtergraph() argument
194 ifilter->ist = ist; in init_simple_filtergraph()
202 GROW_ARRAY(ist->filters, ist->nb_filters); in init_simple_filtergraph()
203 ist->filters[ist->nb_filters - 1] = ifilter; in init_simple_filtergraph()
230 InputStream *ist = NULL; in init_input_filter() local
271 ist = input_streams[input_files[file_idx]->ist_index + st->index]; in init_input_filter()
272 if (ist in init_input_filter()
660 sub2video_prepare(InputStream *ist, InputFilter *ifilter) sub2video_prepare() argument
713 InputStream *ist = ifilter->ist; configure_input_video_filter() local
837 InputStream *ist = ifilter->ist; configure_input_audio_filter() local
1152 InputStream *ist = fg->inputs[i]->ist; configure_filtergraph() local
[all...]
H A Dffmpeg_videotoolbox.c38 InputStream *ist = s->opaque; in videotoolbox_retrieve_data() local
39 VTContext *vt = ist->hwaccel_ctx; in videotoolbox_retrieve_data()
109 InputStream *ist = s->opaque; in videotoolbox_uninit() local
110 VTContext *vt = ist->hwaccel_ctx; in videotoolbox_uninit()
112 ist->hwaccel_uninit = NULL; in videotoolbox_uninit()
113 ist->hwaccel_retrieve_data = NULL; in videotoolbox_uninit()
118 av_freep(&ist->hwaccel_ctx); in videotoolbox_uninit()
123 InputStream *ist = s->opaque; in videotoolbox_init() local
124 int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR; in videotoolbox_init()
132 ist in videotoolbox_init()
[all...]
H A Dffmpeg_opt.c871 InputStream *ist; in add_input_streams() local
882 ist = ALLOC_ARRAY_ELEM(input_streams, nb_input_streams); in add_input_streams()
883 ist->st = st; in add_input_streams()
884 ist->file_index = nb_input_files; in add_input_streams()
885 ist->discard = 1; in add_input_streams()
887 ist->nb_samples = 0; in add_input_streams()
888 ist->first_dts = AV_NOPTS_VALUE; in add_input_streams()
889 ist->min_pts = INT64_MAX; in add_input_streams()
890 ist->max_pts = INT64_MIN; in add_input_streams()
892 ist in add_input_streams()
2009 const InputStream *ist = input_streams[ost->source_index]; new_video_stream() local
2106 InputStream *ist; new_audio_stream() local
2424 InputStream *ist; open_output_file() local
2774 InputStream *ist = input_streams[ost->source_index]; open_output_file() local
2790 InputStream *ist = input_streams[ost->source_index]; open_output_file() local
2909 InputStream *ist; open_output_file() local
[all...]
H A Dffmpeg.h244 struct InputStream *ist; member
672 int guess_input_channel_layout(InputStream *ist);
677 int init_simple_filtergraph(InputStream *ist, OutputStream *ost);
680 void sub2video_update(InputStream *ist, int64_t heartbeat_pts, AVSubtitle *sub);
693 int hw_device_setup_for_decode(InputStream *ist);
H A Dffprobe.c2922 static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx, InputStream *ist, int in_program) in show_stream() argument
2924 AVStream *stream = ist->st; in show_stream()
2942 dec_ctx = ist->dec_ctx; in show_stream()
3337 InputStream *ist = &ifile->streams[i]; in open_input_file() local
3341 ist->st = stream; in open_input_file()
3361 ist->dec_ctx = avcodec_alloc_context3(codec); in open_input_file()
3362 if (!ist->dec_ctx) in open_input_file()
3365 err = avcodec_parameters_to_context(ist->dec_ctx, stream->codecpar); in open_input_file()
3376 ist->dec_ctx->pkt_timebase = stream->time_base; in open_input_file()
3378 if (avcodec_open2(ist in open_input_file()
[all...]
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_ist.c38 ISSUER_SIGN_TOOL *ist = ISSUER_SIGN_TOOL_new();
41 if (ist == NULL) {
52 ist->signTool = ASN1_UTF8STRING_new();
53 if (ist->signTool == NULL
55 || !ASN1_STRING_set(ist->signTool, cnf->value, strlen(cnf->value))) {
60 ist->cATool = ASN1_UTF8STRING_new();
61 if (ist->cATool == NULL
63 || !ASN1_STRING_set(ist->cATool, cnf->value, strlen(cnf->value))) {
68 ist->signToolCert = ASN1_UTF8STRING_new();
69 if (ist
[all...]
/third_party/ffmpeg/libavformat/
H A Davformat.c634 AVStream *ost, const AVStream *ist, in avformat_transfer_internal_stream_timing_info()
637 const AVCodecContext *const dec_ctx = cffstream(ist)->avctx; in avformat_transfer_internal_stream_timing_info()
640 enc_ctx->time_base = ist->time_base; in avformat_transfer_internal_stream_timing_info()
648 if (copy_tb == AVFMT_TBCF_AUTO && ist->r_frame_rate.num in avformat_transfer_internal_stream_timing_info()
649 && av_q2d(ist->r_frame_rate) >= av_q2d(ist->avg_frame_rate) in avformat_transfer_internal_stream_timing_info()
650 && 0.5/av_q2d(ist->r_frame_rate) > av_q2d(ist->time_base) in avformat_transfer_internal_stream_timing_info()
651 && 0.5/av_q2d(ist->r_frame_rate) > av_q2d(dec_ctx->time_base) in avformat_transfer_internal_stream_timing_info()
652 && av_q2d(ist in avformat_transfer_internal_stream_timing_info()
633 avformat_transfer_internal_stream_timing_info(const AVOutputFormat *ofmt, AVStream *ost, const AVStream *ist, enum AVTimebaseSource copy_tb) avformat_transfer_internal_stream_timing_info() argument
[all...]
H A Dhls.c1825 static int set_stream_info_from_input_stream(AVStream *st, struct playlist *pls, AVStream *ist) in set_stream_info_from_input_stream() argument
1829 err = avcodec_parameters_copy(st->codecpar, ist->codecpar); in set_stream_info_from_input_stream()
1836 avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den); in set_stream_info_from_input_stream()
1839 st->disposition = ist->disposition; in set_stream_info_from_input_stream()
1842 for (int i = 0; i < ist->nb_side_data; i++) { in set_stream_info_from_input_stream()
1843 const AVPacketSideData *sd_src = &ist->side_data[i]; in set_stream_info_from_input_stream()
1865 AVStream *ist = pls->ctx->streams[ist_idx]; in update_streams_from_subdemuxer() local
1875 err = set_stream_info_from_input_stream(st, pls, ist); in update_streams_from_subdemuxer()
2368 AVStream *ist; hls_read_packet() local
[all...]
H A Ddashdec.c1944 AVStream *ist = pls->ctx->streams[i]; in open_demux_for_component() local
1950 avcodec_parameters_copy(st->codecpar, ist->codecpar); in open_demux_for_component()
1951 avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den); in open_demux_for_component()
1954 st->disposition = ist->disposition; in open_demux_for_component()
1957 for (int i = 0; i < ist->nb_side_data; i++) { in open_demux_for_component()
1958 const AVPacketSideData *sd_src = &ist->side_data[i]; in open_demux_for_component()
H A Dsegment.c167 AVStream *st, *ist = s->streams[i]; in segment_mux_init() local
168 AVCodecParameters *ipar = ist->codecpar, *opar; in segment_mux_init()
172 ret = ff_stream_encode_params_copy(st, ist); in segment_mux_init()
H A Davformat.h2912 * @param ist reference input stream to copy timings from
2916 AVStream *ost, const AVStream *ist,
/third_party/ltp/testcases/kernel/kvm/include/
H A Dkvm_x86.h116 uint8_t ist; member

Completed in 29 milliseconds