comparison aacadtsdec.h @ 12165:4f06422196ee libavcodec

Restore mistakenly removed [in]/[out] Doxygen parameter attributes.
author diego
date Wed, 14 Jul 2010 21:22:06 +0000
parents e7634f1b6100
children
comparison
equal deleted inserted replaced
12164:59ba77fe9922 12165:4f06422196ee
41 41
42 /** 42 /**
43 * Parse AAC frame header. 43 * Parse AAC frame header.
44 * Parse the ADTS frame header to the end of the variable header, which is 44 * Parse the ADTS frame header to the end of the variable header, which is
45 * the first 54 bits. 45 * the first 54 bits.
46 * @param gbc BitContext containing the first 54 bits of the frame. 46 * @param[in] gbc BitContext containing the first 54 bits of the frame.
47 * @param hdr Pointer to struct where header info is written. 47 * @param[out] hdr Pointer to struct where header info is written.
48 * @return Returns 0 on success, -1 if there is a sync word mismatch, 48 * @return Returns 0 on success, -1 if there is a sync word mismatch,
49 * -2 if the version element is invalid, -3 if the sample rate 49 * -2 if the version element is invalid, -3 if the sample rate
50 * element is invalid, or -4 if the bit rate element is invalid. 50 * element is invalid, or -4 if the bit rate element is invalid.
51 */ 51 */
52 int ff_aac_parse_header(GetBitContext *gbc, AACADTSHeaderInfo *hdr); 52 int ff_aac_parse_header(GetBitContext *gbc, AACADTSHeaderInfo *hdr);