Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-13 Thread Michael Niedermayer
On Wed, Dec 13, 2017 at 03:04:06AM -0600, Rodger Combs wrote: > > > > On Dec 10, 2017, at 09:27, Michael Niedermayer > > wrote: > > > > On Sun, Dec 10, 2017 at 05:17:44AM -0600, Rodger Combs wrote: > >> > >> > >>> On Dec 9, 2017, at 12:19, Michael Niedermayer > >>> wrote: > >>> > >>> On F

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-13 Thread Rodger Combs
> On Dec 10, 2017, at 09:27, Michael Niedermayer wrote: > > On Sun, Dec 10, 2017 at 05:17:44AM -0600, Rodger Combs wrote: >> >> >>> On Dec 9, 2017, at 12:19, Michael Niedermayer >>> wrote: >>> >>> On Fri, Dec 08, 2017 at 10:34:39PM -0600, Rodger Combs wrote: > On Dec 8, 201

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-10 Thread Michael Niedermayer
On Sun, Dec 10, 2017 at 04:30:25PM +0100, Nicolas George wrote: > Michael Niedermayer (2017-12-10): > > IIUC we are still within the major bump thing (didnt check but others > > have said it in relation to other changes) > > Well, there are no laws that say when we leave the "major bump thing". >

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-10 Thread Nicolas George
Michael Niedermayer (2017-12-10): > IIUC we are still within the major bump thing (didnt check but others > have said it in relation to other changes) Well, there are no laws that say when we leave the "major bump thing". We dice how long it lasts. I can suggest this: versions with minor 0 have a

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-10 Thread Michael Niedermayer
On Sun, Dec 10, 2017 at 05:17:44AM -0600, Rodger Combs wrote: > > > > On Dec 9, 2017, at 12:19, Michael Niedermayer > > wrote: > > > > On Fri, Dec 08, 2017 at 10:34:39PM -0600, Rodger Combs wrote: > >> > >> > >>> On Dec 8, 2017, at 11:06, Michael Niedermayer > >>> wrote: > >>> > >>> On Th

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-10 Thread Rodger Combs
> On Dec 9, 2017, at 12:19, Michael Niedermayer wrote: > > On Fri, Dec 08, 2017 at 10:34:39PM -0600, Rodger Combs wrote: >> >> >>> On Dec 8, 2017, at 11:06, Michael Niedermayer >>> wrote: >>> >>> On Thu, Dec 07, 2017 at 10:23:15PM -0600, Rodger Combs wrote: --- libavformat/avform

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-09 Thread Michael Niedermayer
On Fri, Dec 08, 2017 at 10:34:39PM -0600, Rodger Combs wrote: > > > > On Dec 8, 2017, at 11:06, Michael Niedermayer > > wrote: > > > > On Thu, Dec 07, 2017 at 10:23:15PM -0600, Rodger Combs wrote: > >> --- > >> libavformat/avformat.h | 1 + > >> libavformat/options_table.h | 1 + > >> libav

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-08 Thread Rodger Combs
> On Dec 8, 2017, at 11:06, Michael Niedermayer wrote: > > On Thu, Dec 07, 2017 at 10:23:15PM -0600, Rodger Combs wrote: >> --- >> libavformat/avformat.h | 1 + >> libavformat/options_table.h | 1 + >> libavformat/utils.c | 8 >> 3 files changed, 10 insertions(+) >> >> diff

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-08 Thread Michael Niedermayer
On Thu, Dec 07, 2017 at 10:23:15PM -0600, Rodger Combs wrote: > --- > libavformat/avformat.h | 1 + > libavformat/options_table.h | 1 + > libavformat/utils.c | 8 > 3 files changed, 10 insertions(+) > > diff --git a/libavformat/avformat.h b/libavformat/avformat.h > index 4f

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-07 Thread Carl Eugen Hoyos
2017-12-08 5:23 GMT+01:00 Rodger Combs : > +if ((s->flags & AVFMT_FLAG_DISCARD_CORRUPT_TS) && > +(pkt->flags & AV_PKT_FLAG_CORRUPT)) { The brackets look ugly. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://f

[FFmpeg-devel] [PATCH 2/3] lavf/utils: add flag to discard timestamps on corrupted frames

2017-12-07 Thread Rodger Combs
--- libavformat/avformat.h | 1 + libavformat/options_table.h | 1 + libavformat/utils.c | 8 3 files changed, 10 insertions(+) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 4f2798a871..d10d583dff 100644 --- a/libavformat/avformat.h +++ b/libavformat/avf