diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-22 19:01:36 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-22 19:07:28 +0200 |
commit | cf47a6a1a0848567d1453f2830d567f22e551dca (patch) | |
tree | b67e45211796ec4045fbbba753cb533a45ebc22a /cmdutils.h | |
parent | c2f3715cb3fce093137591e3005de3e831b1f9fd (diff) | |
parent | f825d42bccdb9f89669a586951de7f66a81e80a5 (diff) | |
download | ffmpeg-cf47a6a1a0848567d1453f2830d567f22e551dca.tar.gz |
Merge commit 'f825d42bccdb9f89669a586951de7f66a81e80a5'
* commit 'f825d42bccdb9f89669a586951de7f66a81e80a5':
avplay: Accept cpuflags option
Conflicts:
cmdutils_common_opts.h
doc/ffmpeg.texi
doc/fftools-common-opts.texi
ffmpeg_opt.c
See: 1060e9ce5454e7ac009969ab2cf8f7cd83a69ac3
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cmdutils.h b/cmdutils.h index 2e9b604a97..49bb765724 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -82,6 +82,11 @@ void uninit_opts(void); void log_callback_help(void* ptr, int level, const char* fmt, va_list vl); /** + * Override the cpuflags. + */ +int opt_cpuflags(void *optctx, const char *opt, const char *arg); + +/** * Fallback for options that are not explicitly handled, these will be * parsed through AVOptions. */ @@ -96,8 +101,6 @@ int opt_report(const char *opt); int opt_max_alloc(void *optctx, const char *opt, const char *arg); -int opt_cpuflags(void *optctx, const char *opt, const char *arg); - int opt_codec_debug(void *optctx, const char *opt, const char *arg); int opt_opencl(void *optctx, const char *opt, const char *arg); |