avconv: pass libavresample options to AVFilterGraph

This commit is contained in:
Justin Ruggles
2012-12-18 21:47:28 -05:00
parent 9f1223562e
commit 5c7db097eb
6 changed files with 33 additions and 4 deletions

View File

@ -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;