Home
last modified time | relevance | path

Searched refs:segment (Results 1 – 8 of 8) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_aq_complexity.c31 int segment; in vp9_setup_in_frame_q_adj() local
49 for (segment = 1; segment < 2; segment++) { in vp9_setup_in_frame_q_adj()
53 in_frame_q_adj_ratio[segment]); in vp9_setup_in_frame_q_adj()
54 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q); in vp9_setup_in_frame_q_adj()
55 vp9_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta); in vp9_setup_in_frame_q_adj()
74 unsigned char segment; in vp9_select_in_frame_q_segment() local
77 segment = 0; in vp9_select_in_frame_q_segment()
85 segment = 1; in vp9_select_in_frame_q_segment()
87 segment = 0; in vp9_select_in_frame_q_segment()
99 cpi->segmentation_map[mi_offset + y * cm->mi_cols + x] = segment; in vp9_select_in_frame_q_segment()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
Dnestegg.c262 struct segment { struct
305 struct segment segment; member
451 E_MASTER(ID_SEEK_HEAD, TYPE_MASTER, struct segment, seek_head),
452 E_SINGLE_MASTER(ID_INFO, TYPE_MASTER, struct segment, info),
453 E_MASTER(ID_CLUSTER, TYPE_MASTER, struct segment, cluster),
454 E_SINGLE_MASTER(ID_TRACKS, TYPE_MASTER, struct segment, tracks),
455 E_SINGLE_MASTER(ID_CUES, TYPE_MASTER, struct segment, cues),
461 E_SINGLE_MASTER_O(ID_SEGMENT, TYPE_MASTER, nestegg, segment),
1188 if (ne_get_uint(ctx->segment.info.timecode_scale, &scale) != 0) in ne_get_timecode_scale()
1210 node = ctx->segment.tracks.track_entry.head; in ne_map_track_number_to_index()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dusage.dox162 After each segment is identified, it must be passed to the codec through the
175 Each requested segment is identified by an identifier unique to
182 and alignment of the requested segment. Alignment will always be a power of
187 The flags member of the segment structure indicates any requirements or
188 desires of the codec for the particular segment. The #VPX_CODEC_MEM_ZERO flag
189 indicates that the segment \ref MUST be zeroed by the application prior to
191 the segment will only be written into by the decoder, not read. If this flag
192 is not set, the application \ref MUST insure that the memory segment is
194 readable, for example. The #VPX_CODEC_MEM_FAST flag indicates that the segment
201 For each requested memory segment, the application must determine the
[all …]
Dusage_dx.dox31 not necessarily in the same memory segment as the data will be when it is
/hardware/libhardware_legacy/audio/
DAudioPolicyManagerBase.cpp3066 int segment = 0; in volIndexToAmpl() local
3070 segment = 0; in volIndexToAmpl()
3072 segment = 1; in volIndexToAmpl()
3074 segment = 2; in volIndexToAmpl()
3080 float decibels = curve[segment].mDBAttenuation + in volIndexToAmpl()
3081 ((float)(volIdx - curve[segment].mIndex)) * in volIndexToAmpl()
3082 ( (curve[segment+1].mDBAttenuation - in volIndexToAmpl()
3083 curve[segment].mDBAttenuation) / in volIndexToAmpl()
3084 ((float)(curve[segment+1].mIndex - in volIndexToAmpl()
3085 curve[segment].mIndex)) ); in volIndexToAmpl()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
Dmkvmuxer.hpp547 void set_time(const Segment& segment,
Dmkvmuxer.cpp1132 void Chapter::set_time(const Segment& segment, in set_time() argument
1135 const SegmentInfo* const info = segment.GetSegmentInfo(); in set_time()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
Dgtest-all.cc4732 const char* segment = data; in OutputXmlCDataSection() local
4735 const char* const next_segment = strstr(segment, "]]>"); in OutputXmlCDataSection()
4738 segment, static_cast<std::streamsize>(next_segment - segment)); in OutputXmlCDataSection()
4740 segment = next_segment + strlen("]]>"); in OutputXmlCDataSection()
4742 *stream << segment; in OutputXmlCDataSection()