Changeset 6cdf2931726c771319e5445c4fab41bcfb160d1c
- 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
| r0684439 |
r6cdf293 |
|
| 1291 | 1291 | bs_read( &bitstream, 24 ); /* aspect_numerator */ |
|---|
| 1292 | 1292 | bs_read( &bitstream, 24 ); /* aspect_denominator */ |
|---|
| 1293 | | i_keyframe_frequency_force = 1 << bs_read( &bitstream, 5 ); |
|---|
| | 1293 | |
|---|
| 1294 | 1294 | bs_read( &bitstream, 8 ); /* colorspace */ |
|---|
| 1295 | 1295 | p_stream->fmt.i_bitrate = bs_read( &bitstream, 24 ); |
|---|
| 1296 | 1296 | bs_read( &bitstream, 6 ); /* quality */ |
|---|
| | 1297 | |
|---|
| | 1298 | i_keyframe_frequency_force = 1 << bs_read( &bitstream, 5 ); |
|---|
| 1297 | 1299 | |
|---|
| 1298 | 1300 | /* granule_shift = i_log( frequency_force -1 ) */ |
|---|