Home | History | Annotate | Download | only in camera

Lines Matching defs:recorder

151                 throw new RuntimeException("setCamera called on an already released recorder!");
164 throw new RuntimeException("setProfile called on an already released recorder!");
176 throw new RuntimeException("setOutputFile called on an already released recorder!");
190 throw new RuntimeException("setOutputFile called on an already released recorder!");
210 throw new RuntimeException("setMaxFileSize called on an already released recorder!");
226 throw new RuntimeException("setMaxDuration called on an already released recorder!");
239 throw new RuntimeException("setCaptureRate called on an already released recorder!");
256 throw new RuntimeException("setPreviewDisplay called on an already released recorder!");
284 throw new RuntimeException("setEffect called on an already released recorder!");
338 Filter recorder = mRunner.getGraph().getFilter("recorder");
339 recorder.setInputValue("inputRegion", recordingRegion);
346 "setOrientationHint called on an already released recorder!");
370 "setCameraFacing called on alrady released recorder!");
383 throw new RuntimeException("setInfoListener called on an already released recorder!");
395 throw new RuntimeException("setErrorListener called on an already released recorder!");
521 throw new RuntimeException("setEffect called on an already released recorder!");
649 throw new RuntimeException("startRecording called on an already released recorder!");
662 Filter recorder = mRunner.getGraph().getFilter("recorder");
664 recorder.setInputValue("outputFileDescriptor", mFd);
666 recorder.setInputValue("outputFile", mOutputFile);
670 recorder.setInputValue("audioSource", MediaRecorder.AudioSource.CAMCORDER);
672 recorder.setInputValue("recordingProfile", mProfile);
673 recorder.setInputValue("orientationHint", mOrientationHint);
675 // since the recorder does not get created every time the recording starts.
676 // The recorder infers whether the capture is timelapsed based on the value of
681 recorder.setInputValue("timelapseRecordingIntervalUs",
684 recorder.setInputValue("timelapseRecordingIntervalUs", 0L);
688 recorder.setInputValue("infoListener", mInfoListener);
691 recorder.setInputValue("errorListener", mErrorListener);
693 recorder.setInputValue("maxFileSize", mMaxFileSize);
694 recorder.setInputValue("maxDurationMs", mMaxDurationMs);
695 recorder.setInputValue("recording", true);
714 Filter recorder = mRunner.getGraph().getFilter("recorder");
715 recorder.setInputValue("recording", false);