Home | History | Annotate | Download | only in camera

Lines Matching refs:recorder

51     // The index of the current effects recorder.
294 Log.v(TAG, "Current effects recorder index is " + sEffectsRecorderIndex);
323 throw new RuntimeException("setCamera called on an already released recorder!");
336 throw new RuntimeException("setProfile called on an already released recorder!");
348 throw new RuntimeException("setOutputFile called on an already released recorder!");
362 throw new RuntimeException("setOutputFile called on an already released recorder!");
383 "setMaxFileSize called on an already released recorder!");
400 "setMaxDuration called on an already released recorder!");
414 "setCaptureRate called on an already released recorder!");
433 "setPreviewSurfaceTexture called on an already released recorder!");
461 throw new RuntimeException("setEffect called on an already released recorder!");
515 Object recorder = getGraphFilter(mRunner, "recorder");
516 setInputValue(recorder, "inputRegion", recordingRegion);
523 "setOrientationHint called on an already released recorder!");
545 "setCameraFacing called on alrady released recorder!");
559 "setInfoListener called on an already released recorder!");
572 "setErrorListener called on an already released recorder!");
700 throw new RuntimeException("setEffect called on an already released recorder!");
894 "startRecording called on an already released recorder!");
907 Object recorder = getGraphFilter(mRunner, "recorder");
909 setInputValue(recorder, "outputFileDescriptor", mFd);
911 setInputValue(recorder, "outputFile", mOutputFile);
915 setInputValue(recorder, "audioSource", MediaRecorder.AudioSource.CAMCORDER);
916 setInputValue(recorder, "recordingProfile", mProfile);
917 setInputValue(recorder, "orientationHint", mOrientationHint);
919 // since the recorder does not get created every time the recording starts.
920 // The recorder infers whether the capture is timelapsed based on the value of
925 setInputValue(recorder, "timelapseRecordingIntervalUs",
929 setInputValue(recorder, "timelapseRecordingIntervalUs", 0L);
933 setInputValue(recorder, "infoListener", mInfoListener);
936 setInputValue(recorder, "errorListener", mErrorListener);
938 setInputValue(recorder, "maxFileSize", mMaxFileSize);
939 setInputValue(recorder, "maxDurationMs", mMaxDurationMs);
940 setInputValue(recorder, "recording", true);
959 Object recorder = getGraphFilter(mRunner, "recorder");
960 setInputValue(recorder, "recording", false);