diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-03-06 11:32:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-06 11:32:04 +0000 |
commit | 983e3246b7528e6ffc0cc347d54b86e161140fe6 (patch) | |
tree | dcbb0c1222a0717ed687c3dabf0a35bf205bf044 /libavcodec/adpcm.c | |
parent | d33c949cd3292e6014c350afdbac91f6d2d66153 (diff) | |
download | ffmpeg-983e3246b7528e6ffc0cc347d54b86e161140fe6.tar.gz |
per file doxy
Originally committed as revision 1634 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 8f6863cb01..e94d16b513 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -18,7 +18,9 @@ */ #include "avcodec.h" -/* +/** + * @file adpcm.c + * ADPCM codecs. * First version by Francois Revol revol@free.fr * * Features and limitations: @@ -47,7 +49,8 @@ static const int index_table[16] = { -1, -1, -1, -1, 2, 4, 6, 8, }; -/* This is the step table. Note that many programs use slight deviations from +/** + * This is the step table. Note that many programs use slight deviations from * this table, but such deviations are negligible: */ static const int step_table[89] = { |