[FFmpeg-devel] [PATCH] lavu/opt.h: add AV_OPT_FLAG_FILTERING_PARAM macro

Stefano Sabatini stefasab at gmail.com
Sun Aug 12 12:12:53 CEST 2012


On date Saturday 2012-08-11 13:54:20 +0200, Michael Niedermayer encoded:
> On Sat, Aug 11, 2012 at 12:02:54PM +0200, Stefano Sabatini wrote:
[...]
> > From edea00aa24565eec9ba52e8e00ed67a55f08be0b Mon Sep 17 00:00:00 2001
> > From: Stefano Sabatini <stefasab at gmail.com>
> > Date: Thu, 9 Aug 2012 16:21:07 +0200
> > Subject: [PATCH] lavu/opt.h: add AV_OPT_FLAG_FILTERING_PARAM macro
> > 
> > ---
> >  libavutil/opt.c |    1 +
> >  libavutil/opt.h |    2 ++
> >  2 files changed, 3 insertions(+), 0 deletions(-)
> > 
> > diff --git a/libavutil/opt.c b/libavutil/opt.c
> > index 02869e4..0adbddd 100644
> > --- a/libavutil/opt.c
> > +++ b/libavutil/opt.c
> > @@ -634,6 +634,7 @@ static void opt_list(void *obj, void *av_log_obj, const char *unit,
> >          }
> >          av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_ENCODING_PARAM) ? 'E' : '.');
> >          av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_DECODING_PARAM) ? 'D' : '.');
> > +        av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_FILTERING_PARAM)? 'F' : '.');
> >          av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_VIDEO_PARAM   ) ? 'V' : '.');
> >          av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_AUDIO_PARAM   ) ? 'A' : '.');
> >          av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_SUBTITLE_PARAM) ? 'S' : '.');
> > diff --git a/libavutil/opt.h b/libavutil/opt.h
> > index b947814..1f4e1c6 100644
> > --- a/libavutil/opt.h
> > +++ b/libavutil/opt.h
> > @@ -279,6 +279,8 @@ typedef struct AVOption {
> >  #define AV_OPT_FLAG_AUDIO_PARAM     8
> >  #define AV_OPT_FLAG_VIDEO_PARAM     16
> >  #define AV_OPT_FLAG_SUBTITLE_PARAM  32
> > +#define AV_OPT_FLAG_FILTERING_PARAM MKBETAG('F','I','L','T')
> 
> i dont think bitwise orring that together with other things will work

Updated, this time not before switching my brain on.
-- 
FFmpeg = Frightening and Free Multimedia Powered Ecumenical Game
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0005-lavu-opt.h-add-AV_OPT_FLAG_FILTERING_PARAM-macro.patch
Type: text/x-diff
Size: 1570 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20120812/30ea9299/attachment.bin>


More information about the ffmpeg-devel mailing list