comparison cook.c @ 12056:25e9cb2b9477 libavcodec

Fix misspelled parameter names in Doxygen documentation. This fixes one Doxygen warning each.
author diego
date Fri, 02 Jul 2010 10:49:29 +0000
parents 7dd2a45249a9
children c69dd071f7d4
comparison
equal deleted inserted replaced
12055:34b9819efef5 12056:25e9cb2b9477
706 706
707 /** 707 /**
708 * Apply transform window, overlap buffers. 708 * Apply transform window, overlap buffers.
709 * 709 *
710 * @param q pointer to the COOKContext 710 * @param q pointer to the COOKContext
711 * @param inbuffer pointer to the mltcoefficients 711 * @param buffer1 pointer to the mltcoefficients
712 * @param gains_ptr current and previous gains 712 * @param gains_ptr current and previous gains
713 * @param previous_buffer pointer to the previous buffer to be used for overlapping 713 * @param previous_buffer pointer to the previous buffer to be used for overlapping
714 */ 714 */
715 715
716 static void imlt_window_float (COOKContext *q, float *buffer1, 716 static void imlt_window_float (COOKContext *q, float *buffer1,
875 * First part of subpacket decoding: 875 * First part of subpacket decoding:
876 * decode raw stream bytes and read gain info. 876 * decode raw stream bytes and read gain info.
877 * 877 *
878 * @param q pointer to the COOKContext 878 * @param q pointer to the COOKContext
879 * @param inbuffer pointer to raw stream data 879 * @param inbuffer pointer to raw stream data
880 * @param gain_ptr array of current/prev gain pointers 880 * @param gains_ptr array of current/prev gain pointers
881 */ 881 */
882 882
883 static inline void 883 static inline void
884 decode_bytes_and_gain(COOKContext *q, COOKSubpacket *p, const uint8_t *inbuffer, 884 decode_bytes_and_gain(COOKContext *q, COOKSubpacket *p, const uint8_t *inbuffer,
885 cook_gains *gains_ptr) 885 cook_gains *gains_ptr)
921 * Apply modulated lapped transform, gain compensation, 921 * Apply modulated lapped transform, gain compensation,
922 * clip and convert to integer. 922 * clip and convert to integer.
923 * 923 *
924 * @param q pointer to the COOKContext 924 * @param q pointer to the COOKContext
925 * @param decode_buffer pointer to the mlt coefficients 925 * @param decode_buffer pointer to the mlt coefficients
926 * @param gain_ptr array of current/prev gain pointers 926 * @param gains array of current/prev gain pointers
927 * @param previous_buffer pointer to the previous buffer to be used for overlapping 927 * @param previous_buffer pointer to the previous buffer to be used for overlapping
928 * @param out pointer to the output buffer 928 * @param out pointer to the output buffer
929 * @param chan 0: left or single channel, 1: right channel 929 * @param chan 0: left or single channel, 1: right channel
930 */ 930 */
931 931