Commit ce52ba82 authored by mru's avatar mru

Correct number of bits for PTS.

Patch by Wolfram Gloger <wmglo at dent dot med dot uni-muenchen dot de>


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4188 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 26fe9df5
...@@ -768,7 +768,7 @@ static void mpegts_push_data(void *opaque, ...@@ -768,7 +768,7 @@ static void mpegts_push_data(void *opaque,
} }
st = av_new_stream(pes->stream, pes->pid); st = av_new_stream(pes->stream, pes->pid);
if (st) { if (st) {
av_set_pts_info(st, 60, 1, 90000); av_set_pts_info(st, 33, 1, 90000);
st->priv_data = pes; st->priv_data = pes;
st->codec.codec_type = codec_type; st->codec.codec_type = codec_type;
st->codec.codec_id = codec_id; st->codec.codec_id = codec_id;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment