Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-29 Thread Matthieu Bouron
On Tue, Mar 28, 2017 at 10:06:31PM +0200, Michael Niedermayer wrote: > On Tue, Mar 28, 2017 at 04:54:38PM +0200, Matthieu Bouron wrote: > > On Tue, Mar 28, 2017 at 12:32 PM, Matthieu Bouron > > wrote: > > > > > Also limits remuxing to audio, video and subtitle

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread Michael Niedermayer
On Tue, Mar 28, 2017 at 04:54:38PM +0200, Matthieu Bouron wrote: > On Tue, Mar 28, 2017 at 12:32 PM, Matthieu Bouron > wrote: > > > Also limits remuxing to audio, video and subtitle streams. > > --- > > doc/examples/remuxing.c | 48 ++ > >

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread Matthieu Bouron
On Tue, Mar 28, 2017 at 12:32 PM, Matthieu Bouron wrote: > Also limits remuxing to audio, video and subtitle streams. > --- > doc/examples/remuxing.c | 48 ++ > +++--- > 1 file changed, 41 insertions(+), 7 deletions(-) > > diff

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread Matthieu Bouron
On Tue, Mar 28, 2017 at 4:21 PM, Moritz Barsnick wrote: > On Tue, Mar 28, 2017 at 12:32:19 +0200, Matthieu Bouron wrote: > > -fprintf(stderr, "Failed to copy context from input to > output stream codec context\n"); > > +fprintf(stderr, "Failed to copy

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread Moritz Barsnick
On Tue, Mar 28, 2017 at 12:32:19 +0200, Matthieu Bouron wrote: > -fprintf(stderr, "Failed to copy context from input to output > stream codec context\n"); > +fprintf(stderr, "Failed to copy copy codec parameters\n"); "copy copy"? Moritz

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread wm4
On Tue, 28 Mar 2017 13:09:54 +0200 Matthieu Bouron wrote: > On Tue, Mar 28, 2017 at 12:48 PM, wm4 wrote: > > > On Tue, 28 Mar 2017 12:32:19 +0200 > > Matthieu Bouron wrote: > > > > > Also limits remuxing to audio,

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread Matthieu Bouron
On Tue, Mar 28, 2017 at 12:48 PM, wm4 wrote: > On Tue, 28 Mar 2017 12:32:19 +0200 > Matthieu Bouron wrote: > > > Also limits remuxing to audio, video and subtitle streams. > > --- > > doc/examples/remuxing.c | 48 ++

Re: [FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread wm4
On Tue, 28 Mar 2017 12:32:19 +0200 Matthieu Bouron wrote: > Also limits remuxing to audio, video and subtitle streams. > --- > doc/examples/remuxing.c | 48 +--- > 1 file changed, 41 insertions(+), 7 deletions(-) > > diff

[FFmpeg-devel] [PATCH] doc/examples/remuxing: switch to codecpar

2017-03-28 Thread Matthieu Bouron
Also limits remuxing to audio, video and subtitle streams. --- doc/examples/remuxing.c | 48 +--- 1 file changed, 41 insertions(+), 7 deletions(-) diff --git a/doc/examples/remuxing.c b/doc/examples/remuxing.c index 65437d9abd..8615c73842 100644 ---