1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

proper type and initialization of pva_pts

Originally committed as revision 11425 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ivo van Poorten 2008-01-05 22:13:27 +00:00
parent 6a5ef2934c
commit 0e8a207ff8

View File

@ -64,7 +64,7 @@ static int pva_read_packet(AVFormatContext *s, AVPacket *pkt) {
ByteIOContext *pb = s->pb;
PVAContext *pvactx = s->priv_data;
int ret, syncword, streamid, reserved, flags, length, pts_flag;
long long pva_pts = 0;
int64_t pva_pts = AV_NOPTS_VALUE;
syncword = get_be16(pb);
streamid = get_byte(pb);