# HG changeset patch # User mru # Date 1115396069 0 # Node ID 5f07cc45fd50528f6785fb9670f69f4574a9abf2 # Parent a03f1f7497adc88f27910554cd9d3c6310927e11 Correct number of bits for PTS. Patch by Wolfram Gloger diff -r a03f1f7497ad -r 5f07cc45fd50 mpegts.c --- a/mpegts.c Fri May 06 14:19:17 2005 +0000 +++ b/mpegts.c Fri May 06 16:14:29 2005 +0000 @@ -768,7 +768,7 @@ } st = av_new_stream(pes->stream, pes->pid); if (st) { - av_set_pts_info(st, 60, 1, 90000); + av_set_pts_info(st, 33, 1, 90000); st->priv_data = pes; st->codec.codec_type = codec_type; st->codec.codec_id = codec_id;