HomeSort by relevance Sort by last modified time
    Searched defs:MediaItem (Results 1 - 2 of 2) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaItem.java 26 // MediaItem represents an image or a video item.
27 public abstract class MediaItem extends MediaObject {
56 public MediaItem(Path path, long version) {
  /frameworks/base/media/java/android/media/videoeditor/
MediaItem.java 37 * This abstract class describes the base class for any MediaItem. Objects are
41 public abstract class MediaItem {
74 * The unique id of the MediaItem
79 * The name of the file associated with the MediaItem
121 * @param mediaItemId The MediaItem id
129 protected MediaItem(VideoEditor editor, String mediaItemId, String filename,
132 throw new IllegalArgumentException("MediaItem : filename is null");
171 * If aspect ratio of the MediaItem is different from the aspect ratio of
608 if (!(object instanceof MediaItem)) {
611 return mUniqueId.equals(((MediaItem)object).mUniqueId)
    [all...]

Completed in 222 milliseconds