diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-30 19:10:50 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-05 13:06:58 +0100 |
commit | e873c03ac7cec62474fe8405391080abb78f4a02 (patch) | |
tree | 6d0d258e61276e3ac8f842c8c1d47210734a0e06 /libavcodec | |
parent | c68fafe0d2bdf3d4943a3602c52b0a7c83be8171 (diff) | |
download | ffmpeg-e873c03ac7cec62474fe8405391080abb78f4a02.tar.gz |
misc Doxygen markup improvements
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cinepak.c | 7 | ||||
-rw-r--r-- | libavcodec/eamad.c | 4 | ||||
-rw-r--r-- | libavcodec/lsp.c | 2 |
3 files changed, 7 insertions, 6 deletions
diff --git a/libavcodec/cinepak.c b/libavcodec/cinepak.c index 9cf38edb8e..08ab05f8bb 100644 --- a/libavcodec/cinepak.c +++ b/libavcodec/cinepak.c @@ -22,10 +22,11 @@ /** * @file * Cinepak video decoder - * by Ewald Snel <ewald@rambo.its.tudelft.nl> - * For more information on the Cinepak algorithm, visit: + * @author Ewald Snel <ewald@rambo.its.tudelft.nl> + * + * @see For more information on the Cinepak algorithm, visit: * http://www.csse.monash.edu.au/~timf/ - * For more information on the quirky data inside Sega FILM/CPK files, visit: + * @see For more information on the quirky data inside Sega FILM/CPK files, visit: * http://wiki.multimedia.cx/index.php?title=Sega_FILM */ diff --git a/libavcodec/eamad.c b/libavcodec/eamad.c index 772fb28440..c5aa6ace79 100644 --- a/libavcodec/eamad.c +++ b/libavcodec/eamad.c @@ -22,9 +22,9 @@ /** * @file * Electronic Arts Madcow Video Decoder - * by Peter Ross <pross@xvid.org> + * @author Peter Ross <pross@xvid.org> * - * Technical details here: + * @see technical details at * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_MAD */ diff --git a/libavcodec/lsp.c b/libavcodec/lsp.c index 834346bc25..2adc9cfa39 100644 --- a/libavcodec/lsp.c +++ b/libavcodec/lsp.c @@ -75,7 +75,7 @@ void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) /** * @brief decodes polynomial coefficients from LSP - * @param f [out] decoded polynomial coefficients (-0x20000000 <= (3.22) <= 0x1fffffff) + * @param[out] f decoded polynomial coefficients (-0x20000000 <= (3.22) <= 0x1fffffff) * @param lsp LSP coefficients (-0x8000 <= (0.15) <= 0x7fff) */ static void lsp2poly(int* f, const int16_t* lsp, int lp_half_order) |