Browse Source

avfiltergraph: add AVOption table

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 12 years ago
parent
commit
8f507feecb
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      libavfilter/avfiltergraph.c

+ 10
- 0
libavfilter/avfiltergraph.c View File

@@ -25,6 +25,7 @@

#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavcodec/avcodec.h" // avcodec_find_best_pix_fmt_of_2()
#include "avfilter.h"
@@ -32,9 +33,18 @@
#include "formats.h"
#include "internal.h"

#define OFFSET(x) offsetof(AVFilterGraph,x)

static const AVOption options[]={
{"scale_sws_opts" , "default scale filter options" , OFFSET(scale_sws_opts) , AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, 0 },
{0}
};


static const AVClass filtergraph_class = {
.class_name = "AVFilterGraph",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
.category = AV_CLASS_CATEGORY_FILTER,
};


Loading…
Cancel
Save