diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-03-03 21:38:03 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-03-04 06:52:06 -0800 |
commit | 1c97b5c4a3c7091932b905d20e5661fc6f9585c2 (patch) | |
tree | 5e05b35a9811cee6db0e76c7f8f947e2fae5231e /libswscale | |
parent | 4db4b53dc8ac81f10414b48aa6d954ba2c232a92 (diff) | |
download | ffmpeg-streaming-1c97b5c4a3c7091932b905d20e5661fc6f9585c2.zip ffmpeg-streaming-1c97b5c4a3c7091932b905d20e5661fc6f9585c2.tar.gz |
swscale: remove "cpu flags" from -sws_flags description.
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/options.c b/libswscale/options.c index 8072d43..7ed5254 100644 --- a/libswscale/options.c +++ b/libswscale/options.c @@ -34,7 +34,7 @@ static const char *sws_context_to_name(void *ptr) #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM static const AVOption options[] = { - { "sws_flags", "scaler/cpu flags", OFFSET(flags), AV_OPT_TYPE_FLAGS, { .dbl = DEFAULT }, 0, UINT_MAX, VE, "sws_flags" }, + { "sws_flags", "scaler flags", OFFSET(flags), AV_OPT_TYPE_FLAGS, { .dbl = DEFAULT }, 0, UINT_MAX, VE, "sws_flags" }, { "fast_bilinear", "fast bilinear", 0, AV_OPT_TYPE_CONST, { .dbl = SWS_FAST_BILINEAR }, INT_MIN, INT_MAX, VE, "sws_flags" }, { "bilinear", "bilinear", 0, AV_OPT_TYPE_CONST, { .dbl = SWS_BILINEAR }, INT_MIN, INT_MAX, VE, "sws_flags" }, { "bicubic", "bicubic", 0, AV_OPT_TYPE_CONST, { .dbl = SWS_BICUBIC }, INT_MIN, INT_MAX, VE, "sws_flags" }, |