Lines Matching defs:mRecorder

45     private MediaRecorder mRecorder;
119 mRecorder = new MediaRecorder();
152 mRecorder.release();
220 mRecorder.setOnErrorListener(mRecorderErrorCallback);
221 mRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
222 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
223 mRecorder.setOutputFile(filename);
224 mRecorder.setVideoFrameRate(20);
225 mRecorder.setVideoSize(176,144);
227 mRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H263);
230 mRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
232 mRecorder.prepare();
235 mRecorder.reset();
288 mRecorder.setOnErrorListener(mRecorderErrorCallback);
289 mRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
290 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
291 mRecorder.setOutputFile(filename);
292 mRecorder.setVideoFrameRate(20);
293 mRecorder.setVideoSize(176,144);
295 mRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H263);
297 mRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
299 mRecorder.prepare();
378 mRecorder.setOnErrorListener(mRecorderErrorCallback);
379 mRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
380 mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
381 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
382 mRecorder.setOutputFile(filename);
383 mRecorder.setVideoFrameRate(frame_rate);
384 mRecorder.setVideoSize(video_width, video_height);
385 mRecorder.setVideoEncoder(video_encoder);
386 mRecorder.setAudioEncoder(audio_encoder);
388 mRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
389 mRecorder.prepare();
390 mRecorder.start();
393 mRecorder.stop();