Re: [FFmpeg-devel] [PATCH] avformat/dump: Fix sign bug in reported "start" time

2016-04-13 Thread Michael Niedermayer
On Tue, Apr 12, 2016 at 09:49:27PM -0700, Bryan Huh wrote: > Previously, the bug was that if -1 < start_time < 0, the reported > "start" time would lose the negative-sign. > --- > libavformat/dump.c | 8 +--- > 1 file changed, 5 insertions(+), 3 deletions(-) applied thanks [...] -- Michael

[FFmpeg-devel] [PATCH] avformat/dump: Fix sign bug in reported "start" time

2016-04-12 Thread Bryan Huh
Previously, the bug was that if -1 < start_time < 0, the reported "start" time would lose the negative-sign. --- libavformat/dump.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libavformat/dump.c b/libavformat/dump.c index 3d117f6..a84dcc6 100644 --- a/libavformat/du