diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2010-03-30 15:50:57 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-03-30 15:50:57 +0000 |
commit | 32e543f866d9d4b450729e93cd81dacd8c457971 (patch) | |
tree | 3e4271e8f798d25c3868584a04dcb52df3eff83f /libavformat/avio.h | |
parent | 3bccd93ac0b7e5dbb4a335257eaee9d8908dad3c (diff) | |
download | ffmpeg-32e543f866d9d4b450729e93cd81dacd8c457971.tar.gz |
Replace @returns by @return.
Originally committed as revision 22729 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 58e6eab45c..649de15ea9 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -376,7 +376,7 @@ void put_flush_packet(ByteIOContext *s); /** * Reads size bytes from ByteIOContext into buf. - * @returns number of bytes read or AVERROR + * @return number of bytes read or AVERROR */ int get_buffer(ByteIOContext *s, unsigned char *buf, int size); @@ -384,7 +384,7 @@ int get_buffer(ByteIOContext *s, unsigned char *buf, int size); * Reads size bytes from ByteIOContext into buf. * This reads at most 1 packet. If that is not enough fewer bytes will be * returned. - * @returns number of bytes read or AVERROR + * @return number of bytes read or AVERROR */ int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size); |