diff options
author | Clément Bœsch <u@pkh.me> | 2014-08-07 21:21:03 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-08-07 21:24:12 +0200 |
commit | cec59eb63feff145dbc4f8e2b8cf363e84b74d48 (patch) | |
tree | 4c5c0249373f93e9bd412b35e8c6494a23d1e870 /libavfilter/version.h | |
parent | ec0b08d20b73c9257fad31838ba7837f51dcfee6 (diff) | |
download | ffmpeg-streaming-cec59eb63feff145dbc4f8e2b8cf363e84b74d48.zip ffmpeg-streaming-cec59eb63feff145dbc4f8e2b8cf363e84b74d48.tar.gz |
avfilter/dctdnoiz: add 8x8 dct and make it the default
8x8 is about 5x faster than 16x16 on 1080p input. Since a block size of
8x8 makes the filter almost usable (time wise) and it's not obvious if
8x8 or 16x16 is better from a quality PoV (it really depends on the
input and parameters), the filter now defaults to 8x8, and as a result
libavfilter is micro bumped.
Diffstat (limited to 'libavfilter/version.h')
-rw-r--r-- | libavfilter/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/version.h b/libavfilter/version.h index 1a43dc5..dfc305b 100644 --- a/libavfilter/version.h +++ b/libavfilter/version.h @@ -31,7 +31,7 @@ #define LIBAVFILTER_VERSION_MAJOR 4 #define LIBAVFILTER_VERSION_MINOR 11 -#define LIBAVFILTER_VERSION_MICRO 102 +#define LIBAVFILTER_VERSION_MICRO 103 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ |