Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/gav1/
DC2SoftGav1Dec.h78 uint8_t fullRange; member
85 fullRange(C2Color::RANGE_UNSPECIFIED) { } in VuiColorAspects()
89 && fullRange == o.fullRange;
DC2SoftGav1Dec.cpp718 vuiColorAspects.fullRange = buffer->color_range; in getVuiParams()
727 vuiColorAspects.fullRange, sfAspects); in getVuiParams()
/frameworks/av/media/codec2/components/dav1d/
DC2SoftDav1dDec.h85 uint8_t fullRange; member
92 fullRange(C2Color::RANGE_UNSPECIFIED) {} in VuiColorAspects()
96 fullRange == o.fullRange;
DC2SoftDav1dDec.cpp889 vuiColorAspects.fullRange = picture->seq_hdr->color_range; in getVuiParams()
907 vuiColorAspects.fullRange, sfAspects); in getVuiParams()
/frameworks/av/media/codec2/components/hevc/
DC2SoftHevcDec.h129 uint8_t fullRange; member
133 : primaries(2), transfer(2), coeffs(2), fullRange(0) { } in VuiColorAspects()
137 && fullRange == o.fullRange;
DC2SoftHevcDec.cpp599 vuiColorAspects.fullRange = s_get_vui_params_op.u1_video_full_range_flag; in getVuiParams()
608 vuiColorAspects.fullRange, sfAspects); in getVuiParams()
/frameworks/av/media/codec2/components/mpeg2/
DC2SoftMpeg2Dec.h169 uint8_t fullRange; member
173 : primaries(2), transfer(2), coeffs(2), fullRange(0) { } in VuiColorAspects()
177 && fullRange == o.fullRange;
DC2SoftMpeg2Dec.cpp668 vuiColorAspects.fullRange = false; // mpeg2 video has limited range. in getSeqInfo()
677 vuiColorAspects.fullRange, sfAspects); in getSeqInfo()
/frameworks/av/media/codec2/components/avc/
DC2SoftAvcDec.h170 uint8_t fullRange; member
174 : primaries(2), transfer(2), coeffs(2), fullRange(0) { } in VuiColorAspects()
178 && fullRange == o.fullRange;
DC2SoftAvcDec.cpp605 vuiColorAspects.fullRange = s_get_vui_params_op.u1_video_full_range_flag; in getVuiParams()
614 vuiColorAspects.fullRange, sfAspects); in getVuiParams()
/frameworks/av/media/module/foundation/include/media/stagefright/foundation/
DColorUtils.h136 int32_t *primaries, int32_t *transfer, int32_t *coeffs, bool *fullRange);
139 int32_t primaries, int32_t transfer, int32_t coeffs, bool fullRange,
142 int32_t primaries, int32_t isotransfer, int32_t coeffs, bool fullRange,
/frameworks/av/media/module/foundation/tests/colorutils/
DColorUtilsTest.cpp221 bool fullRange = false; in TEST_P() local
223 &matrixCoeffs, &fullRange); in TEST_P()
227 fullRange, returnedAspects); in TEST_P()
492 bool fullRange = false; in TEST() local
497 &colorMatrixCoeffs, &fullRange); in TEST()
500 colorMatrixCoeffs, fullRange, returnedAspects); in TEST()
512 fullRange = false; in TEST()
515 colorMatrixCoeffs, fullRange, returnedAspects); in TEST()
/frameworks/av/media/module/foundation/
DColorUtils.cpp320 int32_t *primaries, int32_t *transfer, int32_t *coeffs, bool *fullRange) { in convertCodecColorAspectsToIsoAspects() argument
333 *fullRange = aspects.mRange == ColorAspects::RangeFull; in convertCodecColorAspectsToIsoAspects()
338 int32_t primaries, int32_t transfer, int32_t coeffs, bool fullRange, in convertIsoColorAspectsToCodecAspects() argument
349 aspects.mRange = fullRange ? ColorAspects::RangeFull : ColorAspects::RangeLimited; in convertIsoColorAspectsToCodecAspects()
353 int32_t primaries, int32_t intransfer, int32_t coeffs, bool fullRange, in convertIsoColorAspectsToPlatformAspects() argument
356 convertIsoColorAspectsToCodecAspects(primaries, intransfer, coeffs, fullRange, aspects); in convertIsoColorAspectsToPlatformAspects()
/frameworks/av/media/libstagefright/webm/
DWebmElement.cpp393 bool fullRange; in VideoTrackEntry() local
395 aspects, &primaries, &transfer, &coeffs, &fullRange); in VideoTrackEntry()
406 colorInfo.push_back(new WebmUnsigned(kMkvRange, fullRange ? 2 : 1)); in VideoTrackEntry()
/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/module/extractors/mkv/
DMatroskaExtractor.cpp1826 bool fullRange = false; // default in getColorInformation() local
1841 fullRange = color->range == 2 /* MKV fullRange */; in getColorInformation()
1848 primaries, isotransfer, coeffs, fullRange, in getColorInformation()
/frameworks/av/media/libstagefright/
DMPEG4Writer.cpp4531 bool fullRange; in writeColrBox() local
4538 aspects, &primaries, &transfer, &coeffs, &fullRange); in writeColrBox()
4544 mOwner->writeInt8(int8_t(fullRange ? 0x80 : 0x0)); in writeColrBox()
/frameworks/av/media/module/extractors/mp4/
DMPEG4Extractor.cpp4211 bool fullRange = (type == FOURCC("nclx")) && (buffer[10] & 128); in parseColorInfo() local
4217 primaries, isotransfer, coeffs, fullRange, in parseColorInfo()