Browse Source

24l trocadero: RTMP reader forgot to shift high byte of timestamp to its

proper position

Patch by trueice (his gmail account is obvious)

Originally committed as revision 23305 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
trueice@gmail.com Kostya Shishkov 15 years ago
parent
commit
aae9a0931c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtmpproto.c

+ 1
- 1
libavformat/rtmpproto.c View File

@@ -752,7 +752,7 @@ static int get_packet(URLContext *s, int for_header)
data_size = bytestream_get_be24(&next);
p=next;
cts = bytestream_get_be24(&next);
cts |= bytestream_get_byte(&next);
cts |= bytestream_get_byte(&next) << 24;
if (pts==0)
pts=cts;
ts += cts - pts;


Loading…
Cancel
Save