diff options
author | Benoit Fouet | 2010-03-30 15:50:57 +0000 |
---|---|---|
committer | Benoit Fouet | 2010-03-30 15:50:57 +0000 |
commit | 32e543f866d9d4b450729e93cd81dacd8c457971 (patch) | |
tree | 3e4271e8f798d25c3868584a04dcb52df3eff83f /libavcodec/wmavoice.c | |
parent | 3bccd93ac0b7e5dbb4a335257eaee9d8908dad3c (diff) |
Replace @returns by @return.
Originally committed as revision 22729 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmavoice.c')
-rw-r--r-- | libavcodec/wmavoice.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c index bdd05ac83e..9b9609f1a2 100644 --- a/libavcodec/wmavoice.c +++ b/libavcodec/wmavoice.c @@ -754,7 +754,7 @@ static void aw_pulse_set1(WMAVoiceContext *s, GetBitContext *gb, * @param block_num current block index * @param block_size amount of entries we want to read from a table * that has 1000 entries - * @returns a (non-)random number in the [0, 1000 - block_size] range. + * @return a (non-)random number in the [0, 1000 - block_size] range. */ static int pRNG(int frame_cntr, int block_num, int block_size) { @@ -1187,7 +1187,7 @@ static void stabilize_lsps(double *lsps, int num) * does not modify the state of the bitreader; it * only uses it to copy the current stream position * @param s WMA Voice decoding context private data - * @returns -1 if unsupported, 1 on not enough bits or 0 if OK. + * @return -1 if unsupported, 1 on not enough bits or 0 if OK. */ static int check_bits_for_superframe(GetBitContext *orig_gb, WMAVoiceContext *s) @@ -1391,7 +1391,7 @@ static int synth_superframe(AVCodecContext *ctx, * decoder). * * @param s WMA Voice decoding context private data - * @returns 1 if not enough bits were available, or 0 on success. + * @return 1 if not enough bits were available, or 0 on success. */ static int parse_packet_header(WMAVoiceContext *s) { |