Searched refs:metadata (Results 76 - 87 of 87) sorted by relevance

1234

/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp582 // don't log loud error if component does not support metadata mode on the output
585 CLOGW("component does not support metadata mode; using fallback");
875 VideoGrallocMetadata &metadata = *(VideoGrallocMetadata *)(data->data()); local
876 metadata.eType = kMetadataBufferTypeGrallocSource;
877 metadata.pHandle = graphicBuffer == NULL ? NULL : graphicBuffer->handle;
880 VideoNativeMetadata &metadata = *(VideoNativeMetadata *)(data->data()); local
881 metadata.eType = kMetadataBufferTypeANWBuffer;
882 metadata.pBuffer = graphicBuffer == NULL ? NULL : graphicBuffer->getNativeBuffer();
883 metadata.nFenceFd = -1;
928 VideoNativeHandleMetadata &metadata local
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp79 const CameraMetadata& metadata = mChars->getInternalData(); local
80 camera_metadata_ro_entry entry = metadata.find(ANDROID_REQUEST_PARTIAL_RESULT_COUNT);
88 entry = metadata.find(ANDROID_LENS_INFO_SHADING_MAP_SIZE);
1276 const CameraMetadata& metadata,
1306 CameraMetadata metadataCopy = metadata;
1275 onResultReceived( const CameraMetadata& metadata, const CaptureResultExtras& resultExtras) argument
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java271 * Set the session to use for metadata and transport controls. The dialog
296 MediaMetadataCompat metadata = mMediaController == null ? null
298 mDescription = metadata == null ? null : metadata.getDescription();
304 * Gets the session to use for metadata and transport controls.
575 * Updates the height of views and hide artwork or metadata if space is limited.
1084 public void onMetadataChanged(MediaMetadataCompat metadata) { argument
1085 mDescription = metadata == null ? null : metadata.getDescription();
/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp797 Parcel *metadata = parcelForJavaObject(env, reply); local
799 if (metadata == NULL ) {
804 metadata->freeData();
805 // On return metadata is positioned at the beginning of the
806 // metadata. Note however that the parcel actually starts with the
809 if (media_player->getMetadata(update_only, apply_filter, metadata) == OK) {
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp101 bccAssert("Could not extract RS pragma metadata for module!");
119 // embed build checksum metadata into the source
318 // Read and store metadata before linking the modules together
319 std::vector<bcinfo::MetadataExtractor*> metadata; local
322 ALOGE("Cannot extract metadata from module");
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java450 pw.println(indent + "metadata:" + getShortMetadataString());
774 public void setMetadata(MediaMetadata metadata) { argument
776 MediaMetadata temp = metadata == null ? null : new MediaMetadata.Builder(metadata)
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaControllerCompat.java45 * receive updates from the session, such as metadata and play state changes.
141 * Get the current metadata for this session.
386 * Override to handle changes to the current metadata.
388 * @param metadata The current metadata for the session or null if none.
391 public void onMetadataChanged(MediaMetadataCompat metadata) { argument
486 public void onMetadataChanged(MediaMetadataCompat metadata) throws RemoteException { argument
487 mHandler.post(MessageHandler.MSG_UPDATE_METADATA, metadata, null);
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp224 status_t MediaPlayer::getMetadata(bool update_only, bool apply_filter, Parcel *metadata) argument
231 return mPlayer->getMetadata(update_only, apply_filter, metadata);
895 ALOGV("Received timed metadata message");
/frameworks/base/core/java/android/hardware/radio/
H A DRadioManager.java1148 boolean digital, int signalStrength, RadioMetadata metadata) {
1155 mMetadata = metadata;
1196 * null if no metadata have been received
1147 ProgramInfo(int channel, int subChannel, boolean tuned, boolean stereo, boolean digital, int signalStrength, RadioMetadata metadata) argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java514 public Bundle metadata; field in class:RemotePrintDocument.RemotePrintDocumentInfo
792 mDocument.metadata = mMetadata;
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp98 // FIXME: Move all the metadata related function in the Metadata.cpp
108 // | metadata type 1 |
110 // | metadata type 2 |
114 // | metadata type n |
118 // @param[out] filter On exit contains the list of metadata type to be
178 // @param filter Of metadata type.
940 media::Metadata metadata(reply);
942 metadata.appendHeader();
946 metadata.resetParcel();
953 // would be when all the metadata ar
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java504 public void onMetadataChanged(MediaMetadata metadata) {
505 super.onMetadataChanged(metadata);
506 if (DEBUG_MEDIA) Log.v(TAG, "DEBUG_MEDIA: onMetadataChanged: " + metadata);
507 mMediaMetadata = metadata;
1984 Log.v(TAG, "DEBUG_MEDIA: insert listener, receive metadata: "
2059 * Refresh or remove lockscreen artwork from media metadata or the lockscreen wallpaper.
2073 + " metadata=" + mMediaMetadata
2174 // the metadata isn't there to support it

Completed in 430 milliseconds

1234