diff options
author | Jeff Smith <whydoubt@yahoo.com> | 2012-07-19 14:19:24 -0500 |
---|---|---|
committer | Scott Main <smain@google.com> | 2012-07-25 10:49:25 -0700 |
commit | a45746efadd11bb7dfab026fb3c81a25fae74ca4 (patch) | |
tree | 9875e997b80cf5a43b7e6ba8bb3615a17bda6c8f /media/java | |
parent | 2f5b61a750e36169e37788a645f422cc8a8f7091 (diff) | |
download | frameworks_base-a45746efadd11bb7dfab026fb3c81a25fae74ca4.zip frameworks_base-a45746efadd11bb7dfab026fb3c81a25fae74ca4.tar.gz frameworks_base-a45746efadd11bb7dfab026fb3c81a25fae74ca4.tar.bz2 |
Fix several cases of broken droiddoc syntax
external issue 35214
patch contributed by Jeff Smith <whydoubt@yahoo.com>
Change-Id: I70dcee88a140699bf3e1ab369bed6dcd2fdd3d83
Diffstat (limited to 'media/java')
-rw-r--r-- | media/java/android/media/MediaExtractor.java | 2 | ||||
-rw-r--r-- | media/java/android/media/MediaPlayer.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/media/java/android/media/MediaExtractor.java b/media/java/android/media/MediaExtractor.java index 9f10cb0..687d3a5 100644 --- a/media/java/android/media/MediaExtractor.java +++ b/media/java/android/media/MediaExtractor.java @@ -295,7 +295,7 @@ final public class MediaExtractor { * Returns true iff we are caching data and the cache has reached the * end of the data stream (for now, a future seek may of course restart * the fetching of data). - * This API only returns a meaningful result if {link #getCachedDuration} + * This API only returns a meaningful result if {@link #getCachedDuration} * indicates the presence of a cache, i.e. does NOT return -1. */ public native boolean hasCacheReachedEndOfStream(); diff --git a/media/java/android/media/MediaPlayer.java b/media/java/android/media/MediaPlayer.java index 870a4a9..cd25865 100644 --- a/media/java/android/media/MediaPlayer.java +++ b/media/java/android/media/MediaPlayer.java @@ -706,7 +706,7 @@ public class MediaPlayer * surface rendering area. When the surface has the same aspect ratio * as the content, the aspect ratio of the content is maintained; * otherwise, the aspect ratio of the content is not maintained when video - * is being rendered. Unlike {@ #VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPING}, + * is being rendered. Unlike {@link #VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPING}, * there is no content cropping with this video scaling mode. */ public static final int VIDEO_SCALING_MODE_SCALE_TO_FIT = 1; |