HomeSort by relevance Sort by last modified time
    Searched refs:Video (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /packages/apps/Gallery/src/com/android/camera/
MovieViewControl.java 35 import android.provider.MediaStore.Video;
102 // make the video view handle keys for seeking and pausing
150 Video.VideoColumns.DURATION,
151 Video.VideoColumns.BOOKMARK};
196 values.put(Video.VideoColumns.BOOKMARK, Integer.toString(bookmark));
201 // resource such as a video attached to GMail.
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SecureAlbum.java 24 import android.provider.MediaStore.Video;
43 // The types of items in mAllItems. True is video and false is image.
49 {Images.Media.EXTERNAL_CONTENT_URI, Video.Media.EXTERNAL_CONTENT_URI};
63 || !isCameraBucketEmpty(Video.Media.EXTERNAL_CONTENT_URI));
172 Video.Media.EXTERNAL_CONTENT_URI, mMinVideoId, mMaxVideoId);
LocalAlbum.java 27 import android.provider.MediaStore.Video;
28 import android.provider.MediaStore.Video.VideoColumns;
81 mBaseUri = Video.Media.EXTERNAL_CONTENT_URI;
108 return MediaStore.Video.Media.EXTERNAL_CONTENT_URI.buildUpon()
179 baseUri = Video.Media.EXTERNAL_CONTENT_URI;
BucketHelper.java 11 import android.provider.MediaStore.Video;
29 // name of where an image or video is in. BUCKET_ID is a hash of the path
31 // details). MEDIA_TYPE is video, image, audio, etc.
34 // or video has the two columns (BUCKET_ID, MEDIA_TYPE). We define an
40 // In the meantime sort them by the timestamp of the latest image/video in
69 // bucket info from the Images and Video tables and then merge them
85 // When query from the Images or Video tables, we only need to group by BUCKET_ID.
132 jc, resolver, Video.Media.EXTERNAL_CONTENT_URI, buckets);
214 resolver, Video.Media.EXTERNAL_CONTENT_URI, bucketId);
LocalAlbumSet.java 22 import android.provider.MediaStore.Video;
36 // LocalAlbumSet lists all image or video albums in the local storage.
37 // The path should be "/local/image", "local/video" or "/local/all"
45 public static final Path PATH_VIDEO = Path.fromString("/local/video");
48 {Images.Media.EXTERNAL_CONTENT_URI, Video.Media.EXTERNAL_CONTENT_URI};
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
VideoThumbnailRequest.java 22 import android.provider.MediaStore.Video.Thumbnails;
34 * Class to request a video thumbnail.
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 38 import android.provider.MediaStore.Video;
92 mIsVideo = "video".equals(uri.getPathSegments().get(1));
95 ? Video.Thumbnails.EXTERNAL_CONTENT_URI
98 ? Video.Thumbnails.VIDEO_ID
180 Video.Thumbnails.MINI_KIND);
228 // both video/images table use the same column name "mini_thumb_magic"
MediaDocumentsProvider.java 48 import android.provider.MediaStore.Video;
49 import android.provider.MediaStore.Video.VideoColumns;
80 private static final String VIDEO_MIME_TYPES = joinNewline("video/*");
91 private static final String TYPE_VIDEO = "video";
197 Video.Media.EXTERNAL_CONTENT_URI, ident.id);
264 cursor = resolver.query(Video.Media.EXTERNAL_CONTENT_URI,
272 // single video
273 cursor = resolver.query(Video.Media.EXTERNAL_CONTENT_URI,
356 cursor = resolver.query(Video.Media.EXTERNAL_CONTENT_URI,
369 cursor = resolver.query(Video.Media.EXTERNAL_CONTENT_URI
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 30 import android.provider.MediaStore.Video;
31 import android.provider.MediaStore.Video.VideoColumns;
157 Media video = getLastVideoThumbnail(resolver); local
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,
170 Video.Thumbnails.MINI_KIND, null)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp9.cc 688 parsed_payload->type.Video.width = 0;
689 parsed_payload->type.Video.height = 0;
690 parsed_payload->type.Video.simulcastIdx = 0;
691 parsed_payload->type.Video.codec = kRtpVideoVp9;
695 RTPVideoHeaderVP9* vp9 = &parsed_payload->type.Video.codecHeader.VP9;
724 parsed_payload->type.Video.width = vp9->width[0];
725 parsed_payload->type.Video.height = vp9->height[0];
728 parsed_payload->type.Video.isFirstPacket =
rtp_payload_registry.cc 136 // for audio codecs, but there can for video.
212 // Video.
441 payload->typeSpecific.Video.maxRate = rate;
470 payload->typeSpecific.Video.videoCodecType = videoType;
471 payload->typeSpecific.Video.maxRate = rate;
rtp_sender_video.cc 92 payload->typeSpecific.Video.videoCodecType = videoType;
93 payload->typeSpecific.Video.maxRate = maxBitRate;
110 "Video::PacketNormal", "timestamp", capture_timestamp,
113 LOG(LS_WARNING) << "Failed to send video packet " << seq_num;
156 "Video::PacketRed", "timestamp", capture_timestamp,
168 "Video::PacketFec", "timestamp", capture_timestamp,
324 "webrtc", "Video", capture_time_ms, "timestamp", _rtpSender.Timestamp());
rtp_format_vp9_unittest.cc 82 EXPECT_EQ(kRtpVideoVp9, parsed.type.Video.codec);
83 VerifyHeader(expected, parsed.type.Video.codecHeader.VP9);
643 EXPECT_TRUE(parsed.type.Video.isFirstPacket);
653 EXPECT_FALSE(parsed.type.Video.isFirstPacket);
673 EXPECT_EQ(kWidth[0], parsed.type.Video.width);
674 EXPECT_EQ(kHeight[0], parsed.type.Video.height);
  /hardware/intel/common/libva/
libva.spec 11 Summary: Video Acceleration (VA) API for Linux
40 The libva library implements the Video Acceleration (VA) API for Linux.
44 Summary: Video Acceleration (VA) API for Linux -- development files
50 The libva library implements the Video Acceleration (VA) API for Linux.
151 - packaged mrst-video-decode-src version 0.0.1 using the buildservice spec file wizard
  /packages/apps/Music/src/com/android/music/
MediaPickerActivity.java 97 if (type.startsWith("video")) {
98 uri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
100 mCursor.getLong(mCursor.getColumnIndexOrThrow(MediaStore.Video.Media._ID));
113 // and the user selected a video.
147 // video has no year column.
148 if (type.equals("video/*")) {
158 // no video/audio/sdcard. Then a NPE will come up when access the content of the
162 if (type.equals("video/*")) {
163 // Only video.
164 c = MusicUtils.query(this, MediaStore.Video.Media.EXTERNAL_CONTENT_URI, videocols, null
    [all...]
  /compatibility/cdd/5_multimedia/
5_2_video-encoding.md 1 ## 5.2\. Video Encoding
20 If device implementations support any video encoder and make it available
29 diagonal length of at least 2.5 inches or include a video output port or
33 * [C-1-1] MUST include the support of at least one of the VP8 or H.264 video
35 * SHOULD support both VP8 and H.264 video encoders, and make it available
38 If device implementations support any of the H.264, VP8, VP9 or HEVC video
42 * SHOULD support variable frame rates, where video encoder SHOULD determine
46 If device implementations support the MPEG-4 SP video encoder and make it
68 video at 30 frame-per-second (fps).
78 * [C-1-2] MUST support the SD (Standard Definition) video encoding profile
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
video_coding_robustness_unittest.cc 65 rtp_info.type.Video.codec = kRtpVideoVp8;
66 rtp_info.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
67 rtp_info.type.Video.isFirstPacket = first;
  /external/webrtc/webrtc/video/
vie_receiver.cc 11 #include "webrtc/video/vie_receiver.h"
72 "WebRTC.Video.ReceivedFecPacketsInPercent",
77 "WebRTC.Video.RecoveredMediaPacketsInPercentOfFec",
401 rtp_header.type.Video.codec = payload_specific.Video.videoCodecType;
402 rtp_header.type.Video.rotation = kVideoRotation_0;
404 rtp_header.type.Video.rotation =
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 46 import android.provider.MediaStore.Video;
119 // shot video), we don't want the bottom bar intent ui to reset to the capture button
138 /** Manager used to mute sounds and vibrations during video recording. */
141 * The ringer mode that was set when video recording started. We use this to
142 * reset the mode once video recording has stopped.
151 // The video file that the hardware camera is about to record into
156 // The video file that has already been recorded, and that is being
165 // The video duration limit. 0 means no limit.
309 * Construct a new video module.
405 // Only take snapshots if video snapshot is supported by devic
    [all...]
MediaSaverImpl.java 25 import android.provider.MediaStore.Video;
40 private static final String VIDEO_BASE_URI = "content://media/external/video/media";
111 // We don't set a queue limit for video saving because the file
225 // Rename the video file to the final name. This avoids other
228 String finalName = values.getAsString(Video.Media.DATA);
237 Log.e(TAG, "failed to add video to media store", e);
240 Log.v(TAG, "Current video URI: " + uri);
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoList.java 23 import android.provider.MediaStore.Video.Media;
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 200 //Look for video links
201 Video video = Video.matchURL(url, text); local
202 if (video != null) {
203 return video;
206 // Look for video links.
809 /** Represents a link to a Google Video. */
810 public static class Video extends Token {
811 /** Pattern for a video URL. *
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaInserterTest.java 35 import android.provider.MediaStore.Video;
58 private static final Uri sVideoUri = Video.Media.getContentUri(sVolumeName);
120 values.put("_data", "/mnt/sdcard/video" + ++mVideoCounter);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
amstream.idl 78 [propget, id(2), helpstring("property Video")] HRESULT Video([out, retval] OUTPUT_STATE *pVal);
79 [propput, id(2), helpstring("propetry Video")] HRESULT Video([in] OUTPUT_STATE newVal);
  /external/walt/docs/
TapLatency.md 3 * [Video demonstration of tap latency measurement](https://www.youtube.com/watch?v=1xAReF75Cts&list=PLd6Fi7WgXfcCEJg1FDqNCoQfpWo7W3J5a&index=2)

Completed in 1104 milliseconds

12 3 4 5