Re: [FFmpeg-devel] [PATCH V3 5/7] avformat: add rc_max_rate to AVStream

2018-11-22 Thread Hendrik Leppkes
On Fri, Nov 23, 2018 at 4:16 AM myp...@gmail.com wrote: > > On Thu, Nov 22, 2018 at 11:12 PM Hendrik Leppkes wrote: > > > > On Thu, Nov 22, 2018 at 4:04 PM Jun Zhao wrote: > > > > > > This field will be used in demuxer to expose the max bit rate, e,g > > > in MOV/MP4 esds box. > > > > > > Signed

Re: [FFmpeg-devel] [PATCH V3 5/7] avformat: add rc_max_rate to AVStream

2018-11-22 Thread myp...@gmail.com
On Thu, Nov 22, 2018 at 11:12 PM Hendrik Leppkes wrote: > > On Thu, Nov 22, 2018 at 4:04 PM Jun Zhao wrote: > > > > This field will be used in demuxer to expose the max bit rate, e,g > > in MOV/MP4 esds box. > > > > Signed-off-by: Jun Zhao > > --- > > doc/APIchanges |3 +++ > > liba

Re: [FFmpeg-devel] [PATCH V3 5/7] avformat: add rc_max_rate to AVStream

2018-11-22 Thread Hendrik Leppkes
On Thu, Nov 22, 2018 at 4:04 PM Jun Zhao wrote: > > This field will be used in demuxer to expose the max bit rate, e,g > in MOV/MP4 esds box. > > Signed-off-by: Jun Zhao > --- > doc/APIchanges |3 +++ > libavformat/avformat.h |6 ++ > libavformat/version.h |2 +- > 3 fil

[FFmpeg-devel] [PATCH V3 5/7] avformat: add rc_max_rate to AVStream

2018-11-22 Thread Jun Zhao
This field will be used in demuxer to expose the max bit rate, e,g in MOV/MP4 esds box. Signed-off-by: Jun Zhao --- doc/APIchanges |3 +++ libavformat/avformat.h |6 ++ libavformat/version.h |2 +- 3 files changed, 10 insertions(+), 1 deletions(-) diff --git a/doc/APIch