HomeSort by relevance Sort by last modified time
    Searched full:recording (Results 26 - 50 of 1812) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
LevelTrackingMediaRecorder.java 34 * Wraps around the functionalities of MediaRecorder, performs routine setup for audio recording
37 * During the start and end of a recording session, we kick off a thread that polls for audio
47 // We refresh sound level every 100ms during a recording session.
80 * @return if we are currently in a recording session.
87 * Start a new recording session.
89 * we are already recording.
127 Assert.fail("Trying to start a new recording session while already recording!");
134 * Stop the current recording session.
135 * @return the Uri of the output file, or null if not currently recording
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/
DvrDataManager.java 23 import com.android.tv.common.recording.RecordedProgram;
72 * <p> A recording overlaps with a period when
73 * {@code recording.getStartTime() <= period.getUpper() &&
74 * recording.getEndTime() >= period.getLower()}.
101 * Returns the scheduled recording program with the given recordingId or null if is not found.
108 * Returns the scheduled recording program with the given programId or null if is not found.
DvrManager.java 34 import com.android.tv.common.recording.RecordedProgram;
48 * DVR manager class to add and remove recordings. UI can modify recording list through this class,
71 * Schedules a recording for {@code program} instead of the list of recording that conflict.
77 "Adding scheduled recording of " + program + " instead of " + recordingsToOverride);
90 * Adds a recording schedule with a time range.
93 Log.i(TAG, "Adding scheduled recording of channel" + channel + " starting at " +
103 * Adds a season recording schedule based on {@code program}.
106 Log.i(TAG, "Adding season recording of " + program);
113 public void stopRecording(final ScheduledRecording recording) {
    [all...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
TunerRecordingSession.java 52 Log.d(TAG, "Requesting recording session tune: " + channelUri);
61 Log.d(TAG, "Requesting recording session release.");
70 Log.d(TAG, "Requesting start recording.");
79 Log.d(TAG, "Requesting stop recording.");
88 Log.d(TAG, "Notifying recording session tuned.");
96 Log.d(TAG, "Notifying recording session connection failed.");
  /external/autotest/client/site_tests/suite_HWQual/
control.audio 7 PURPOSE = 'Tests playback, recording, and mixing of audio devices.'
18 Playback, recording, and mixers are tested.
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllAllocationsRecorder.java 35 private volatile boolean recording = false; field in class:AllAllocationsRecorder
41 if (recording) {
80 checkState(!recording, "startRecording called, but we were already recording.");
82 recording = true;
86 checkState(recording, "stopRecording called, but we were not recording.");
87 recording = false;
  /external/autotest/client/common_lib/
boottool_unittest.py 27 # set up the recording
35 # set up the recording
43 # set up the recording
51 # set up the recording
72 # set up the recording
87 # set up the recording
115 # set up the recording
135 # set up the recording
143 # set up the recording
152 # set up the recording
    [all...]
  /frameworks/base/media/java/android/media/
AudioRecordingConfiguration.java 30 * The AudioRecordingConfiguration class collects the information describing an audio recording
78 * Returns the audio source being used for the recording.
92 * Returns the session number of the recording, see {@link AudioRecord#getAudioSessionId()}.
99 * Note that it may differ from the client application recording format
101 * @return the device recording format
106 * Returns the audio format at which the client application is recording audio.
107 * Note that it may differ from the actual recording format (see {@link #getFormat()}).
108 * @return the recording format
113 * Returns information about the audio input device used for this recording.
114 * @return the audio recording device or null if this information cannot be retrieve
    [all...]
  /packages/apps/SoundRecorder/res/values/
strings.xml 21 <!-- Screen title before and during recording -->
23 <!-- Screen title after recording -->
25 <!-- Screen title while playing back a recording -->
27 <!-- Label shown during recording -->
28 <string name="recording">Recording</string>
29 <!-- Label shown when the recording is stopped for a reason other than the user stopping it (e.g. the sd card was removed) -->
30 <string name="recording_stopped">Recording stopped</string>
33 <!-- label shown when the recording has reached maximum allowed file size -->
44 <!-- button to accept the current recording and return it to the caller --
    [all...]
  /pdk/apps/TestingCamera/res/values/
strings.xml 32 <string name="record_on_label">Recording on</string>
33 <string name="record_off_label">Recording off</string>
36 <string name="record_hint_on_label">Recording Hint on</string>
37 <string name="record_hint_off_label">Recording Hint off</string>
61 <string name="record_handoff_prompt">No camera recording handoff</string>
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
CameraRecordingStream.java 41 * Camera video recording class. It takes frames produced by camera and encoded
80 * @param size Size of recording stream.
84 * @param orientation Recording orientation in degree (0,90,180,270)
141 * @param detach Detach the recording surface from the outputSurfaces.
146 // Can detach the surface in CONFIGURED and RECORDING state
150 Log.w(TAG, "Can not detach surface when recording stream is in IDLE state");
157 Log.w(TAG, "Can only add surface when recording stream is in CONFIGURED state");
163 * Update capture request with configuration required for recording stream.
166 * for recording specific camera settings.
167 * @param detach Detach the recording surface from the capture request
    [all...]
  /packages/apps/TV/src/com/android/tv/menu/
RecordCardView.java 78 for (ScheduledRecording recording : mDvrDataManager.getStartedRecordings()) {
79 if (recording.getChannelId() == channel.getId()) {
81 mCurrentRecording = recording;
157 public void onScheduledRecordingAdded(ScheduledRecording recording) {
161 public void onScheduledRecordingRemoved(ScheduledRecording recording) {
162 if (recording.getChannelId() != mCurrentChannel.getId()) {
173 public void onScheduledRecordingStatusChanged(ScheduledRecording recording) {
174 if (recording.getChannelId() != mCurrentChannel.getId()) {
177 int state = recording.getState();
185 mCurrentRecording = recording;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioRecordingConfigurationTest.java 97 // start a recording and verify it is seen as an active recording
106 assertNotNull("Invalid null array of record configurations before recording", configs);
113 // recording is active, verify there is an active record configuration
115 assertNotNull("Invalid null array of record configurations during recording", configs);
116 assertTrue("no active record configurations (empty array) during recording",
120 // verify our recording shows as one of the recording configs
125 // stopping recording: verify there are less active record configurations
129 assertTrue("end of recording not reported in record configs"
    [all...]
  /external/webrtc/webrtc/voice_engine/include/
voe_file.h 14 // - File recording.
112 // Starts recording the mixed playout audio.
118 // Stops recording the mixed playout audio.
125 // Starts recording the microphone signal to a file.
130 // Starts recording the microphone signal to a stream.
134 // Stops recording the microphone signal.
  /cts/suite/audio_quality/test_description/processing/
playback_sample.py 20 # Input: host recording (mono),
61 def calc_freq(recording, samplingRate):
62 #This would calculate the frequency of recording, but is skipped in this sample test for brevity
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
hardware_test.cc 25 "There seem to be no recording devices on your system, "
31 // Recording devices are handled a bit differently on Windows - we can
34 // Should also work while already recording.
  /frameworks/base/docs/html-intl/intl/ru/preview/features/
tv-recording-api.jd 2 page.keywords=preview,sdk,tv,recording
13 <li><a href="#recording">?????? ??????</a></li>
50 <h2 id="recording">?????? ??????</h2>
  /frameworks/base/docs/html-intl/intl/zh-tw/preview/features/
tv-recording-api.jd 2 page.keywords=preview,sdk,tv,recording
13 <li><a href="#recording">??????</a></li>
50 <h2 id="recording">??????</h2>
  /cts/suite/audio_quality/lib/include/audio/
AudioHardware.h 54 * options are : local or remote, playback or recording
62 * prepare playback or recording
76 * For record, it does not have much meaning as the last recording will always
82 * Wait for the playback / recording to complete. return true when successfully finished.
  /developers/build/prebuilts/gradle/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
SoundRecorder.java 61 IDLE, RECORDING, PLAYING
74 * Starts recording from the MIC.
78 Log.w(TAG, "Requesting to start recording while state was not IDLE");
88 mState = State.RECORDING;
129 if (mState == State.RECORDING) {
130 Log.d(TAG, "Stopping the recording ...");
133 Log.w(TAG, "Requesting to stop recording while state was not RECORDING");
164 // there is no recording to play
  /developers/samples/android/wearable/wear/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
SoundRecorder.java 61 IDLE, RECORDING, PLAYING
74 * Starts recording from the MIC.
78 Log.w(TAG, "Requesting to start recording while state was not IDLE");
88 mState = State.RECORDING;
129 if (mState == State.RECORDING) {
130 Log.d(TAG, "Stopping the recording ...");
133 Log.w(TAG, "Requesting to stop recording while state was not RECORDING");
164 // there is no recording to play
  /development/samples/browseable/WearSpeakerSample/src/com.example.android.wearable.speaker/
SoundRecorder.java 61 IDLE, RECORDING, PLAYING
74 * Starts recording from the MIC.
78 Log.w(TAG, "Requesting to start recording while state was not IDLE");
88 mState = State.RECORDING;
129 if (mState == State.RECORDING) {
130 Log.d(TAG, "Stopping the recording ...");
133 Log.w(TAG, "Requesting to stop recording while state was not RECORDING");
164 // there is no recording to play
  /external/skia/site/user/
index.md 19 * Picture (for recording and then playing back into another Canvas)
  /hardware/bsp/intel/peripheral/libupm/src/isd1820/
isd1820.h 49 * are two digital pins: one that enables recording, and the other
61 * @param recPin Pin to use for recording
79 * Starts or stops recording
81 * @param enable Starts recording if true, stops if false
  /cts/tests/camera/src/android/hardware/camera2/cts/
RecordingTest.java 57 * CameraDevice video recording use case tests by using MediaRecorder and
110 Log.i(TAG, "Testing basic recording for camera " + mCameraIds[i]);
139 * Test basic video stabilitzation camera recording.
142 * This test covers the typical basic use case of camera recording with video
156 * Test basic camera recording.
159 * This test covers the typical basic use case of camera recording.
172 * Test basic camera recording from a persistent input surface.
176 * from a persistent input surface that's used across multiple recording sessions.
196 * Test camera recording for all supported sizes by using MediaRecorder.
199 * This test covers camera recording for all supported sizes by camera. MediaRecorde
    [all...]

Completed in 481 milliseconds

12 3 4 5 6 7 8 91011>>