diff options
author | Ivo van Poorten <ivop@euronet.nl> | 2008-01-05 22:13:27 +0000 |
---|---|---|
committer | Ivo van Poorten <ivop@euronet.nl> | 2008-01-05 22:13:27 +0000 |
commit | 0e8a207ff843406f0432327c39a213c0c9cdfa49 (patch) | |
tree | 3e440f06e00bb707f3e7e7894761707f35a6200c /libavformat/pva.c | |
parent | 6a5ef2934c3c1af1fa087bf2cbc21b1064912d7a (diff) | |
download | ffmpeg-0e8a207ff843406f0432327c39a213c0c9cdfa49.tar.gz |
proper type and initialization of pva_pts
Originally committed as revision 11425 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/pva.c')
-rw-r--r-- | libavformat/pva.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |