[FFmpeg-devel] [PATCH v2 5/5] libdc1394: Fix PTS wrapping

2020-10-15 Thread Forest Crossman
Without this, the timestamp will unexpectedly wrap around after approximately 2146 frames (on a 64-bit system, at least), which is about 19 minutes at the lowest framerate supported by the IIDC standard and about 9 seconds at the highest supported framerate. To fix this, we use av_rescale() to do

[FFmpeg-devel] [PATCH v2 5/5] libdc1394: Fix PTS wrapping

2019-10-27 Thread Forest Crossman
Without this, the timestamp will unexpectedly wrap around after approximately 2146 frames (on a 64-bit system, at least), which is about 19 minutes at the lowest framerate supported by the IIDC standard and about 9 seconds at the highest supported framerate. To fix this, we use av_rescale() to do