[FFmpeg-cvslog] avresample: De-doxygenize some comments where Doxygen is not appropriate

Diego Biurrun git at videolan.org
Sun Aug 12 13:48:48 CEST 2012


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Aug  9 03:06:23 2012 +0200| [3aa696e883bc3981d5059463cc9e0904bf57e752] | committer: Diego Biurrun

avresample: De-doxygenize some comments where Doxygen is not appropriate

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3aa696e883bc3981d5059463cc9e0904bf57e752
---

 libavresample/resample.c |   17 ++---------------
 1 file changed, 2 insertions(+), 15 deletions(-)

diff --git a/libavresample/resample.c b/libavresample/resample.c
index 1c3d13a..e6e0892 100644
--- a/libavresample/resample.c
+++ b/libavresample/resample.c
@@ -67,9 +67,7 @@ struct ResampleContext {
 #include "resample_template.c"
 
 
-/**
- * 0th order modified bessel function of the first kind.
- */
+/* 0th order modified bessel function of the first kind. */
 static double bessel(double x)
 {
     double v     = 1;
@@ -86,18 +84,7 @@ static double bessel(double x)
     return v;
 }
 
-/**
- * Build a polyphase filterbank.
- *
- * @param[out] filter       filter coefficients
- * @param      factor       resampling factor
- * @param      tap_count    tap count
- * @param      phase_count  phase count
- * @param      scale        wanted sum of coefficients for each filter
- * @param      filter_type  filter type
- * @param      kaiser_beta  kaiser window beta
- * @return                  0 on success, negative AVERROR code on failure
- */
+/* Build a polyphase filterbank. */
 static int build_filter(ResampleContext *c)
 {
     int ph, i;



More information about the ffmpeg-cvslog mailing list