Commit 26001105 authored by jbr's avatar jbr

revise comment for exponent decoding function

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9750 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e256af71
...@@ -445,16 +445,16 @@ static void ac3_parse_bsi(AC3DecodeContext *ctx) ...@@ -445,16 +445,16 @@ static void ac3_parse_bsi(AC3DecodeContext *ctx)
} }
} }
/* Decodes the grouped exponents. /**
* Decodes the grouped exponents.
* This function decodes the coded exponents according to exponent strategy * This function decodes the coded exponents according to exponent strategy
* and stores them in the decoded exponents buffer. * and stores them in the decoded exponents buffer.
* *
* @param gb GetBitContext which points to start of coded exponents * @param[in] gb GetBitContext which points to start of coded exponents
* @param expstr Exponent coding strategy * @param[in] expstr Exponent coding strategy
* @param ngrps Number of grouped exponetns * @param[in] ngrps Number of grouped exponents
* @param absexp Absolute exponent * @param[in] absexp Absolute exponent or DC exponent
* @param dexps Decoded exponents are stored in dexps * @param[out] dexps Decoded exponents are stored in dexps
* @return Returns 0 if exponents are decoded successfully, -1 if error occurs
*/ */
static void decode_exponents(GetBitContext *gb, int expstr, int ngrps, static void decode_exponents(GetBitContext *gb, int expstr, int ngrps,
uint8_t absexp, uint8_t *dexps) uint8_t absexp, uint8_t *dexps)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment