comparison flacdec.c @ 9256:eb5f74d90304 libavcodec

cosmetics: add an @return to documentation for decode_frame_header()
author jbr
date Tue, 24 Mar 2009 22:44:12 +0000
parents 8d570fb097f8
children 54bc8a2727b0
comparison
equal deleted inserted replaced
9255:26430882ba6e 9256:eb5f74d90304
483 /** 483 /**
484 * Validate and decode a frame header. 484 * Validate and decode a frame header.
485 * @param avctx AVCodecContext to use as av_log() context 485 * @param avctx AVCodecContext to use as av_log() context
486 * @param gb GetBitContext from which to read frame header 486 * @param gb GetBitContext from which to read frame header
487 * @param[out] fi frame information 487 * @param[out] fi frame information
488 * @return non-zero on error, 0 if ok
488 */ 489 */
489 static int decode_frame_header(AVCodecContext *avctx, GetBitContext *gb, 490 static int decode_frame_header(AVCodecContext *avctx, GetBitContext *gb,
490 FLACFrameInfo *fi) 491 FLACFrameInfo *fi)
491 { 492 {
492 int bs_code, sr_code, bps_code; 493 int bs_code, sr_code, bps_code;