HomeSort by relevance Sort by last modified time
    Searched refs:dbo (Results 1 - 5 of 5) sorted by null

  /frameworks/base/media/java/android/media/videoeditor/
TransitionAlpha.java 98 final BitmapFactory.Options dbo = new BitmapFactory.Options(); local
99 dbo.inJustDecodeBounds = true;
102 BitmapFactory.decodeFile(maskFilename, dbo);
104 mWidth = dbo.outWidth;
105 mHeight = dbo.outHeight;
MediaImageItem.java 124 final BitmapFactory.Options dbo = new BitmapFactory.Options(); local
125 dbo.inJustDecodeBounds = true;
126 BitmapFactory.decodeFile(filename, dbo);
128 mWidth = dbo.outWidth;
129 mHeight = dbo.outHeight;
935 final BitmapFactory.Options dbo = new BitmapFactory.Options(); local
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayTitleEditor.java 96 final BitmapFactory.Options dbo = new BitmapFactory.Options(); local
97 dbo.inJustDecodeBounds = true;
98 BitmapFactory.decodeResource(getResources(), R.drawable.effects_generic, dbo); local
99 mPreviewWidth = dbo.outWidth;
100 mPreviewHeight = dbo.outHeight;
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java 76 final BitmapFactory.Options dbo = new BitmapFactory.Options(); local
77 dbo.inJustDecodeBounds = true;
78 BitmapFactory.decodeFile(filename, dbo);
80 final int nativeWidth = dbo.outWidth;
81 final int nativeHeight = dbo.outHeight;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
VideoEditorHelper.java 134 final BitmapFactory.Options dbo = new BitmapFactory.Options(); local
135 dbo.inJustDecodeBounds = true;
136 dbo.outWidth = width;
137 dbo.outHeight = height;

Completed in 192 milliseconds