Mercurial > libavformat.hg
diff pva.c @ 2895:54e2afeca044 libavformat
proper type and initialization of pva_pts
| author | ivo |
|---|---|
| date | Sat, 05 Jan 2008 22:13:27 +0000 |
| parents | 35cc09bfab21 |
| children | b6d3640bedeb |
line wrap: on
line diff
--- a/pva.c Sat Jan 05 22:10:00 2008 +0000 +++ b/pva.c Sat Jan 05 22:13:27 2008 +0000 @@ -64,7 +64,7 @@ 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);
