comparison acelp_pitch_delay.h @ 12058:dc394a1cc943 libavcodec

Fix printing of '@' symbols in Doxygen comments; the correct syntax is '@@'.
author diego
date Fri, 02 Jul 2010 11:05:47 +0000
parents ca88470521db
children 8c396820d385
comparison
equal deleted inserted replaced
12057:560095a27bd0 12058:dc394a1cc943
52 * \return pitch delay in 1/3 units 52 * \return pitch delay in 1/3 units
53 * 53 *
54 * Pitch delay is coded: 54 * Pitch delay is coded:
55 * with 1/3 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5 55 * with 1/3 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5
56 * 56 *
57 * \remark The routine is used in G.729 @8k, AMR @10.2k, AMR @7.95k, 57 * \remark The routine is used in G.729 @@8k, AMR @@10.2k, AMR @@7.95k,
58 * AMR @7.4k for the second subframe. 58 * AMR @@7.4k for the second subframe.
59 */ 59 */
60 int ff_acelp_decode_5_6_bit_to_2nd_delay3( 60 int ff_acelp_decode_5_6_bit_to_2nd_delay3(
61 int ac_index, 61 int ac_index,
62 int pitch_delay_min); 62 int pitch_delay_min);
63 63
72 * Pitch delay is coded: 72 * Pitch delay is coded:
73 * integers only, -6 < pitch_delay - int(prev_pitch_delay) <= -2 73 * integers only, -6 < pitch_delay - int(prev_pitch_delay) <= -2
74 * with 1/3 resolution, -2 < pitch_delay - int(prev_pitch_delay) < 1 74 * with 1/3 resolution, -2 < pitch_delay - int(prev_pitch_delay) < 1
75 * integers only, 1 <= pitch_delay - int(prev_pitch_delay) < 5 75 * integers only, 1 <= pitch_delay - int(prev_pitch_delay) < 5
76 * 76 *
77 * \remark The routine is used in G.729 @6.4k, AMR @6.7k, AMR @5.9k, 77 * \remark The routine is used in G.729 @@6.4k, AMR @@6.7k, AMR @@5.9k,
78 * AMR @5.15k, AMR @4.75k for the second subframe. 78 * AMR @@5.15k, AMR @@4.75k for the second subframe.
79 */ 79 */
80 int ff_acelp_decode_4bit_to_2nd_delay3( 80 int ff_acelp_decode_4bit_to_2nd_delay3(
81 int ac_index, 81 int ac_index,
82 int pitch_delay_min); 82 int pitch_delay_min);
83 83