diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-02 10:38:10 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-02 17:21:45 -0400 |
commit | c2d9a65bc08cdb61f13b4101c5bbec7b86d30f9f (patch) | |
tree | 897225de9244795d8f3c4af2beffb8214d5c573c /libavcodec/ac3enc_template.c | |
parent | a4998e448f517a825fdc87e95e6c103223480867 (diff) | |
download | ffmpeg-c2d9a65bc08cdb61f13b4101c5bbec7b86d30f9f.tar.gz |
ac3enc: doxygen update.
Add some parameters to existing function documentation.
Remove some unneeded documentation.
Convert some static function documentation to non-doxygen style.
Diffstat (limited to 'libavcodec/ac3enc_template.c')
-rw-r--r-- | libavcodec/ac3enc_template.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/libavcodec/ac3enc_template.c b/libavcodec/ac3enc_template.c index 7e2bf3a9ca..3396ed17b7 100644 --- a/libavcodec/ac3enc_template.c +++ b/libavcodec/ac3enc_template.c @@ -64,7 +64,7 @@ alloc_fail: } -/** +/* * Deinterleave input samples. * Channels are reordered from Libav's default order to AC-3 order. */ @@ -93,7 +93,7 @@ static void deinterleave_input_samples(AC3EncodeContext *s, } -/** +/* * Apply the MDCT to input samples to generate frequency coefficients. * This applies the KBD window and normalizes the input to reduce precision * loss due to fixed-point calculations. @@ -120,7 +120,7 @@ static void apply_mdct(AC3EncodeContext *s) } -/** +/* * Calculate coupling channel and coupling coordinates. */ static void apply_channel_coupling(AC3EncodeContext *s) @@ -328,7 +328,7 @@ static void apply_channel_coupling(AC3EncodeContext *s) } -/** +/* * Determine rematrixing flags for each block and band. */ static void compute_rematrixing_strategy(AC3EncodeContext *s) @@ -391,9 +391,6 @@ static void compute_rematrixing_strategy(AC3EncodeContext *s) } -/** - * Encode a single AC-3 frame. - */ int AC3_NAME(encode_frame)(AVCodecContext *avctx, unsigned char *frame, int buf_size, void *data) { |