Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-12-19 06:47:28 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2013-02-24 02:07:54 +0400
commit5c7db097ebe1fb5c233cedd8846615074e7d6044 (patch)
tree9863deed4321be6abb111a4f570519f1a7e3e87e /cmdutils.h
parent9f1223562e134bac6345a465870b9d56ff7d60cf (diff)
avconv: pass libavresample options to AVFilterGraph
Diffstat (limited to 'cmdutils.h')
-rw-r--r--cmdutils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h
index ed9c68e9c0..84d906855b 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -42,7 +42,7 @@ extern const int program_birth_year;
extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB];
extern AVFormatContext *avformat_opts;
extern struct SwsContext *sws_opts;
-extern AVDictionary *format_opts, *codec_opts;
+extern AVDictionary *format_opts, *codec_opts, *resample_opts;
/**
* Initialize the cmdutils option system, in particular
@@ -235,6 +235,7 @@ typedef struct OptionGroup {
AVDictionary *codec_opts;
AVDictionary *format_opts;
+ AVDictionary *resample_opts;
struct SwsContext *sws_opts;
} OptionGroup;