Re: [FFmpeg-devel] [PATCH 05/10] avformat/nutenc: Create put_* functions by macro

2020-05-09 Thread Michael Niedermayer
On Sat, May 09, 2020 at 06:04:13AM +0200, Andreas Rheinhardt wrote: > Michael Niedermayer: > > On Mon, May 04, 2020 at 08:22:45PM +0200, Andreas Rheinhardt wrote: > >> It allows to add analogous functions using e.g. the bytestream API > >> instead of using an AVIOContext. > >> > >> Signed-off-by:

Re: [FFmpeg-devel] [PATCH 05/10] avformat/nutenc: Create put_* functions by macro

2020-05-08 Thread Andreas Rheinhardt
Michael Niedermayer: > On Mon, May 04, 2020 at 08:22:45PM +0200, Andreas Rheinhardt wrote: >> It allows to add analogous functions using e.g. the bytestream API >> instead of using an AVIOContext. >> >> Signed-off-by: Andreas Rheinhardt >> --- >> libavformat/nutenc.c | 49

Re: [FFmpeg-devel] [PATCH 05/10] avformat/nutenc: Create put_* functions by macro

2020-05-08 Thread Michael Niedermayer
On Mon, May 04, 2020 at 08:22:45PM +0200, Andreas Rheinhardt wrote: > It allows to add analogous functions using e.g. the bytestream API > instead of using an AVIOContext. > > Signed-off-by: Andreas Rheinhardt > --- > libavformat/nutenc.c | 49 > 1

[FFmpeg-devel] [PATCH 05/10] avformat/nutenc: Create put_* functions by macro

2020-05-04 Thread Andreas Rheinhardt
It allows to add analogous functions using e.g. the bytestream API instead of using an AVIOContext. Signed-off-by: Andreas Rheinhardt --- libavformat/nutenc.c | 49 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/libavformat/nutenc.c