Mercurial > libavcodec.hg
diff ac3dec.c @ 7012:4156c54aedba libavcodec
get substreamid from ac3 parser
| author | jbr |
|---|---|
| date | Sat, 07 Jun 2008 22:29:11 +0000 |
| parents | 77f607fb4e8b |
| children | d07912ff7dcd |
line wrap: on
line diff
--- a/ac3dec.c Sat Jun 07 22:29:03 2008 +0000 +++ b/ac3dec.c Sat Jun 07 22:29:11 2008 +0000 @@ -134,6 +134,7 @@ int sample_rate; ///< sample frequency, in Hz int bit_rate; ///< stream bit rate, in bits-per-second + int substreamid; ///< substream identification int frame_size; ///< current frame size, in bytes int channels; ///< number of total channels @@ -326,6 +327,7 @@ s->center_mix_level = hdr.center_mix_level; s->surround_mix_level = hdr.surround_mix_level; s->num_blocks = hdr.num_blocks; + s->substreamid = hdr.substreamid; if(s->lfe_on) { s->start_freq[s->lfe_ch] = 0;
