diff options
author | Keiji Ariyama <keiji_ariyama@c-lis.co.jp> | 2011-02-05 02:37:53 +0900 |
---|---|---|
committer | Keiji Ariyama <keiji_ariyama@c-lis.co.jp> | 2011-02-05 04:03:10 +0900 |
commit | 7fb597df52c7c6569a1c9ebacfb7629cf3dc6dc1 (patch) | |
tree | 836033f072197c9b5d56db66187a6a8a885f9ff5 /graphics | |
parent | 8226140ccadbc8e0bdd093f8bab0a5292b9224e3 (diff) | |
download | frameworks_base-7fb597df52c7c6569a1c9ebacfb7629cf3dc6dc1.zip frameworks_base-7fb597df52c7c6569a1c9ebacfb7629cf3dc6dc1.tar.gz frameworks_base-7fb597df52c7c6569a1c9ebacfb7629cf3dc6dc1.tar.bz2 |
Fixing the wrong link in YuvImage JavaDoc.
Change-Id: Ie6334e16424e59b75274ef265f10d26ba484316a
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/graphics/YuvImage.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/java/android/graphics/YuvImage.java b/graphics/java/android/graphics/YuvImage.java index 9368da6..af3f276 100644 --- a/graphics/java/android/graphics/YuvImage.java +++ b/graphics/java/android/graphics/YuvImage.java @@ -36,7 +36,7 @@ public class YuvImage { private final static int WORKING_COMPRESS_STORAGE = 4096; /** - * The YUV format as defined in {@link PixelFormat}. + * The YUV format as defined in {@link ImageFormat}. */ private int mFormat; @@ -67,7 +67,7 @@ public class YuvImage { * * @param yuv The YUV data. In the case of more than one image plane, all the planes must be * concatenated into a single byte array. - * @param format The YUV data format as defined in {@link PixelFormat}. + * @param format The YUV data format as defined in {@link ImageFormat}. * @param width The width of the YuvImage. * @param height The height of the YuvImage. * @param strides (Optional) Row bytes of each image plane. If yuv contains padding, the stride @@ -152,7 +152,7 @@ public class YuvImage { } /** - * @return the YUV format as defined in {@link PixelFormat}. + * @return the YUV format as defined in {@link ImageFormat}. */ public int getYuvFormat() { return mFormat; |