Searched refs:video (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
H A DSlideViewInterface.java33 void setVideo(String name, Uri video); argument
H A DSlideshowPresenter.java219 * @param video
222 protected void presentVideo(SlideViewInterface view, VideoModel video, argument
225 view.setVideo(video.getSrc(), video.getUri());
235 view.setVideoVisibility(video.isVisible());
237 MediaAction action = video.getCurrentAction();
245 view.seekVideo(video.getSeekTo());
H A DSlideshowEditor.java175 VideoModel video = new VideoModel(mContext, newVideo,
178 slide.add(video);
179 slide.updateDuration(video.getDuration());
H A DMmsThumbnailPresenter.java74 // Right now we're only handling image and video loaded callbacks.
89 private void presentVideoThumbnail(SlideViewInterface view, VideoModel video) { argument
90 mItemLoadedFuture = video.loadThumbnailBitmap(mImageLoadedCallback);
H A DVideoAttachmentView.java36 * This class provides an embedded editor/viewer of video attachment.
89 public void setVideo(String name, Uri video) { argument
91 Bitmap bitmap = createVideoThumbnail(mContext, video);
113 // Assume this is a corrupt video file.
H A DBasicSlideEditorView.java131 public void setVideo(String name, Uri video) { argument
133 Bitmap bitmap = VideoAttachmentView.createVideoThumbnail(mContext, video);
H A DImageAttachmentView.java101 public void setVideo(String name, Uri video) { argument
H A DSlideListItemView.java114 public void setVideo(String name, Uri video) { argument
123 // TODO: get a thumbnail from the video
139 // Stopping video is not needed in this view.
H A DSlideshowAttachmentView.java103 public void setVideo(String name, Uri video) { argument
104 // TODO: get a thumbnail from the video
H A DSlideView.java139 public void setVideo(String name, Uri video) { argument
150 Log.v(TAG, "Changing video source to " + video);
153 mVideoView.setVideoURI(video);
336 Log.v(TAG, "Starting video playback.");
345 Log.v(TAG, "Stopping video playback.");
354 Log.v(TAG, "Pausing video playback.");
364 Log.v(TAG, "Seeking video playback to " + seekTo);
451 * The better UI for the MMS conformance message could be putting the image/video
455 * is that the AbsoluteLayout has ability to play image and video i
[all...]
H A DAudioAttachmentView.java151 public void setVideo(String name, Uri video) { argument
/packages/apps/LegacyCamera/src/com/android/camera/
H A DThumbnail.java157 Media video = getLastVideoThumbnail(resolver);
158 if (image == null && video == null) return null;
162 // If there is only image or video, get its thumbnail. If both exist,
164 if (image != null && (video == null || image.dateTaken >= video.dateTaken)) {
169 bitmap = Video.Thumbnails.getThumbnail(resolver, video.id,
171 lastMedia = video;
275 // Assume this is a corrupt video file
277 // Assume this is a corrupt video file.

Completed in 107 milliseconds