Re: [libav-devel] [PATCH 1/3] mov: Change MOVTrack.entry to unsigned

2016-11-03 Thread Diego Biurrun
On Thu, Nov 03, 2016 at 08:41:10PM +0100, Anton Khirnov wrote: > Quoting Diego Biurrun (2016-11-03 18:32:34) > > libavformat/movenc.c:3170:12: warning: assuming signed overflow does not > > occur when assuming that (X - c) > X is always false [-Wstrict-overflow] > > This is not sufficient

Re: [libav-devel] [PATCH 1/3] mov: Change MOVTrack.entry to unsigned

2016-11-03 Thread Anton Khirnov
Quoting Diego Biurrun (2016-11-03 18:32:34) > libavformat/movenc.c:3170:12: warning: assuming signed overflow does not > occur when assuming that (X - c) > X is always false [-Wstrict-overflow] This is not sufficient explanation for the commit. Just the fact that some compiler warns about some

[libav-devel] [PATCH 1/3] mov: Change MOVTrack.entry to unsigned

2016-11-03 Thread Diego Biurrun
libavformat/movenc.c:3170:12: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow] --- libavformat/movenc.c | 2 +- libavformat/movenc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/movenc.c