Skip to content

Commit

Permalink
Change output of SoundRecorder from .3gpp to .3gp
Browse files Browse the repository at this point in the history
Not really a major issue, but some file managers seem to no recognize .3gpp correctly,
(however File Manager does).  Just seems unnecessary to have it output .3gpp over .3gp
when they are the same thing.

Change-Id: Id8c7ec6049fb19db7a39b823df3e5b9e0081764f
  • Loading branch information
CEnnis committed May 7, 2011
1 parent bd2abd9 commit 6fa5a7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/android/soundrecorder/SoundRecorder.java
Expand Up @@ -372,7 +372,7 @@ public void onClick(View button) {
mRecorder.startRecording(MediaRecorder.OutputFormat.AMR_NB, ".amr", this);
} else if (AUDIO_3GPP.equals(mRequestedType)) {
mRemainingTimeCalculator.setBitRate(BITRATE_3GPP);
mRecorder.startRecording(MediaRecorder.OutputFormat.THREE_GPP, ".3gpp",
mRecorder.startRecording(MediaRecorder.OutputFormat.THREE_GPP, ".3gp",
this);
} else {
throw new IllegalArgumentException("Invalid output file type requested");
Expand Down

0 comments on commit 6fa5a7a

Please sign in to comment.