comparison eac3dec.c @ 8273:55aba5d428f3 libavcodec

ac3dec: add missing feature log message for block start info
author jbr
date Sat, 06 Dec 2008 16:19:44 +0000
parents c15abcb0209a
children f93efc084e41
comparison
equal deleted inserted replaced
8272:c15abcb0209a 8273:55aba5d428f3
474 nblkstrtbits = (numblks - 1) * (4 + ceiling(log2(words_per_frame))) 474 nblkstrtbits = (numblks - 1) * (4 + ceiling(log2(words_per_frame)))
475 The spec does not say what this data is or what it's used for. 475 The spec does not say what this data is or what it's used for.
476 It is likely the offset of each block within the frame. */ 476 It is likely the offset of each block within the frame. */
477 int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2)); 477 int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2));
478 skip_bits_long(gbc, block_start_bits); 478 skip_bits_long(gbc, block_start_bits);
479 av_log_missing_feature(s->avctx, "Block start info", 1);
479 } 480 }
480 481
481 /* syntax state initialization */ 482 /* syntax state initialization */
482 for (ch = 1; ch <= s->fbw_channels; ch++) { 483 for (ch = 1; ch <= s->fbw_channels; ch++) {
483 s->first_cpl_coords[ch] = 1; 484 s->first_cpl_coords[ch] = 1;