Update comments to indicate that float FFTs support orders from 1 to 15 (not 0 to 12), inclusive.

BUG=
R=andrew@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/2939004

git-svn-id: http://webrtc.googlecode.com/svn/deps/third_party/openmax@5043 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/dl/sp/api/omxSP.h b/dl/sp/api/omxSP.h
index c910363..8f70236 100644
--- a/dl/sp/api/omxSP.h
+++ b/dl/sp/api/omxSP.h
@@ -1424,7 +1424,7 @@
  * Input Arguments:
  *   
  *   order - base-2 logarithm of the desired block length; valid in the range 
- *            [0,12] 
+ *            [1,15] 
  *
  * Output Arguments:
  *   
@@ -1437,7 +1437,7 @@
  *              following is true: 
  *    -   pFFTSpec is either NULL or violates the 8-byte alignment 
  *              restrictions 
- *    -   order < 0 or order > 12 
+ *    -   order < 1 or order > 15
  *
  */
 OMXResult omxSP_FFTInit_C_FC32(
@@ -1583,7 +1583,7 @@
  * Input Arguments:
  *   
  *   order - base-2 logarithm of the desired block length; valid in the range 
- *            [0,12] 
+ *            [1,15] 
  *
  * Output Arguments:
  *   
@@ -1596,7 +1596,7 @@
  *              following is true: 
  *    -   pFFTFwdSpec is either NULL or violates the 8-byte alignment 
  *              restrictions 
- *    -   order < 0 or order > 12 
+ *    -   order < 1 or order > 15
  *
  */
 OMXResult omxSP_FFTInit_R_F32(
@@ -1684,7 +1684,7 @@
  * Input Arguments:
  *   
  *   order - base-2 logarithm of the desired block length; valid in the range 
- *            [0,12] 
+ *            [1,15] 
  *
  * Output Arguments:
  *   
@@ -1697,7 +1697,7 @@
  *    OMX_Sts_BadArgErr - bad arguments; returned if one or more of the 
  *              following is true: 
  *    -    pSize is NULL 
- *    -    order < 0 or order > 12 
+ *    -    order < 1 or order > 15 
  *
  */
 OMXResult omxSP_FFTGetBufSize_C_FC32(
@@ -1815,7 +1815,7 @@
  *
  * Input Arguments:
  *   
- *   order - base-2 logarithm of the length; valid in the range [0,12] 
+ *   order - base-2 logarithm of the length; valid in the range [1,15] 
  *
  * Output Arguments:
  *   
@@ -1828,7 +1828,7 @@
  *    OMX_Sts_BadArgErr - bad arguments The function returns 
  *              OMX_Sts_BadArgErr if one or more of the following is true: 
  *    pSize is NULL 
- *    order < 0 or order > 12 
+ *    order < 1 or order > 15
  *
  */
 OMXResult omxSP_FFTGetBufSize_R_F32(