Re: [FFmpeg-devel] [PATCH] lavfi/transpose: add missing const options flags

2016-12-27 Thread Clement Boesch
On Tue, Dec 27, 2016 at 11:31:17AM +0100, Paul B Mahol wrote: > On 12/27/16, Clement Boesch wrote: > > Fixes ffmpeg -h filter=transpose > > > > --- > > Should we instead ignore the flags for AV_OPT_TYPE_CONST? > > --- > > libavfilter/vf_transpose.c | 8 > > 1 file changed, 4 insertions(+

Re: [FFmpeg-devel] [PATCH] lavfi/transpose: add missing const options flags

2016-12-27 Thread Paul B Mahol
On 12/27/16, Clement Boesch wrote: > Fixes ffmpeg -h filter=transpose > > --- > Should we instead ignore the flags for AV_OPT_TYPE_CONST? > --- > libavfilter/vf_transpose.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/libavfilter/vf_transpose.c b/libavfilter/vf

[FFmpeg-devel] [PATCH] lavfi/transpose: add missing const options flags

2016-12-27 Thread Clément Bœsch
Fixes ffmpeg -h filter=transpose --- Should we instead ignore the flags for AV_OPT_TYPE_CONST? --- libavfilter/vf_transpose.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavfilter/vf_transpose.c b/libavfilter/vf_transpose.c index 28226c3cfd..75b4dda41f 100644 ---