comparison wmaprodec.c @ 12283:a08f20066719 libavcodec

Fix doxy that refers to the wrong variable.
author michael
date Tue, 27 Jul 2010 15:54:26 +0000
parents 8b6f3d3b55cb
children d62e974e36af
comparison
equal deleted inserted replaced
12282:f31ba4ca1397 12283:a08f20066719
506 *@param s context 506 *@param s context
507 *@return 0 on success, < 0 in case of an error 507 *@return 0 on success, < 0 in case of an error
508 */ 508 */
509 static int decode_tilehdr(WMAProDecodeCtx *s) 509 static int decode_tilehdr(WMAProDecodeCtx *s)
510 { 510 {
511 uint16_t num_samples[WMAPRO_MAX_CHANNELS]; /** sum of samples for all currently known subframes of a channel */ 511 uint16_t num_samples[WMAPRO_MAX_CHANNELS]; /**< sum of samples for all currently known subframes of a channel */
512 uint8_t contains_subframe[WMAPRO_MAX_CHANNELS]; /** flag indicating if a channel contains the current subframe */ 512 uint8_t contains_subframe[WMAPRO_MAX_CHANNELS]; /**< flag indicating if a channel contains the current subframe */
513 int channels_for_cur_subframe = s->num_channels; /** number of channels that contain the current subframe */ 513 int channels_for_cur_subframe = s->num_channels; /**< number of channels that contain the current subframe */
514 int fixed_channel_layout = 0; /** flag indicating that all channels use the same subframe offsets and sizes */ 514 int fixed_channel_layout = 0; /**< flag indicating that all channels use the same subframe offsets and sizes */
515 int min_channel_len = 0; /** smallest sum of samples (channels with this length will be processed first) */ 515 int min_channel_len = 0; /**< smallest sum of samples (channels with this length will be processed first) */
516 int c; 516 int c;
517 517
518 /* Should never consume more than 3073 bits (256 iterations for the 518 /* Should never consume more than 3073 bits (256 iterations for the
519 * while loop when always the minimum amount of 128 samples is substracted 519 * while loop when always the minimum amount of 128 samples is substracted
520 * from missing samples in the 8 channel case). 520 * from missing samples in the 8 channel case).