Home
last modified time | relevance | path

Searched refs:fullRange (Results 1 – 10 of 10) sorted by relevance

/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DAsyncListUtil.java577 final int fullRange = range[1] - range[0] + 1; in extendRangeInto() local
578 final int halfRange = fullRange / 2; in extendRangeInto()
579 outRange[0] = range[0] - (scrollHint == HINT_SCROLL_DESC ? fullRange : halfRange); in extendRangeInto()
580 outRange[1] = range[1] + (scrollHint == HINT_SCROLL_ASC ? fullRange : halfRange); in extendRangeInto()
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DColorUtils.h133 int32_t *primaries, int32_t *transfer, int32_t *coeffs, bool *fullRange);
136 int32_t primaries, int32_t transfer, int32_t coeffs, bool fullRange,
/frameworks/av/media/libstagefright/webm/
DWebmElement.cpp392 bool fullRange; in VideoTrackEntry() local
394 aspects, &primaries, &transfer, &coeffs, &fullRange); in VideoTrackEntry()
405 colorInfo.push_back(new WebmUnsigned(kMkvRange, fullRange ? 2 : 1)); in VideoTrackEntry()
/frameworks/av/media/libstagefright/foundation/
DColorUtils.cpp313 int32_t *primaries, int32_t *transfer, int32_t *coeffs, bool *fullRange) { in convertCodecColorAspectsToIsoAspects() argument
326 *fullRange = aspects.mRange == ColorAspects::RangeFull; in convertCodecColorAspectsToIsoAspects()
331 int32_t primaries, int32_t transfer, int32_t coeffs, bool fullRange, in convertIsoColorAspectsToCodecAspects() argument
342 aspects.mRange = fullRange ? ColorAspects::RangeFull : ColorAspects::RangeLimited; in convertIsoColorAspectsToCodecAspects()
/frameworks/av/media/libstagefright/codecs/hevcdec/
DSoftHEVC.cpp205 bool fullRange = s_ctl_get_vui_params_op.u1_video_full_range_flag; in getVUIParams() local
209 primaries, transfer, coeffs, fullRange, colorAspects); in getVUIParams()
/frameworks/av/media/libstagefright/codecs/avcdec/
DSoftAVCDec.cpp368 bool fullRange = s_ctl_get_vui_params_op.u1_video_full_range_flag; in getVUIParams() local
372 primaries, transfer, coeffs, fullRange, colorAspects); in getVUIParams()
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
DSoftMPEG2.cpp491 bool fullRange = false; // mpeg2 video has limited range. in getSeqInfo() local
495 primaries, transfer, coeffs, fullRange, colorAspects); in getSeqInfo()
/frameworks/av/media/extractors/mkv/
DMatroskaExtractor.cpp1261 bool fullRange = false; // default in getColorInformation() local
1277 fullRange = color->range == 2 /* MKV fullRange */; in getColorInformation()
1283 primaries, transfer, coeffs, fullRange, aspects); in getColorInformation()
/frameworks/av/media/libstagefright/
DMPEG4Writer.cpp3741 bool fullRange; in writeColrBox() local
3743 aspects, &primaries, &transfer, &coeffs, &fullRange); in writeColrBox()
3749 mOwner->writeInt8(int8_t(fullRange ? 0x80 : 0x0)); in writeColrBox()
/frameworks/av/media/extractors/mp4/
DMPEG4Extractor.cpp3157 bool fullRange = (type == FOURCC('n', 'c', 'l', 'x')) && (buffer[10] & 128); in parseColorInfo() local
3161 primaries, transfer, coeffs, fullRange, aspects); in parseColorInfo()