Home
last modified time | relevance | path

Searched refs:aspects (Results 1 – 25 of 50) sorted by relevance

12

/frameworks/av/media/libstagefright/foundation/
DColorUtils.cpp231 int32_t range, int32_t standard, int32_t transfer, ColorAspects &aspects) { in convertPlatformColorAspectsToCodecAspects() argument
232 status_t res1 = unwrapColorAspectsFromColorRange(range, &aspects.mRange); in convertPlatformColorAspectsToCodecAspects()
234 standard, &aspects.mPrimaries, &aspects.mMatrixCoeffs); in convertPlatformColorAspectsToCodecAspects()
235 status_t res3 = unwrapColorAspectsFromColorTransfer(transfer, &aspects.mTransfer); in convertPlatformColorAspectsToCodecAspects()
241 const ColorAspects &aspects, int32_t *range, int32_t *standard, int32_t *transfer) { in convertCodecColorAspectsToPlatformAspects() argument
242 *range = wrapColorAspectsIntoColorRange(aspects.mRange); in convertCodecColorAspectsToPlatformAspects()
243 *standard = wrapColorAspectsIntoColorStandard(aspects.mPrimaries, aspects.mMatrixCoeffs); in convertCodecColorAspectsToPlatformAspects()
244 *transfer = wrapColorAspectsIntoColorTransfer(aspects.mTransfer); in convertCodecColorAspectsToPlatformAspects()
245 if (isValid(aspects.mRange) && isValid(aspects.mPrimaries) in convertCodecColorAspectsToPlatformAspects()
246 && isValid(aspects.mMatrixCoeffs) && isValid(aspects.mTransfer)) { in convertCodecColorAspectsToPlatformAspects()
[all …]
/frameworks/av/include/media/stagefright/foundation/
DColorUtils.h128 int32_t range, int32_t standard, int32_t transfer, ColorAspects &aspects);
130 const ColorAspects &aspects, int32_t *range, int32_t *standard, int32_t *transfer);
134 const ColorAspects &aspects,
139 ColorAspects &aspects);
143 ColorAspects &aspects, int32_t width, int32_t height);
148 static android_dataspace getDataSpaceForColorAspects(ColorAspects &aspects, bool mayExpand);
156 ColorAspects &aspects, const ColorAspects &orig, bool usePlatformAspects = false);
166 static void getColorAspectsFromFormat(const sp<AMessage> &format, ColorAspects &aspects);
171 const ColorAspects &aspects, sp<AMessage> &format, bool force = false);
/frameworks/av/media/libstagefright/omx/
DGraphicBufferSource.cpp515 ColorAspects aspects = mColorAspects; // initially requested aspects in onDataSpaceChanged_l() local
533 aspects = params.sAspects; in onDataSpaceChanged_l()
541 params.sAspects = aspects; in onDataSpaceChanged_l()
551 params.sAspects, aspects)) { in onDataSpaceChanged_l()
561 aspects.mRange, asString(aspects.mRange), in onDataSpaceChanged_l()
562 aspects.mPrimaries, asString(aspects.mPrimaries), in onDataSpaceChanged_l()
563 aspects.mMatrixCoeffs, asString(aspects.mMatrixCoeffs), in onDataSpaceChanged_l()
564 aspects.mTransfer, asString(aspects.mTransfer), in onDataSpaceChanged_l()
574 (aspects.mRange << 24) | (aspects.mPrimaries << 16) in onDataSpaceChanged_l()
575 | (aspects.mMatrixCoeffs << 8) | aspects.mTransfer); in onDataSpaceChanged_l()
[all …]
DGraphicBufferSource.h152 void setColorAspects(const ColorAspects &aspects);
DOMXNodeInstance.cpp1537 ColorAspects aspects; in setInternalOption() local
1538 if (!getInternalOption(data, size, &aspects)) { in setInternalOption()
1543 bufferSource->setColorAspects(aspects); in setInternalOption()
/frameworks/av/media/libstagefright/webm/
DWebmElement.cpp381 ColorAspects aspects; in VideoTrackEntry() local
382 aspects.mPrimaries = ColorAspects::PrimariesUnspecified; in VideoTrackEntry()
383 aspects.mTransfer = ColorAspects::TransferUnspecified; in VideoTrackEntry()
384 aspects.mMatrixCoeffs = ColorAspects::MatrixUnspecified; in VideoTrackEntry()
385 aspects.mRange = ColorAspects::RangeUnspecified; in VideoTrackEntry()
386 bool havePrimaries = meta->findInt32(kKeyColorPrimaries, (int32_t*)&aspects.mPrimaries); in VideoTrackEntry()
387 bool haveTransfer = meta->findInt32(kKeyTransferFunction, (int32_t*)&aspects.mTransfer); in VideoTrackEntry()
388 bool haveCoeffs = meta->findInt32(kKeyColorMatrix, (int32_t*)&aspects.mMatrixCoeffs); in VideoTrackEntry()
389 bool haveRange = meta->findInt32(kKeyColorRange, (int32_t*)&aspects.mRange); in VideoTrackEntry()
394 aspects, &primaries, &transfer, &coeffs, &fullRange); in VideoTrackEntry()
/frameworks/base/docs/html/training/
Ddistribute.jd8 <p>These classes focus on the business aspects of your app strategy, including techniques
Dbest-ui.jd10 different layouts for different devices, create custom UI widgets, and even control aspects
/frameworks/av/media/libstagefright/matroska/
DMatroskaExtractor.cpp1111 ColorAspects aspects; in getColorInformation() local
1113 primaries, transfer, coeffs, fullRange, aspects); in getColorInformation()
1114 meta->setInt32(kKeyColorPrimaries, aspects.mPrimaries); in getColorInformation()
1115 meta->setInt32(kKeyTransferFunction, aspects.mTransfer); in getColorInformation()
1116 meta->setInt32(kKeyColorMatrix, aspects.mMatrixCoeffs); in getColorInformation()
1118 kKeyColorRange, rangeSpecified ? aspects.mRange : ColorAspects::RangeUnspecified); in getColorInformation()
/frameworks/av/media/libstagefright/
DACodec.cpp3463 ColorAspects &aspects = params.sAspects; in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace() local
3466 getColorAspectsFromFormat(mConfigFormat, aspects); in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3469 setDefaultCodecColorAspectsIfNeeded(aspects, width, height); in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3471 setColorAspectsIntoFormat(aspects, mInputFormat); in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3472 setColorAspectsIntoFormat(aspects, mOutputFormat); in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3475 ColorAspects origAspects = aspects; in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3479 if (err != OK || !ColorUtils::checkIfAspectsChangedAndUnspecifyThem(aspects, origAspects)) { in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3487 aspects = origAspects; // restore desired color aspects in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
3495 "android._color-aspects", ABuffer::CreateAsCopy(&aspects, sizeof(aspects))); in setInitialColorAspectsForVideoEncoderSurfaceAndGetDataSpace()
5141 void ACodec::onDataSpaceChanged(android_dataspace dataSpace, const ColorAspects &aspects) { in onDataSpaceChanged() argument
[all …]
DMPEG4Writer.cpp2965 ColorAspects aspects; in writeColrBox() local
2966 memset(&aspects, 0, sizeof(aspects)); in writeColrBox()
2968 if (mMeta->findInt32(kKeyColorPrimaries, (int32_t*)&aspects.mPrimaries) in writeColrBox()
2969 | mMeta->findInt32(kKeyTransferFunction, (int32_t*)&aspects.mTransfer) in writeColrBox()
2970 | mMeta->findInt32(kKeyColorMatrix, (int32_t*)&aspects.mMatrixCoeffs) in writeColrBox()
2971 | mMeta->findInt32(kKeyColorRange, (int32_t*)&aspects.mRange)) { in writeColrBox()
2975 aspects, &primaries, &transfer, &coeffs, &fullRange); in writeColrBox()
DMPEG4Extractor.cpp2798 ColorAspects aspects; in parseColorInfo() local
2800 primaries, transfer, coeffs, fullRange, aspects); in parseColorInfo()
2804 mLastTrack->meta->setInt32(kKeyColorPrimaries, aspects.mPrimaries); in parseColorInfo()
2805 mLastTrack->meta->setInt32(kKeyTransferFunction, aspects.mTransfer); in parseColorInfo()
2806 mLastTrack->meta->setInt32(kKeyColorMatrix, aspects.mMatrixCoeffs); in parseColorInfo()
2807 mLastTrack->meta->setInt32(kKeyColorRange, aspects.mRange); in parseColorInfo()
/frameworks/base/docs/html/guide/practices/app-design/
Dindex.jd6 …started building great applications more quickly, They discuss important aspects of application de…
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
DARM_DELIVERY.TXT27 consistent across its included aspects and be ready for general deployment.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
DARM_DELIVERY.TXT27 consistent across its included aspects and be ready for general deployment.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
DARM_DELIVERY.TXT27 consistent across its included aspects and be ready for general deployment.
/frameworks/base/docs/html/ndk/guides/audio/
Dfloating-point.jd95 <p>The following article provides information on those aspects of floating-point that have a
/frameworks/base/docs/html/training/wearables/watch-faces/
Ddrawing.jd31 the watch face service. Many aspects of the
332 <p>Android Wear enables you to configure the following aspects of the system UI when your watch
343 <p>To configure these aspects of the system UI, create a
Ddesigning.jd78 <dd>You can let users configure some aspects of your design (like colors and sizes) on the
Dconfiguration.jd87 the main aspects of your watch face.</p>
/frameworks/base/docs/html/guide/topics/graphics/
Dview-animation.jd10 other common aspects of an animation.
/frameworks/av/include/media/stagefright/
DACodec.h427 void onDataSpaceChanged(android_dataspace dataSpace, const ColorAspects &aspects);
/frameworks/base/docs/html/training/tv/publishing/
Dchecklist.jd36 This checklist covers the main aspects of development for both apps and games and provides
/frameworks/base/docs/html/guide/practices/
Dscreens-support-1.5.jd141 specifically for extra large screens, to address usability aspects such as the location and size of
/frameworks/base/docs/html/guide/topics/text/
Dspell-checker-framework.jd136 <strong>Note:</strong> You must implement all aspects of spell checking as asynchronous and

12