Changeset 6cdf2931726c771319e5445c4fab41bcfb160d1c

Show
Ignore:
Timestamp:
28/04/04 19:57:16 (5 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1083175036 +0000
git-parent:

[ca1cd7db9f62d3878ebb62f47e40236d08db2235]

git-author:
Gildas Bazin <gbazin@videolan.org> 1083175036 +0000
Message:

* modules/demux/ogg.c: theora decoding fix (one of the header fields changed in alpha3).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/ogg.c

    r0684439 r6cdf293  
    12911291    bs_read( &bitstream, 24 ); /* aspect_numerator */ 
    12921292    bs_read( &bitstream, 24 ); /* aspect_denominator */ 
    1293     i_keyframe_frequency_force = 1 << bs_read( &bitstream, 5 ); 
     1293 
    12941294    bs_read( &bitstream, 8 ); /* colorspace */ 
    12951295    p_stream->fmt.i_bitrate = bs_read( &bitstream, 24 ); 
    12961296    bs_read( &bitstream, 6 ); /* quality */ 
     1297 
     1298    i_keyframe_frequency_force = 1 << bs_read( &bitstream, 5 ); 
    12971299 
    12981300    /* granule_shift = i_log( frequency_force -1 ) */