summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-08 13:35:46 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-08 13:35:46 +0000
commite51f04968e6841c9defe11e70b2e6be27f601c78 (patch)
treef035e37c6a63b6a5fc776211947c610e8898b8d9
parent0aee2a57c86d7afc04b6e9638cb65b6bef9e8c47 (diff)
Restore array sizes in doxygen parameter names.
Originally committed as revision 24108 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/cook.c4
-rw-r--r--libavcodec/motion_est_template.c2
-rw-r--r--libavutil/lfg.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c
index 3cdc3bd90b..a3268e2a54 100644
--- a/libavcodec/cook.c
+++ b/libavcodec/cook.c
@@ -365,8 +365,8 @@ static av_cold int cook_decode_close(AVCodecContext *avctx)
/**
* Fill the gain array for the timedomain quantization.
*
- * @param gb pointer to the GetBitContext
- * @param gaininfo array of gain indexes
+ * @param gb pointer to the GetBitContext
+ * @param gaininfo[9] array of gain indexes
*/
static void decode_gain_info(GetBitContext *gb, int *gaininfo)
diff --git a/libavcodec/motion_est_template.c b/libavcodec/motion_est_template.c
index 8334de2f83..8f730ef14f 100644
--- a/libavcodec/motion_est_template.c
+++ b/libavcodec/motion_est_template.c
@@ -1028,7 +1028,7 @@ static av_always_inline int diamond_search(MpegEncContext * s, int *best, int dm
}
/*!
- \param P a list of candidate mvs to check before starting the
+ \param P[10][2] a list of candidate mvs to check before starting the
iterative search. If one of the candidates is close to the optimal mv, then
it takes fewer iterations. And it increases the chance that we find the
optimal mv.
diff --git a/libavutil/lfg.h b/libavutil/lfg.h
index 854ffce737..0e89ea308d 100644
--- a/libavutil/lfg.h
+++ b/libavutil/lfg.h
@@ -55,7 +55,7 @@ static inline unsigned int av_mlfg_get(AVLFG *c){
* Get the next two numbers generated by a Box-Muller Gaussian
* generator using the random numbers issued by lfg.
*
- * @param out array where the two generated numbers are placed
+ * @param out[2] array where the two generated numbers are placed
*/
void av_bmg_get(AVLFG *lfg, double out[2]);