/external/opencv3/modules/videoio/src/ |
cap_winrt_bridge.cpp | 33 using namespace Windows::Media::Capture; 34 using namespace Windows::Media::MediaProperties; 37 using namespace Windows::UI::Xaml::Media::Imaging;
|
cap_winrt_bridge.hpp | 82 Windows::UI::Xaml::Media::Imaging::WriteableBitmap^ frontOutputBuffer; // OpenCV write this 83 Windows::UI::Xaml::Media::Imaging::WriteableBitmap^ backOutputBuffer; // XAML reads this
|
cap_winrt_video.cpp | 44 using namespace Windows::Media::Devices; 45 using namespace Windows::Media::MediaProperties; 46 using namespace Windows::Media::Capture; 47 using namespace Windows::UI::Xaml::Media::Imaging; 52 // pull in Media Foundation libs 133 return ::Media::CaptureFrameGrabber::CreateAsync(m_capture.Get(), props); 135 }).then([this](::Media::CaptureFrameGrabber^ frameGrabber) 153 void Video::_GrabFrameAsync(::Media::CaptureFrameGrabber^ frameGrabber) {
|
cap_winrt_capture.cpp | 35 using namespace Windows::Media::Capture; 36 using namespace Windows::Media::MediaProperties; 41 using namespace Windows::UI::Xaml::Media::Imaging;
|
/external/opencv3/samples/winrt/ImageManipulations/ |
AdvancedCapture.xaml.h | 52 void Failed(Windows::Media::Capture::MediaCapture ^ mediaCapture, Windows::Media::Capture::MediaCaptureFailedEventArgs ^ args); 76 Windows::Media::Capture::VideoRotation VideoRotationLookup( 79 Platform::Agile<Windows::Media::Capture::MediaCapture> m_mediaCaptureMgr;
|
/external/opencv3/samples/winrt_universal/PhoneTutorial/ |
App.xaml.h | 23 Windows::UI::Xaml::Media::Animation::TransitionCollection^ _transitions;
|
MainPage.xaml.cpp | 25 using namespace Windows::UI::Xaml::Media; 27 using namespace Windows::UI::Xaml::Media::Imaging; 112 m_bitmap = ref new Windows::UI::Xaml::Media::Imaging::WriteableBitmap(1, 1);
|
App.xaml.cpp | 22 using namespace Windows::UI::Xaml::Media; 23 using namespace Windows::UI::Xaml::Media::Animation;
|
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Shared/ |
App.xaml.h | 48 Windows::UI::Xaml::Media::Animation::TransitionCollection^ _transitions;
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
Thumbnail.java | 25 import android.media.MediaMetadataRetriever; 156 Media image = getLastImageThumbnail(resolver); 157 Media video = getLastVideoThumbnail(resolver); 161 Media lastMedia; 181 private static class Media { 182 public Media(long id, int orientation, long dateTaken, Uri uri) { 195 public static Media getLastImageThumbnail(ContentResolver resolver) { 196 Uri baseUri = Images.Media.EXTERNAL_CONTENT_URI; 210 return new Media(id, cursor.getInt(1), cursor.getLong(2), 221 private static Media getLastVideoThumbnail(ContentResolver resolver) [all...] |
/external/opencv3/modules/videoio/src/cap_winrt/ |
CaptureFrameGrabber.hpp | 28 namespace Media { 66 ::Windows::Media::IMediaExtension^ _mediaExtension;
|
MFIncludes.hpp | 43 #include <windows.media.h> 44 #include <windows.media.mediaproperties.h> 46 namespace AWM = ::ABI::Windows::Media; 47 namespace AWMMp = ::ABI::Windows::Media::MediaProperties; 52 namespace WMC = ::Windows::Media::Capture; 54 namespace WMMp = ::Windows::Media::MediaProperties; 99 // Class to start and shutdown Media Foundation
|
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Windows/ |
MainPage.xaml.cpp | 25 using namespace Windows::UI::Xaml::Media; 31 using namespace Windows::UI::Xaml::Media::Imaging;
|
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.WindowsPhone/ |
MainPage.xaml.cpp | 25 using namespace Windows::UI::Xaml::Media; 31 using namespace Windows::UI::Xaml::Media::Imaging;
|
/frameworks/base/media/java/android/media/ |
RingtoneManager.java | 17 package android.media; 48 * of sounds. It manages querying the different media providers and combines the 198 MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE, 199 "\"" + MediaStore.Audio.Media.INTERNAL_CONTENT_URI + "\"", 200 MediaStore.Audio.Media.TITLE_KEY 204 MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE, 205 "\"" + MediaStore.Audio.Media.EXTERNAL_CONTENT_URI + "\"", 206 MediaStore.Audio.Media.TITLE_KE [all...] |
/packages/apps/Music/src/com/android/music/ |
TrackBrowserActivity.java | 37 import android.media.AudioManager; 140 MediaStore.Audio.Media._ID, 141 MediaStore.Audio.Media.TITLE, 142 MediaStore.Audio.Media.DATA, 143 MediaStore.Audio.Media.ALBUM, 144 MediaStore.Audio.Media.ARTIST, 145 MediaStore.Audio.Media.ARTIST_ID, 146 MediaStore.Audio.Media.DURATION 150 MediaStore.Audio.Media.TITLE, 151 MediaStore.Audio.Media.DATA [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Images_ThumbnailsTest.java | 32 import android.provider.MediaStore.Images.Media; 121 stringUrl = Media.insertImage(mContentResolver, src, null, null); 131 new String[]{ Media._ID, Media.DATA }, null, null, null); 133 long imageId = c.getLong(c.getColumnIndex(Media._ID)); 134 String imagePath = c.getString(c.getColumnIndex(Media.DATA)); 181 stringUrl = Media.insertImage(mContentResolver, src, null, null); 183 new String[]{ Media._ID, Media.DATA}, null, null, null); 185 imageId = c.getLong(c.getColumnIndex(Media._ID)) [all...] |
MediaStore_FilesTest.java | 65 mResolver.delete(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, 209 mResolver.delete(MediaStore.Images.Media.INTERNAL_CONTENT_URI, 214 values.put(MediaStore.Images.Media.DISPLAY_NAME, "My Bitmap"); 215 values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg"); 216 values.put(MediaStore.Images.Media.DATA, "/foo/bar/dummy.jpg"); 217 Uri uri = mResolver.insert(MediaStore.Images.Media.INTERNAL_CONTENT_URI, values); 221 values.put("_data", "/data/media"); 234 values.put("_data", "/data/media/test.dat"); 252 // point _data at media database and read it 254 values.put("_data", "/data/data/com.android.providers.media/databases/internal.db") [all...] |
MediaStore_Video_ThumbnailsTest.java | 27 import android.media.MediaCodecInfo; 28 import android.media.MediaCodecList; 31 import android.provider.MediaStore.Video.Media; 76 assertEquals(ContentUris.withAppendedId(Media.EXTERNAL_CONTENT_URI, videoId), 127 mResolver.delete(Media.EXTERNAL_CONTENT_URI, 134 return mResolver.insert(Media.EXTERNAL_CONTENT_URI, values);
|
MediaStore_VideoTest.java | 67 Uri newUri = mContentResolver.insert(Video.Media.INTERNAL_CONTENT_URI, values); 68 if (!Video.Media.INTERNAL_CONTENT_URI.equals(newUri)) {
|
/development/apps/Development/src/com/android/development/ |
MediaScannerActivity.java | 94 mAudioUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; 114 mTitle.setText("Media Scanner started scanning " + intent.getData().getPath()); 117 mTitle.setText("Media Scanner finished scanning " + intent.getData().getPath()); 126 mTitle.setText("Sent ACTION_MEDIA_MOUNTED to trigger the Media Scanner."); 184 map.put(Audio.Media.ARTIST, artist); 186 map.put(Audio.Media.ALBUM, albumName); 187 map.put(Audio.Media.TRACK, i + 1); 188 map.put(Audio.Media.DURATION, 4*60*1000); 189 map.put(Audio.Media.IS_MUSIC, 1); 190 map.put(Audio.Media.YEAR, baseYear + mRandom.nextInt(10)) [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
ImageManager.java | 34 import android.media.ExifInterface; 54 * in the media content provider. 59 private static final Uri STORAGE_URI = Images.Media.EXTERNAL_CONTENT_URI; 64 Uri.parse("content://media/external/video/media"); 195 // directory and filename). Also add an entry to the media store for 230 values.put(Images.Media.TITLE, title); 235 values.put(Images.Media.DISPLAY_NAME, filename); 236 values.put(Images.Media.DATE_TAKEN, dateTaken); 237 values.put(Images.Media.MIME_TYPE, "image/jpeg") [all...] |
/packages/apps/Camera2/src/com/android/camera/data/ |
VideoDataQuery.java | 23 public static final Uri CONTENT_URI = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
|
/packages/apps/Camera2/src/com/android/camera/session/ |
PlaceholderManager.java | 39 * output media item is being produced. 114 * @param uri the URI of an existing media item. 123 * This converts the placeholder in to a real media item 133 * @return The content URI of the new media item. 145 * This changes the temporary placeholder jpeg without writing it to the media store 175 * Create a new session instance from the given URI by querying the media 185 MediaStore.Images.Media.DATE_TAKEN, MediaStore.Images.Media.DISPLAY_NAME, 187 // The count could be 0 if the original media item was deleted before 192 int dateIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATE_TAKEN) [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SimpleSessionDescription.java | 34 * Media media = description.newMedia("audio", 56789, 1, "RTP/AVP"); 35 * media.setRtpPayload(0, "PCMU/8000", null); 36 * media.setRtpPayload(8, "PCMA/8000", null); 37 * media.setRtpPayload(127, "telephone-event/8000", "0-15"); 38 * media.setAttribute("sendrecv", ""); 59 private final ArrayList<Media> mMedia = new ArrayList<Media>(); 94 Media media = newMedia(parts[0], Integer.parseInt(ports[0]) local 120 Media media = new Media(type, port, portCount, protocol); local [all...] |