summaryrefslogtreecommitdiffstats
path: root/media/java/android/media/MediaRecorder.java
diff options
context:
space:
mode:
Diffstat (limited to 'media/java/android/media/MediaRecorder.java')
-rw-r--r--media/java/android/media/MediaRecorder.java22
1 files changed, 16 insertions, 6 deletions
diff --git a/media/java/android/media/MediaRecorder.java b/media/java/android/media/MediaRecorder.java
index dd377be..9dda80e 100644
--- a/media/java/android/media/MediaRecorder.java
+++ b/media/java/android/media/MediaRecorder.java
@@ -228,9 +228,11 @@ public class MediaRecorder
/** @hide H.264/AAC data encapsulated in MPEG2/TS */
public static final int OUTPUT_FORMAT_MPEG2TS = 8;
- /** QCP file format */
+ /** QCP file format
+ * @hide */
public static final int QCP = 9;
- /** 3GPP2 media file format*/
+ /** 3GPP2 media file format
+ * @hide */
public static final int THREE_GPP2 = 10;
};
@@ -250,13 +252,17 @@ public class MediaRecorder
public static final int AMR_WB = 2;
/** AAC audio codec */
public static final int AAC = 3;
- /** enhanced AAC audio codec */
+ /** enhanced AAC audio codec
+ * @hide */
public static final int AAC_PLUS = 4;
- /** enhanced AAC plus audio codec */
+ /** enhanced AAC plus audio codec
+ * @hide */
public static final int EAAC_PLUS = 5;
- /** EVRC audio codec */
+ /** EVRC audio codec
+ * @hide */
public static final int EVRC = 6;
- /** QCELP audio codec */
+ /** QCELP audio codec
+ * @hide */
public static final int QCELP =7;
}
@@ -669,6 +675,8 @@ public class MediaRecorder
*
* @throws IllegalStateException if it is called before
* prepare().
+ *
+ * @hide
*/
public native void native_start() throws IllegalStateException;
@@ -683,6 +691,8 @@ public class MediaRecorder
* the output file is not properly constructed when this happens.
*
* @throws IllegalStateException if it is called before start()
+ *
+ * @hide
*/
public native void native_stop() throws IllegalStateException;