Re: [FFmpeg-devel] [PATCH 01/15] avformat/matroskaenc: Fix relative timestamp check

2019-05-08 Thread James Almer
On 5/6/2019 9:19 PM, Andreas Rheinhardt wrote: > Andreas Rheinhardt: >> At this point, ts already includes the ts_offset so that the relative >> time written with the cluster is already given by ts - mkv->cluster_pts. >> It is this number that needs to fit into an int16_t. >> >> Signed-off-by:

Re: [FFmpeg-devel] [PATCH 01/15] avformat/matroskaenc: Fix relative timestamp check

2019-05-06 Thread Andreas Rheinhardt
Andreas Rheinhardt: > At this point, ts already includes the ts_offset so that the relative > time written with the cluster is already given by ts - mkv->cluster_pts. > It is this number that needs to fit into an int16_t. > > Signed-off-by: Andreas Rheinhardt > --- > The only difference between

[FFmpeg-devel] [PATCH 01/15] avformat/matroskaenc: Fix relative timestamp check

2019-04-19 Thread Andreas Rheinhardt
At this point, ts already includes the ts_offset so that the relative time written with the cluster is already given by ts - mkv->cluster_pts. It is this number that needs to fit into an int16_t. Signed-off-by: Andreas Rheinhardt --- The only difference between this version and the earlier

[FFmpeg-devel] [PATCH 01/15] avformat/matroskaenc: Fix relative timestamp check

2019-04-02 Thread Andreas Rheinhardt via ffmpeg-devel
At this point, ts already includes the ts_offset so that the relative time written with the cluster is already given by ts - mkv->cluster_pts. It is this number that needs to fit into an int16_t. Signed-off-by: Andreas Rheinhardt --- libavformat/matroskaenc.c | 2 +- 1 file changed, 1