Home | History | Annotate | Download | only in camera

Lines Matching refs:Video

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 device
407 Log.w(TAG, "Cannot take a video snapshot - not supported by hardware");
420 Log.i(TAG, "Video snapshot start");
624 Log.e(TAG, "Couldn't view video " + mCurrentVideoUri, ex);
642 // confirm done in review, which means we need to handle temporary video
644 // Make sure we don't delete the Uri sent from the video capture intent.
698 // for video, override that
703 // for video, override that
712 // Keep the shutter button disabled when in video capture intent
739 Log.d(TAG, "Selected video quality for '" + videoQuality + "' is " + quality);
741 // Set video quality.
753 // Set video duration limit. The limit is read from the preference,
812 // Driver doesn't support separate outputs for preview and video.
836 // video frame size. The variable sizes is assumed to be filtered
1093 Log.v(TAG, "Empty video file deleted: " + mVideoFilename);
1228 mCurrentVideoValues.put(Video.Media.TITLE, title);
1229 mCurrentVideoValues.put(Video.Media.DISPLAY_NAME, filename);
1230 mCurrentVideoValues.put(Video.Media.DATE_TAKEN, dateTaken);
1232 mCurrentVideoValues.put(Video.Media.MIME_TYPE, mime);
1233 mCurrentVideoValues.put(Video.Media.DATA, path);
1234 mCurrentVideoValues.put(Video.Media.WIDTH, mProfile.videoFrameWidth);
1235 mCurrentVideoValues.put(Video.Media.HEIGHT, mProfile.videoFrameHeight);
1236 mCurrentVideoValues.put(Video.Media.RESOLUTION,
1241 mCurrentVideoValues.put(Video.Media.LATITUDE, loc.getLatitude());
1242 mCurrentVideoValues.put(Video.Media.LONGITUDE, loc.getLongitude());
1245 Log.v(TAG, "New video filename: " + mVideoFilename);
1253 int width = (Integer) mCurrentVideoValues.get(Video.Media.WIDTH);
1254 int height = (Integer) mCurrentVideoValues.get(Video.Media.HEIGHT);
1256 String name = new File(mCurrentVideoValues.getAsString(Video.Media.DATA)).getName();
1267 Log.w(TAG, "Video duration <= 0 : " + duration);
1269 mCurrentVideoValues.put(Video.Media.SIZE, new File(mCurrentVideoFilename).length());
1270 mCurrentVideoValues.put(Video.Media.DURATION, duration);
1279 video " + fileName);
1323 // Store current ringer mode so we can set it once video recording is
1331 // re-set the mode that was set before video recording started.
1392 // vibrations during video recording. Post delayed to avoid
1492 Log.v(TAG, "stopVideoRecording: current video filename: " + mCurrentVideoFilename);
1514 // The orientation was fixed during video recording. Now make it
1515 // reflect the device orientation as video recording is stopped.
1646 // Update Desired Preview size in case video camera resolution has changed.
1653 mCameraSettings.setSetting("video-size",
1689 Log.d(TAG, "Video snapshot size is " + optimalSize);
1708 // Set continuous autofocus. During recording, we use "continuous-video"
1883 * Used to update the flash mode. Video mode can turn on the flash as torch
1939 Log.i(TAG, "Video snapshot taken.");
1966 return "video/mp4";
1968 return "video/3gpp";
2010 // Not much we can do in the video module.