1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

[demux/ogg] Fix off-by-one default framerate table indexing

Values obtained from the specification/stream are one-indexed.  Add
fake zero index to compensate.
This commit is contained in:
David Flynn 2008-07-29 17:13:24 +00:00
parent 9c08d24d69
commit 2d5e77b87a

View File

@ -1628,6 +1628,7 @@ static void Ogg_ReadDiracHeader( logical_stream_t *p_stream,
static const struct {
uint32_t u_n /* numerator */, u_d /* denominator */;
} dirac_frate_tbl[] = { /* table 10.3 */
{1,1}, /* this first value is never used */
{24000,1001}, {24,1}, {25,1}, {30000,1001}, {30,1},
{50,1}, {60000,1001}, {60,1}, {15000,1001}, {25,2},
};