-에러 메시지-
12-07 17:09:48.362: E/StagefrightRecorder(213): [SKY]Don't set to a 64bitoffset - set to 32bitoffset.
12-07 17:09:48.372: E/AudioRecord(213): Could not get audio input for record source 6
12-07 17:09:48.383: E/StagefrightRecorder(213): audio source is not initialized
12-07 17:09:48.383: E/MediaRecorder(20821): start failed: -2147483648

아래의 소스로 음성녹음을 하려는데 특정폰(스카이폰) 에서만 위와 같은
메시지를 남기면서 익셉션이 발생하네요.
혹시나 같은 증상 겪으시거나 이유 아시는 분들의 정보를 부탁드립니다.
ㅜㅜ

-소스-
mRecorder.setAudioSource(MediaRecorder.AudioSource.VOICE_RECOGNITION);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.RAW_AMR);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mRecorder.setOutputFile("/sdcard/test.amr");
mRecorder.prepare();
mRecorder.start();