diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-24 22:44:12 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-24 22:44:12 +0000 |
commit | d7520f217af1c4ae0502829dde4e606b0c508c6b (patch) | |
tree | 5a1736b78497b26c2fa787436c26d79417f80228 /libavcodec | |
parent | 6510c453ab524dad31d3618eab3a2ff62ace5651 (diff) | |
download | ffmpeg-d7520f217af1c4ae0502829dde4e606b0c508c6b.tar.gz |
cosmetics: add an @return to documentation for decode_frame_header()
Originally committed as revision 18179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/flacdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index a2ab8721c8..04e81c6faa 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -485,6 +485,7 @@ static inline int decode_subframe(FLACContext *s, int channel) * @param avctx AVCodecContext to use as av_log() context * @param gb GetBitContext from which to read frame header * @param[out] fi frame information + * @return non-zero on error, 0 if ok */ static int decode_frame_header(AVCodecContext *avctx, GetBitContext *gb, FLACFrameInfo *fi) |