comparison acelp_pitch_delay.h @ 12059:8c396820d385 libavcodec

Fix two more instances of wrong @ usage in Doxygen comments.
author diego
date Fri, 02 Jul 2010 11:09:12 +0000
parents dc394a1cc943
children c69dd071f7d4
comparison
equal deleted inserted replaced
12058:dc394a1cc943 12059:8c396820d385
92 * 92 *
93 * Pitch delay is coded: 93 * Pitch delay is coded:
94 * with 1/6 resolution, 17 < pitch_delay < 95 94 * with 1/6 resolution, 17 < pitch_delay < 95
95 * integers only, 95 <= pitch_delay <= 143 95 * integers only, 95 <= pitch_delay <= 143
96 * 96 *
97 * \remark The routine is used in AMR @12.2k for the first and third subframes. 97 * \remark The routine is used in AMR @@12.2k for the first and third subframes.
98 */ 98 */
99 int ff_acelp_decode_9bit_to_1st_delay6(int ac_index); 99 int ff_acelp_decode_9bit_to_1st_delay6(int ac_index);
100 100
101 /** 101 /**
102 * \brief Decode pitch delay of the second subframe encoded by 6 bits 102 * \brief Decode pitch delay of the second subframe encoded by 6 bits
108 * \return pitch delay in 1/6 units 108 * \return pitch delay in 1/6 units
109 * 109 *
110 * Pitch delay is coded: 110 * Pitch delay is coded:
111 * with 1/6 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5 111 * with 1/6 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5
112 * 112 *
113 * \remark The routine is used in AMR @12.2k for the second and fourth subframes. 113 * \remark The routine is used in AMR @@12.2k for the second and fourth subframes.
114 */ 114 */
115 int ff_acelp_decode_6bit_to_2nd_delay6( 115 int ff_acelp_decode_6bit_to_2nd_delay6(
116 int ac_index, 116 int ac_index,
117 int pitch_delay_min); 117 int pitch_delay_min);
118 118