Commit fd566520 authored by Diego Biurrun's avatar Diego Biurrun

Fix printing of '@' symbols in Doxygen comments; the correct syntax is '@@'.

Originally committed as revision 23973 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eee9119a
...@@ -54,8 +54,8 @@ int ff_acelp_decode_8bit_to_1st_delay3(int ac_index); ...@@ -54,8 +54,8 @@ int ff_acelp_decode_8bit_to_1st_delay3(int ac_index);
* Pitch delay is coded: * Pitch delay is coded:
* with 1/3 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5 * with 1/3 resolution, -6 < pitch_delay - int(prev_pitch_delay) < 5
* *
* \remark The routine is used in G.729 @8k, AMR @10.2k, AMR @7.95k, * \remark The routine is used in G.729 @@8k, AMR @@10.2k, AMR @@7.95k,
* AMR @7.4k for the second subframe. * AMR @@7.4k for the second subframe.
*/ */
int ff_acelp_decode_5_6_bit_to_2nd_delay3( int ff_acelp_decode_5_6_bit_to_2nd_delay3(
int ac_index, int ac_index,
...@@ -74,8 +74,8 @@ int ff_acelp_decode_5_6_bit_to_2nd_delay3( ...@@ -74,8 +74,8 @@ int ff_acelp_decode_5_6_bit_to_2nd_delay3(
* with 1/3 resolution, -2 < pitch_delay - int(prev_pitch_delay) < 1 * with 1/3 resolution, -2 < pitch_delay - int(prev_pitch_delay) < 1
* integers only, 1 <= pitch_delay - int(prev_pitch_delay) < 5 * integers only, 1 <= pitch_delay - int(prev_pitch_delay) < 5
* *
* \remark The routine is used in G.729 @6.4k, AMR @6.7k, AMR @5.9k, * \remark The routine is used in G.729 @@6.4k, AMR @@6.7k, AMR @@5.9k,
* AMR @5.15k, AMR @4.75k for the second subframe. * AMR @@5.15k, AMR @@4.75k for the second subframe.
*/ */
int ff_acelp_decode_4bit_to_2nd_delay3( int ff_acelp_decode_4bit_to_2nd_delay3(
int ac_index, int ac_index,
......
...@@ -47,7 +47,7 @@ typedef struct { ...@@ -47,7 +47,7 @@ typedef struct {
* *
* Table contains only first the pulse indexes. * Table contains only first the pulse indexes.
* *
* Used in G.729 @8k, G.729 @4.4k, AMR @7.95k, AMR @7.40k * Used in G.729 @@8k, G.729 @@4.4k, AMR @@7.95k, AMR @@7.40k
*/ */
extern const uint8_t ff_fc_4pulses_8bits_tracks_13[16]; extern const uint8_t ff_fc_4pulses_8bits_tracks_13[16];
...@@ -60,7 +60,7 @@ extern const uint8_t ff_fc_4pulses_8bits_tracks_13[16]; ...@@ -60,7 +60,7 @@ extern const uint8_t ff_fc_4pulses_8bits_tracks_13[16];
* *
* @remark Track in the table should be read top-to-bottom, left-to-right. * @remark Track in the table should be read top-to-bottom, left-to-right.
* *
* Used in G.729 @8k, G.729 @4.4k, AMR @7.95k, AMR @7.40k * Used in G.729 @@8k, G.729 @@4.4k, AMR @@7.95k, AMR @@7.40k
*/ */
extern const uint8_t ff_fc_4pulses_8bits_track_4[32]; extern const uint8_t ff_fc_4pulses_8bits_track_4[32];
...@@ -76,7 +76,7 @@ extern const uint8_t ff_fc_4pulses_8bits_track_4[32]; ...@@ -76,7 +76,7 @@ extern const uint8_t ff_fc_4pulses_8bits_track_4[32];
* @note (EE) Reference G.729D code also uses gray decoding for each * @note (EE) Reference G.729D code also uses gray decoding for each
* pulse index before looking up the value in the table. * pulse index before looking up the value in the table.
* *
* Used in G.729 @6.4k (with gray coding), AMR @5.9k (without gray coding) * Used in G.729 @@6.4k (with gray coding), AMR @@5.9k (without gray coding)
*/ */
extern const uint8_t ff_fc_2pulses_9bits_track1[16]; extern const uint8_t ff_fc_2pulses_9bits_track1[16];
extern const uint8_t ff_fc_2pulses_9bits_track1_gray[16]; extern const uint8_t ff_fc_2pulses_9bits_track1_gray[16];
...@@ -108,7 +108,7 @@ extern const uint8_t ff_fc_2pulses_9bits_track1_gray[16]; ...@@ -108,7 +108,7 @@ extern const uint8_t ff_fc_2pulses_9bits_track1_gray[16];
* @note (EE.2) Reference G.729D code also uses gray decoding for each * @note (EE.2) Reference G.729D code also uses gray decoding for each
* pulse index before looking up the value in the table. * pulse index before looking up the value in the table.
* *
* Used in G.729 @6.4k (with gray coding) * Used in G.729 @@6.4k (with gray coding)
*/ */
extern const uint8_t ff_fc_2pulses_9bits_track2_gray[32]; extern const uint8_t ff_fc_2pulses_9bits_track2_gray[32];
...@@ -144,7 +144,7 @@ extern const float ff_pow_0_55[10]; ...@@ -144,7 +144,7 @@ extern const float ff_pow_0_55[10];
* @param pulse_count number of pulses decoded using first table * @param pulse_count number of pulses decoded using first table
* @param bits length of one pulse index in bits * @param bits length of one pulse index in bits
* *
* Used in G.729 @8k, G.729 @4.4k, G.729 @6.4k, AMR @7.95k, AMR @7.40k * Used in G.729 @@8k, G.729 @@4.4k, G.729 @@6.4k, AMR @@7.95k, AMR @@7.40k
*/ */
void ff_acelp_fc_pulse_per_track(int16_t* fc_v, void ff_acelp_fc_pulse_per_track(int16_t* fc_v,
const uint8_t *tab1, const uint8_t *tab1,
......
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