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

  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AbstractGalleryActivity.java 40 import com.android.gallery3d.data.MediaItem;
221 clearBitmapPool(MediaItem.getMicroThumbPool());
222 clearBitmapPool(MediaItem.getThumbPool());
224 MediaItem.getBytesBufferPool().clear();
  /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 {
61 public MediaItem(Path path, long version) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TiledScreenNail.java 24 import com.android.gallery3d.data.MediaItem;
107 recycleBitmap(MediaItem.getThumbPool(), mBitmap);
144 recycleBitmap(MediaItem.getThumbPool(), mBitmap);
  /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 83 milliseconds