~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/mlp_parser.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-01-18 15:46:55 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20140118154655-iz6u00yevkat1jqi
Tags: 6:10~alpha2-1
New Upstream release 10_alpha2. This upstream git snapshot has too many
changes to list here, cf. to the upstream Changelog:
http://git.libav.org/?p=libav.git;a=blob;f=Changelog;hb=refs/tags/v10_alpha2

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
        mh->group1_samplerate = mlp_samplerate(ratebits);
170
170
        mh->group2_samplerate = 0;
171
171
 
172
 
        skip_bits(gb, 8);
 
172
        skip_bits(gb, 4);
 
173
 
 
174
        mh->channel_modifier_thd_stream0 = get_bits(gb, 2);
 
175
        mh->channel_modifier_thd_stream1 = get_bits(gb, 2);
173
176
 
174
177
        channel_arrangement            = get_bits(gb, 5);
175
178
        mh->channels_thd_stream1       = truehd_channels(channel_arrangement);
176
179
        mh->channel_layout_thd_stream1 = truehd_layout(channel_arrangement);
177
180
 
178
 
        skip_bits(gb, 2);
 
181
        mh->channel_modifier_thd_stream2 = get_bits(gb, 2);
179
182
 
180
183
        channel_arrangement            = get_bits(gb, 13);
181
184
        mh->channels_thd_stream2       = truehd_channels(channel_arrangement);