Home
last modified time | relevance | path

Searched refs:pls (Results 1 - 4 of 4) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dhls.c242 static void free_segment_list(struct playlist *pls) in free_segment_list() argument
244 free_segment_dynarray(pls->segments, pls->n_segments); in free_segment_list()
245 av_freep(&pls->segments); in free_segment_list()
246 pls->n_segments = 0; in free_segment_list()
249 static void free_init_section_list(struct playlist *pls) in free_init_section_list() argument
252 for (i = 0; i < pls->n_init_sections; i++) { in free_init_section_list()
253 av_freep(&pls->init_sections[i]->key); in free_init_section_list()
254 av_freep(&pls->init_sections[i]->url); in free_init_section_list()
255 av_freep(&pls in free_init_section_list()
265 struct playlist *pls = c->playlists[i]; free_playlist_list() local
314 struct playlist *pls = av_mallocz(sizeof(struct playlist)); new_playlist() local
349 struct playlist *pls; new_variant() local
415 new_init_section(struct playlist *pls, struct init_section_info *info, const char *url_base) new_init_section() argument
611 ensure_playlist(HLSContext *c, struct playlist **pls, const char *url) ensure_playlist() argument
726 parse_playlist(HLSContext *c, const char *url, struct playlist *pls, AVIOContext *in) parse_playlist() argument
1042 current_segment(struct playlist *pls) current_segment() argument
1050 next_segment(struct playlist *pls) next_segment() argument
1058 read_from_url(struct playlist *pls, struct segment *seg, uint8_t *buf, int buf_size) read_from_url() argument
1104 id3_has_changed_values(struct playlist *pls, AVDictionary *metadata, ID3v2ExtraMetaAPIC *apic) id3_has_changed_values() argument
1133 handle_id3(AVIOContext *pb, struct playlist *pls) handle_id3() argument
1175 intercept_id3(struct playlist *pls, uint8_t *buf, int buf_size, int *len) intercept_id3() argument
1275 open_input(HLSContext *c, struct playlist *pls, struct segment *seg, AVIOContext **in) open_input() argument
1358 update_init_section(struct playlist *pls, struct segment *seg) update_init_section() argument
1415 default_reload_interval(struct playlist *pls) default_reload_interval() argument
1422 playlist_needed(struct playlist *pls) playlist_needed() argument
1652 add_metadata_from_renditions(AVFormatContext *s, struct playlist *pls, enum AVMediaType type) add_metadata_from_renditions() argument
1684 find_timestamp_in_playlist(HLSContext *c, struct playlist *pls, int64_t timestamp, int64_t *seq_no, int64_t *seg_start_ts) find_timestamp_in_playlist() argument
1714 select_cur_seq_no(HLSContext *c, struct playlist *pls) select_cur_seq_no() argument
1799 add_stream_to_programs(AVFormatContext *s, struct playlist *pls, AVStream *stream) add_stream_to_programs() argument
1825 set_stream_info_from_input_stream(AVStream *st, struct playlist *pls, AVStream *ist) set_stream_info_from_input_stream() argument
1858 update_streams_from_subdemuxer(AVFormatContext *s, struct playlist *pls) update_streams_from_subdemuxer() argument
1890 struct playlist *pls = c->playlists[i]; update_noheader_flag() local
1953 struct playlist *pls = c->playlists[i]; hls_read_header() local
2006 struct playlist *pls = c->playlists[i]; hls_read_header() local
2017 struct playlist *pls = c->playlists[i]; hls_read_header() local
2207 struct playlist *pls = c->playlists[i]; recheck_discard_flags() local
2239 fill_timing_for_id3_timestamped_stream(struct playlist *pls) fill_timing_for_id3_timestamped_stream() argument
2264 get_timebase(struct playlist *pls) get_timebase() argument
2290 struct playlist *pls = c->playlists[i]; hls_read_packet() local
2367 struct playlist *pls = c->playlists[minplaylist]; hls_read_packet() local
2454 struct playlist *pls = c->playlists[i]; hls_read_seek() local
2481 struct playlist *pls = c->playlists[i]; hls_read_seek() local
[all...]
H A Ddashdec.c252 static int64_t get_segment_start_time_based_on_timeline(struct representation *pls, int64_t cur_seq_no) in get_segment_start_time_based_on_timeline() argument
259 if (pls->n_timelines) { in get_segment_start_time_based_on_timeline()
260 for (i = 0; i < pls->n_timelines; i++) { in get_segment_start_time_based_on_timeline()
261 if (pls->timelines[i]->starttime > 0) { in get_segment_start_time_based_on_timeline()
262 start_time = pls->timelines[i]->starttime; in get_segment_start_time_based_on_timeline()
267 start_time += pls->timelines[i]->duration; in get_segment_start_time_based_on_timeline()
269 if (pls->timelines[i]->repeat == -1) { in get_segment_start_time_based_on_timeline()
270 start_time = pls->timelines[i]->duration * cur_seq_no; in get_segment_start_time_based_on_timeline()
274 for (j = 0; j < pls->timelines[i]->repeat; j++) { in get_segment_start_time_based_on_timeline()
278 start_time += pls in get_segment_start_time_based_on_timeline()
287 calc_next_seg_no_from_timelines(struct representation *pls, int64_t cur_time) calc_next_seg_no_from_timelines() argument
326 free_fragment_list(struct representation *pls) free_fragment_list() argument
337 free_timelines_list(struct representation *pls) free_timelines_list() argument
348 free_representation(struct representation *pls) free_representation() argument
372 struct representation *pls = c->videos[i]; free_video_list() local
383 struct representation *pls = c->audios[i]; free_audio_list() local
394 struct representation *pls = c->subtitles[i]; free_subtitle_list() local
1373 calc_cur_seg_no(AVFormatContext *s, struct representation *pls) calc_cur_seg_no() argument
1411 calc_min_seg_no(AVFormatContext *s, struct representation *pls) calc_min_seg_no() argument
1425 calc_max_seg_no(struct representation *pls, DASHContext *c) calc_max_seg_no() argument
1582 get_current_fragment(struct representation *pls) get_current_fragment() argument
1665 read_from_url(struct representation *pls, struct fragment *seg, uint8_t *buf, int buf_size) read_from_url() argument
1681 open_input(DASHContext *c, struct representation *pls, struct fragment *seg) open_input() argument
1713 update_init_section(struct representation *pls) update_init_section() argument
1842 close_demux_for_component(struct representation *pls) close_demux_for_component() argument
1851 reopen_demux_for_component(AVFormatContext *s, struct representation *pls) reopen_demux_for_component() argument
1926 open_demux_for_component(AVFormatContext *s, struct representation *pls) open_demux_for_component() argument
1973 is_common_init_section_exist(struct representation **pls, int n_pls) is_common_init_section_exist() argument
2144 struct representation *pls = p[i]; recheck_discard_flags() local
2238 dash_seek(AVFormatContext *s, struct representation *pls, int64_t seek_pos_msec, int flags, int dry_run) dash_seek() argument
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dmain.cpp766 "\t[--pls-in format input-name]:\n\t\tRemaps a subpass input with name into a GL_EXT_pixel_local_storage input.\n" in print_help_glsl()
767 "\t\tEntry in PLS block is ordered where first --pls-in marks the first entry. Can be called multiple times.\n" in print_help_glsl()
770 "\t[--pls-out format output-name]:\n\t\tRemaps a color output with name into a GL_EXT_pixel_local_storage output.\n" in print_help_glsl()
771 "\t\tEntry in PLS block is ordered where first --pls-output marks the first entry. Can be called multiple times.\n" in print_help_glsl()
982 for (auto &pls : pls_variables) in remap_pls()
987 if (res.name == pls.name) in remap_pls()
989 ret.push_back({ res.id, pls.format }); in remap_pls()
999 if (res.name == pls.name) in remap_pls()
1001 ret.push_back({ res.id, pls.format }); in remap_pls()
1009 fprintf(stderr, "Did not find stage input/output/target with name \"%s\".\n", pls in remap_pls()
[all...]
H A Dspirv_glsl.cpp11771 find_if(begin(pls_inputs), end(pls_inputs), [var](const PlsRemap &pls) { return pls.id == var->self; });

Completed in 18 milliseconds