Searched defs:media (Results 301 - 318 of 318) sorted by relevance

<<111213

/frameworks/base/media/java/android/media/
H A DAudioSystem.java17 package android.media;
479 // helpers for android.media.AudioManager.getProperty(), see description there for meaning
H A DAudioTrack.java17 package android.media;
159 // to keep in sync with frameworks/av/include/media/AudioTrack.h
169 private final static String TAG = "android.media.AudioTrack";
325 * and media players in the same session and not to the output mix.
330 * with all other media players or audio tracks in the same session, otherwise a new session
1476 * {@link android.media.audiofx.EnvironmentalReverb}), retrieve its ID with
1477 * {@link android.media.audiofx.AudioEffect#getId()} and use it when calling
H A DClosedCaptionRenderer.java17 package android.media;
H A DMediaCodec.java17 package android.media;
21 import android.media.Image;
22 import android.media.Image.Plane;
23 import android.media.MediaCodecInfo;
24 import android.media.MediaCodecList;
25 import android.media.MediaCrypto;
26 import android.media.MediaFormat;
41 * MediaCodec class can be used to access low-level media codec, i.e.
224 * which may be due to media content corruption, hardware failure, resource exhaustion,
319 * initialization / codec specific data instead of media dat
[all...]
H A DMediaFocusControl.java17 package android.media;
35 import android.media.PlayerRecord.RemotePlaybackState;
73 /** Used to alter media button redirection when the phone is ringing. */
679 * No-op if the key code for keyEvent is not a valid media key
688 * No-op if the key code for keyEvent is not a valid media key
699 Log.e(TAG, "not dispatching invalid media key event " + keyEvent);
721 * Handles the dispatching of the media button events to the telephony package.
723 * @param keyEvent a non-null KeyEvent whose key code is one of the supported media buttons
745 * Handles the dispatching of the media button events to one of the registered listeners,
747 * @param keyEvent a non-null KeyEvent whose key code is one of the supported media button
[all...]
H A DMediaScanner.java17 package android.media;
438 private boolean mNoMedia; // flag to suppress file from appearing in media tables
608 // used to force sorting. The media provider will trim() before
1128 // media scanner removing them.
1138 // The user can delete them in the media player instead.
1272 // handle playlists last, after we know what media files are on the storage.
1294 mMediaProvider = mContext.getContentResolver().acquireProvider("media");
1304 // we only support playlists on external media
1346 // this might happen if the SD card is removed while the media scanner is running
1349 // this might happen if the SD card is removed while the media scanne
[all...]
H A DWebVttRenderer.java17 package android.media;
H A DMediaCodecInfo.java17 package android.media;
32 import static android.media.Utils.intersectSortedDistinctRanges;
33 import static android.media.Utils.sortDistinctRanges;
38 * Provides information about a given media codec available on the device. You can
92 * Query the media types supported by the codec.
307 * @param format media format with optional feature directives.
308 * @throws IllegalArgumentException if format is not a valid media format.
2123 * Defined in the OpenMAX IL specs, depending on the type of media
2130 * Defined in the OpenMAX IL specs, depending on the type of media
H A DMediaPlayer.java17 package android.media;
46 import android.media.AudioManager;
47 import android.media.MediaFormat;
48 import android.media.MediaTimeProvider;
49 import android.media.SubtitleController;
50 import android.media.SubtitleController.Anchor;
51 import android.media.SubtitleData;
52 import android.media.SubtitleTrack.RenderingWidget;
90 * <a href="{@docRoot}guide/topics/media/mediaplayer.html">Media Playback</a> developer guide.</p>
162 * {@link #setOnErrorListener(android.media
[all...]
H A DMediaRouter.java17 package android.media;
31 import android.media.session.MediaSession;
49 * MediaRouter allows applications to control the routing of media channels
56 * <p>The media router API is not thread-safe; all interactions with it must be
163 // Bind to the media router service.
272 // TODO: All of this should be managed by the media router service.
293 // Tell the media router service all about it.
344 Log.e(TAG, "Unable to unregister media router client.", ex);
357 Log.e(TAG, "Unable to register media router client.", ex);
372 Log.e(TAG, "Unable to publish media route
[all...]
H A DAudioManager.java17 package android.media;
28 import android.media.RemoteController.OnClientUpdateListener;
29 import android.media.audiopolicy.AudioPolicy;
30 import android.media.audiopolicy.AudioPolicyConfig;
31 import android.media.session.MediaController;
32 import android.media.session.MediaSession;
33 import android.media.session.MediaSessionLegacyHelper;
34 import android.media.session.MediaSessionManager;
80 public static final String ACTION_AUDIO_BECOMING_NOISY = "android.media.AUDIO_BECOMING_NOISY";
89 public static final String RINGER_MODE_CHANGED_ACTION = "android.media
[all...]
H A DAudioService.java17 package android.media;
20 import static android.media.AudioManager.RINGER_MODE_NORMAL;
21 import static android.media.AudioManager.RINGER_MODE_SILENT;
22 import static android.media.AudioManager.RINGER_MODE_VIBRATE;
49 import android.media.MediaPlayer.OnCompletionListener;
50 import android.media.MediaPlayer.OnErrorListener;
51 import android.media.audiopolicy.AudioPolicyConfig;
52 import android.media.session.MediaSessionLegacyHelper;
124 /** debug calls to media session apis */
242 private static final String SOUND_EFFECTS_PATH = "/media/audi
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java17 package android.media.tv;
105 "android.media.tv.action.BLOCKED_RATINGS_CHANGED";
112 "android.media.tv.action.PARENTAL_CONTROLS_ENABLED_CHANGED";
130 * "android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS" />
133 * android:name="android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS"
146 "android.media.tv.action.QUERY_CONTENT_RATING_SYSTEMS";
156 "android.media.tv.metadata.CONTENT_RATING_SYSTEMS";
483 * reinstalled or the media on which the newer version of TV input exists is
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java17 package com.android.server.media;
28 import android.media.AudioSystem;
29 import android.media.IMediaRouterClient;
30 import android.media.IMediaRouterService;
31 import android.media.MediaRouter;
32 import android.media.MediaRouterClientState;
33 import android.media.RemoteDisplayState;
34 import android.media.RemoteDisplayState.RemoteDisplayInfo;
57 * Provides a mechanism for discovering media routes and manages media playbac
[all...]
H A DMediaSessionRecord.java17 package com.android.server.media;
24 import android.media.AudioManager;
25 import android.media.AudioManagerInternal;
26 import android.media.AudioSystem;
27 import android.media.MediaDescription;
28 import android.media.MediaMetadata;
29 import android.media.Rating;
30 import android.media.VolumeProvider;
31 import android.media.session.ISession;
32 import android.media
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java17 package androidx.media.filterfw;
24 import android.media.CamcorderProfile;
25 import android.media.MediaRecorder;
H A DGraphRunner.java15 package androidx.media.filterfw;
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouter.java17 package android.support.v7.media;
36 import android.support.v4.media.VolumeProviderCompat;
37 import android.support.v4.media.session.MediaSessionCompat;
38 import android.support.v7.media.MediaRouteProvider.ProviderMetadata;
51 * MediaRouter allows applications to control the routing of media channels
55 * can query the media router about the currently selected route and its capabilities
59 * such as playing media.
62 * can publish new media routes to the media router.
64 * The media route
[all...]

Completed in 482 milliseconds

<<111213