/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | gstisoff.c | 36 parser->sidx.entries = NULL; in gst_isoff_qt_sidx_parser_init() 37 parser->sidx.entries_count = 0; in gst_isoff_qt_sidx_parser_init() 43 g_free (parser->sidx.entries); in gst_isoff_qt_sidx_parser_clear() 44 parser->sidx.entries = NULL; in gst_isoff_qt_sidx_parser_clear() 99 parser->sidx.version = gst_byte_reader_get_uint8_unchecked (&reader); in gst_isoff_qt_sidx_parser_add_data() 100 parser->sidx.flags = gst_byte_reader_get_uint24_le_unchecked (&reader); in gst_isoff_qt_sidx_parser_add_data() 106 if (remaining < 12 + (parser->sidx.version == 0 ? 8 : 16)) { in gst_isoff_qt_sidx_parser_add_data() 110 parser->sidx.ref_id = gst_byte_reader_get_uint32_be_unchecked (&reader); in gst_isoff_qt_sidx_parser_add_data() 111 parser->sidx.timescale = in gst_isoff_qt_sidx_parser_add_data() 113 if (parser->sidx.version == 0) { in gst_isoff_qt_sidx_parser_add_data() [all …]
|
D | gstisoff.h | 89 GstSidxBox sidx; member
|
D | qtdemux.c | 4670 GstBuffer *sidx = NULL; in gst_qtdemux_loop_state_header() local 4671 ret = gst_qtdemux_pull_atom (qtdemux, cur_offset, length, &sidx); in gst_qtdemux_loop_state_header() 4675 gst_buffer_map (sidx, &map, GST_MAP_READ); in gst_qtdemux_loop_state_header() 4677 gst_buffer_unmap (sidx, &map); in gst_qtdemux_loop_state_header() 4678 gst_buffer_unref (sidx); in gst_qtdemux_loop_state_header()
|
/third_party/ffmpeg/libavcodec/ |
D | microdvddec.c | 204 int i, sidx; in microdvd_open_tags() local 211 for (sidx = 0; sidx < sizeof(MICRODVD_STYLES) - 1; sidx++) in microdvd_open_tags() 212 if (tags[i].data1 & (1 << sidx)) in microdvd_open_tags() 213 av_bprintf(new_line, "{\\%c1}", MICRODVD_STYLES[sidx]); in microdvd_open_tags() 247 int i, sidx; in microdvd_close_no_persistent_tags() local 255 for (sidx = sizeof(MICRODVD_STYLES) - 2; sidx >= 0; sidx--) in microdvd_close_no_persistent_tags() 256 if (tags[i].data1 & (1 << sidx)) in microdvd_close_no_persistent_tags() 257 av_bprintf(new_line, "{\\%c0}", MICRODVD_STYLES[sidx]); in microdvd_close_no_persistent_tags() 324 int i, sidx; in microdvd_init() local 342 for (sidx = 0; sidx < sizeof(MICRODVD_STYLES) - 1; sidx++) { in microdvd_init() [all …]
|
D | gdv.c | 525 int sidx = PREAMBLE_SIZE, didx = 0; in gdv_decode_frame() local 529 memcpy(dst + didx, gdv->frame + sidx, avctx->width); in gdv_decode_frame() 530 sidx += avctx->width; in gdv_decode_frame() 534 int sidx = PREAMBLE_SIZE, didx = 0; in gdv_decode_frame() local 539 memcpy(dst + didx, gdv->frame + sidx, avctx->width); in gdv_decode_frame() 542 uint8_t *src2 = gdv->frame + sidx; in gdv_decode_frame() 547 sidx += !gdv->scale_v ? avctx->width : avctx->width/2; in gdv_decode_frame()
|
D | mobiclip.c | 1088 int sidx = -FFMAX(1, index) + s->current_pic; in predict_motion() local 1091 if (sidx < 0) in predict_motion() 1092 sidx += 6; in predict_motion() 1119 av_assert0(s->pic[sidx]); in predict_motion() 1122 if (!s->pic[sidx]->data[i]) in predict_motion() 1126 src_linesize = s->pic[sidx]->linesize[i]; in predict_motion() 1138 src = s->pic[sidx]->data[i] + offsetx + (mv.x >> 1) + in predict_motion() 1148 src = s->pic[sidx]->data[i] + offsetx + (mv.x >> 1) + in predict_motion() 1160 src = s->pic[sidx]->data[i] + offsetx + (mv.x >> 1) + in predict_motion() 1172 src = s->pic[sidx]->data[i] + offsetx + (mv.x >> 1) + in predict_motion()
|
D | h264_direct.c | 126 int sidx = (h->picture_structure & 1) ^ 1; in ff_h264_direct_ref_list_init() local 130 cur->ref_count[sidx][list] = sl->ref_count[list]; in ff_h264_direct_ref_list_init() 132 cur->ref_poc[sidx][list][j] = 4 * sl->ref_list[list][j].parent->frame_num + in ff_h264_direct_ref_list_init() 162 sidx = sl->col_parity; in ff_h264_direct_ref_list_init() 173 fill_colmap(h, sl, sl->map_col_to_list0, list, sidx, ref1sidx, 0); in ff_h264_direct_ref_list_init()
|
D | mss3.c | 220 int send, sidx = 1; in model256_update() local 241 while (sidx <= send) in model256_update() 242 m->secondary[sidx++] = i - 1; in model256_update() 244 while (sidx < m->sec_size) in model256_update() 245 m->secondary[sidx++] = 255; in model256_update()
|
D | atrac9dec.c | 971 const float sidx = ( i + 0.5f) / len; in atrac9_decode_init() local 973 const float s_c = sinf(sidx*M_PI - M_PI_2)*0.5f + 0.5f; in atrac9_decode_init()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/isoff/ |
D | gstisoff.c | 800 parser->sidx.entries = NULL; in gst_isoff_sidx_parser_init() 801 parser->sidx.entries_count = 0; in gst_isoff_sidx_parser_init() 807 g_free (parser->sidx.entries); in gst_isoff_sidx_parser_clear() 843 parser->sidx.version = gst_byte_reader_get_uint8_unchecked (reader); in gst_isoff_sidx_parser_parse() 844 parser->sidx.flags = gst_byte_reader_get_uint24_le_unchecked (reader); in gst_isoff_sidx_parser_parse() 850 if (remaining < 12 + (parser->sidx.version == 0 ? 8 : 16)) { in gst_isoff_sidx_parser_parse() 854 parser->sidx.ref_id = gst_byte_reader_get_uint32_be_unchecked (reader); in gst_isoff_sidx_parser_parse() 855 parser->sidx.timescale = gst_byte_reader_get_uint32_be_unchecked (reader); in gst_isoff_sidx_parser_parse() 856 if (parser->sidx.version == 0) { in gst_isoff_sidx_parser_parse() 857 parser->sidx.earliest_pts = in gst_isoff_sidx_parser_parse() [all …]
|
D | gstisoff.h | 282 GstSidxBox sidx; member
|
/third_party/mesa3d/src/mesa/main/ |
D | uniform_query.cpp | 411 int sidx = i * dmul; in _mesa_get_uniform() local 417 sidx = column * align(components, 2) + row; in _mesa_get_uniform() 424 dst[didx].f = _mesa_half_to_float(((uint16_t*)src)[sidx]); in _mesa_get_uniform() 427 dst[didx].f = (float) src[sidx].u; in _mesa_get_uniform() 432 dst[didx].f = (float) src[sidx].i; in _mesa_get_uniform() 435 dst[didx].f = src[sidx].i ? 1.0f : 0.0f; in _mesa_get_uniform() 439 memcpy(&tmp, &src[sidx].f, sizeof(tmp)); in _mesa_get_uniform() 445 memcpy(&tmp, &src[sidx].u, sizeof(tmp)); in _mesa_get_uniform() 451 memcpy(&tmp, &src[sidx].i, sizeof(tmp)); in _mesa_get_uniform() 464 double f = _mesa_half_to_float(((uint16_t*)src)[sidx]); in _mesa_get_uniform() [all …]
|
/third_party/ffmpeg/tests/ref/fate/ |
D | movenc | 76 write_data len 884, time 0, type sync atom sidx 77 write_data len 876, time 1000000, type sync atom sidx 82 write_data len 876, time 1000000, type sync atom sidx 86 write_data len 876, time 1000000, type sync atom sidx 91 write_data len 988, time -33333, type sync atom sidx 92 write_data len 996, time 966667, type sync atom sidx 97 write_data len 996, time 966667, type sync atom sidx 102 write_data len 1004, time -33333, type sync atom sidx 103 write_data len 996, time 966667, type sync atom sidx 108 write_data len 996, time 966667, type sync atom sidx [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/dash/ |
D | gstdashdemux.c | 427 #define SIDX(s) (&(s)->sidx_parser.sidx) 1403 GstSidxBox *sidx = SIDX (dashstream); in gst_dash_demux_stream_sidx_seek() local 1405 gint idx = sidx->entries_count; in gst_dash_demux_stream_sidx_seek() 1408 if (sidx->entries_count == 0) in gst_dash_demux_stream_sidx_seek() 1412 gst_util_array_binary_search (sidx->entries, sidx->entries_count, in gst_dash_demux_stream_sidx_seek() 1423 GstSidxBoxEntry *last_entry = &sidx->entries[sidx->entries_count - 1]; in gst_dash_demux_stream_sidx_seek() 1427 if (ts < sidx->entries[0].pts in gst_dash_demux_stream_sidx_seek() 1428 && ts + 250 * GST_MSECOND >= sidx->entries[0].pts) in gst_dash_demux_stream_sidx_seek() 1429 entry = &sidx->entries[0]; in gst_dash_demux_stream_sidx_seek() 1437 idx = entry - sidx->entries; in gst_dash_demux_stream_sidx_seek() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | GlobalizationPreferences.java | 591 int sidx = result.indexOf('('); in getDisplayName() local 593 if (sidx != -1 && eidx != -1 && (eidx - sidx) == 3) { in getDisplayName() 594 teststr = result.substring(sidx+1, eidx); in getDisplayName()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/ |
D | GlobalizationPreferences.java | 589 int sidx = result.indexOf('('); in getDisplayName() local 591 if (sidx != -1 && eidx != -1 && (eidx - sidx) == 3) { in getDisplayName() 592 teststr = result.substring(sidx+1, eidx); in getDisplayName()
|
/third_party/pulseaudio/src/pulsecore/ |
D | cli-text.c | 139 uint32_t sidx; in pa_card_list_to_string() local 171 PA_IDXSET_FOREACH(sink, card->sinks, sidx) in pa_card_list_to_string() 177 PA_IDXSET_FOREACH(source, card->sources, sidx) in pa_card_list_to_string()
|
/third_party/python/Objects/ |
D | rangeobject.c | 603 PyObject *sidx = PyNumber_FloorDivide(idx, r->step); in range_index() local 605 return sidx; in range_index()
|
/third_party/libffi/src/ |
D | dlmalloc.c | 2792 bindex_t sidx = small_index(size); in bin_find() local 2793 sbinptr b = smallbin_at(m, sidx); in bin_find() 2794 if (smallmap_is_marked(m, sidx)) { in bin_find()
|
/third_party/flutter/skia/third_party/externals/sdl/src/stdlib/ |
D | SDL_malloc.c | 2806 bindex_t sidx = small_index(size); in bin_find() local 2807 sbinptr b = smallbin_at(m, sidx); in bin_find() 2808 if (smallmap_is_marked(m, sidx)) { in bin_find()
|
/third_party/boost/libs/container/src/ |
D | dlmalloc_2_8_6.c | 3385 bindex_t sidx = small_index(size); in bin_find() local 3386 sbinptr b = smallbin_at(m, sidx); in bin_find() 3387 if (smallmap_is_marked(m, sidx)) { in bin_find()
|
/third_party/ffmpeg/doc/ |
D | muxers.texi | 1538 Skip writing of sidx atom. When bitrate overhead due to sidx atom is high, 1539 this option could be used for cases where sidx atom is not mandatory.
|
/third_party/mesa3d/src/amd/llvm/ |
D | ac_nir_to_llvm.c | 4393 unsigned sidx = deref_instr->strct.index; in get_sampler_desc_internal() local 4395 constant_index += glsl_get_struct_location_offset(deref_instr->type, sidx); in get_sampler_desc_internal()
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 59247 the start position of the current sidx entry. 59755 (i.e., earliest presentation time specified by sidx box is not zero), 59756 the initial sidx position shouldn't be zero. Since we cannot define 59757 exact sidx position until parsing sidx box, set the value to unknown. 61886 dashdemux: When clearing the sidx parser, reset all state 61912 SIDX's base offset (i.e., byte offset of SIDX + sidx.first_offset) 61931 If target seek position is outside of the range of sidx entries, 61938 dashdemux: Add assertion for preventing of access after the end of the sidx entries array 64260 dashdemux: Add first_offset of sidx box to base offset 64261 sidx has "first_offset" syntax which represents the distance in bytes [all …]
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 44850 qtdemux: Initial 'sidx' atom parsing support 44851 Parse the 'sidx' atom and update the total duration according to the
|