HomeSort by relevance Sort by last modified time
    Searched refs:Video (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/chromium_org/ppapi/shared_impl/
media_stream_buffer.h 33 struct Video {
39 // Uses 8 bytes to make sure the Video struct has consistent size between
49 PP_COMPILE_ASSERT_SIZE_IN_BYTES(Video, 40);
52 Video video; member in union:ppapi::MediaStreamBuffer
  /packages/apps/Music/src/com/android/music/
VideoBrowserActivity.java 72 new String[] { MediaStore.Video.Media.TITLE},
83 String type = mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Video.Media.MIME_TYPE));
84 intent.setDataAndType(ContentUris.withAppendedId(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, id), type);
91 MediaStore.Video.Media._ID,
92 MediaStore.Video.Media.TITLE,
93 MediaStore.Video.Media.DATA,
94 MediaStore.Video.Media.MIME_TYPE,
95 MediaStore.Video.Media.ARTIST
101 mSortOrder = MediaStore.Video.Media.TITLE + " COLLATE UNICODE";
102 mWhereClause = MediaStore.Video.Media.TITLE + " != ''"
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
MediaStoreTest.java 8 import static android.provider.MediaStore.Video;
18 assertThat(Video.Media.EXTERNAL_CONTENT_URI.toString(), equalTo("content://media/external/video/media"));
19 assertThat(Video.Media.INTERNAL_CONTENT_URI.toString(), equalTo("content://media/internal/video/media"));
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
SaveVideoFileUtils.java 25 import android.provider.MediaStore.Video;
26 import android.provider.MediaStore.Video.VideoColumns;
35 // This function can decide which folder to save the video file, and generate
36 // the needed information for the video file including filename.
89 * Insert the content (saved file) with proper video properties.
96 values.put(Video.Media.TITLE, mDstFileInfo.mFileName);
97 values.put(Video.Media.DISPLAY_NAME, mDstFileInfo.mFile.getName());
98 values.put(Video.Media.MIME_TYPE, "video/mp4");
99 values.put(Video.Media.DATE_TAKEN, nowInMs)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_VideoTest.java 27 import android.provider.MediaStore.Video;
28 import android.provider.MediaStore.Video.VideoColumns;
67 Uri newUri = mContentResolver.insert(Video.Media.INTERNAL_CONTENT_URI, values);
68 if (!Video.Media.INTERNAL_CONTENT_URI.equals(newUri)) {
72 Cursor c = Video.query(mContentResolver, newUri, new String[] { VideoColumns.DATA });
MediaStore_Video_ThumbnailsTest.java 30 import android.provider.MediaStore.Video.Media;
31 import android.provider.MediaStore.Video.Thumbnails;
32 import android.provider.MediaStore.Video.VideoColumns;
41 private static final String MIME_TYPE = "video/3gpp";
90 // Insert a video into the provider.
MediaStoreIntentsTest.java 48 intent.setData(MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
66 intent.setData(MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
91 "video/mpeg4", "video/mp4", "video/3gp", "video/3gpp", "video/3gpp2",
92 "video/webm" };
98 .authority("example.com").path("video").build();
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
packet.cc 50 isFirstPacket(rtpHeader.type.Video.isFirstPacket),
53 width(rtpHeader.type.Video.width),
54 height(rtpHeader.type.Video.height),
55 codecSpecificHeader(rtpHeader.type.Video)
57 CopyCodecSpecifics(rtpHeader.type.Video);
video_receiver_unittest.cc 100 header.type.Video.codec = kRtpVideoVp8;
124 header.type.Video.codec = kRtpVideoVp8;
125 // Insert one video frame to get one frame decoded.
127 header.type.Video.isFirstPacket = true;
134 header.type.Video.isFirstPacket = false;
170 header.type.Video.isFirstPacket = false;
176 header.type.Video.codec = kRtpVideoVp8;
177 header.type.Video.codecHeader.VP8.pictureId = -1;
178 header.type.Video.codecHeader.VP8.tl0PicIdx = -1;
180 // Insert 2 video frames
    [all...]
session_info_unittest.cc 70 vp8_header_ = &packet_header_.type.Video.codecHeader.VP8;
72 packet_header_.type.Video.codec = kRtpVideoVp8;
488 packet_header_.type.Video.isFirstPacket = true;
503 packet_header_.type.Video.isFirstPacket = false;
517 packet_header_.type.Video.isFirstPacket = false;
545 packet_header_.type.Video.isFirstPacket = true;
560 packet_header_.type.Video.isFirstPacket = false;
574 packet_header_.type.Video.isFirstPacket = false;
588 packet_header_.type.Video.isFirstPacket = false;
616 packet_header_.type.Video.isFirstPacket = true
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/
Android.mk 20 LOCAL_MODULE:= libOMX.TI.Video.encoder
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_receiver_video.cc 38 // Always do this for video packets.
57 TRACE_EVENT2("webrtc_rtp", "Video::ParseRtp",
60 rtp_header->type.Video.codec = specific_payload.Video.videoCodecType;
72 specific_payload.Video.videoCodecType,
92 // For video we just go with default values.
110 switch (rtp_header->type.Video.codec) {
112 rtp_header->type.Video.isFirstPacket = is_first_packet;
174 RTPVideoHeaderVP8* to_header = &rtp_header->type.Video.codecHeader.VP8;
177 rtp_header->type.Video.isFirstPacket
    [all...]
  /external/chromium_org/media/base/
media_file_checker_unittest.cc 29 TEST(MediaFileCheckerTest, Video) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaStore.java 33 Robolectric.Reflection.setFinalStaticField(MediaStore.Video.Media.class, "EXTERNAL_CONTENT_URI",
34 Uri.parse("content://media/external/video/media"));
36 Robolectric.Reflection.setFinalStaticField(MediaStore.Video.Media.class, "INTERNAL_CONTENT_URI",
37 Uri.parse("content://media/internal/video/media"));
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/
Android.mk 33 LOCAL_MODULE:= libOMX.TI.Video.Decoder
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
test_callbacks.cc 72 rtpInfo.type.Video.isFirstPacket = true;
73 rtpInfo.type.Video.codec = _codecType;
74 rtpInfo.type.Video.height = (uint16_t)_height;
75 rtpInfo.type.Video.width = (uint16_t)_width;
79 rtpInfo.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
80 rtpInfo.type.Video.codecHeader.VP8.nonReference =
82 rtpInfo.type.Video.codecHeader.VP8.pictureId =
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoObject.java 26 import android.provider.MediaStore.Video;
33 * Represents a particular video and provides access to the underlying data and
35 * path to the actual video data.
68 Video.Thumbnails.MINI_KIND);
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
MediaStoreThumbFetcher.java 95 return isMediaStoreUri(uri) && uri.getPathSegments().contains("video");
174 return context.getContentResolver().query(MediaStore.Video.Thumbnails.EXTERNAL_CONTENT_URI, new String[] {
175 MediaStore.Video.Thumbnails.DATA
176 }, MediaStore.Video.Thumbnails.VIDEO_ID + " = ? AND " + MediaStore.Video.Thumbnails.KIND + " = ?",
177 new String[] { id, String.valueOf(MediaStore.Video.Thumbnails.MINI_KIND) }, null);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 24 import android.provider.MediaStore.Video;
25 import android.provider.MediaStore.Video.VideoColumns;
34 // LocalVideo represents a video in the local storage.
37 static final Path ITEM_PATH = Path.fromString("/local/video/item");
85 Uri uri = Video.Media.EXTERNAL_CONTENT_URI;
180 + " to a local video!");
191 Uri baseUri = Video.Media.EXTERNAL_CONTENT_URI;
203 Uri baseUri = Video.Media.EXTERNAL_CONTENT_URI;
  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 23 import android.provider.MediaStore.Video;
129 Video.Thumbnails.cancelThumbnailRequest(cr, -1, t.getId());
153 return Video.Thumbnails.getThumbnail(cr, origId, t.getId(),
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.
  /external/chromium_org/base/test/android/java/src/org/chromium/base/
ContentUriTestUtils.java 33 new String[] { MediaStore.Video.VideoColumns._ID },
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
Makefile 44 COMPONENT_LIB=libOMX.TI.Video.Decoder.so
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
Makefile 36 COMPONENT_LIB=libOMX.TI.Video.encoder.so
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 609 static final Uri CONTENT_URI = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
615 private static final String QUERY_ORDER = MediaStore.Video.VideoColumns.DATE_TAKEN
616 + " DESC, " + MediaStore.Video.VideoColumns._ID + " DESC";
621 MediaStore.Video.VideoColumns._ID, // 0, int
622 MediaStore.Video.VideoColumns.TITLE, // 1, string
623 MediaStore.Video.VideoColumns.MIME_TYPE, // 2, string
624 MediaStore.Video.VideoColumns.DATE_TAKEN, // 3, int
625 MediaStore.Video.VideoColumns.DATE_MODIFIED, // 4, int
626 MediaStore.Video.VideoColumns.DATA, // 5, string
627 MediaStore.Video.VideoColumns.WIDTH, // 6, in
    [all...]

Completed in 1859 milliseconds

1 2 3 4 5