1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

use one shift less in get_pts()

Originally committed as revision 11383 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ivo van Poorten 2008-01-03 10:02:46 +00:00
parent b44665c4e6
commit 3d94e3ba93

View File

@ -125,7 +125,7 @@ static int64_t get_pts(ByteIOContext *pb, int c)
if (c < 0)
c = get_byte(pb);
pts = (int64_t)((c >> 1) & 0x07) << 30;
pts = (int64_t)(c & 0x0e) << 29;
val = get_be16(pb);
pts |= (int64_t)(val >> 1) << 15;
val = get_be16(pb);