From 0e8a207ff843406f0432327c39a213c0c9cdfa49 Mon Sep 17 00:00:00 2001 From: Ivo van Poorten Date: Sat, 5 Jan 2008 22:13:27 +0000 Subject: proper type and initialization of pva_pts Originally committed as revision 11425 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/pva.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/pva.c') diff --git a/libavformat/pva.c b/libavformat/pva.c index 87f79a0451..d4e6d050c4 100644 --- a/libavformat/pva.c +++ b/libavformat/pva.c @@ -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); -- cgit v1.2.3