diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-01-10 10:15:07 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-10 10:15:07 +0000 |
commit | 649537438eaf5592ce5a08623e0d9e85a484ff40 (patch) | |
tree | 19a47da7bd4e0e815729251d17a27dcc5dded4ef /libpostproc | |
parent | 81ab1fa13e1bc7c2be6acb01e0668dbabb08d874 (diff) | |
download | ffmpeg-649537438eaf5592ce5a08623e0d9e85a484ff40.tar.gz |
Reduce the size of the replaceTable entries.
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com
Originally committed as revision 11486 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 6ae8c1dcd5..1e843422be 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -139,11 +139,11 @@ static struct PPFilter filters[]= static const char *replaceTable[]= { - "default", "hdeblock:a,vdeblock:a,dering:a", - "de", "hdeblock:a,vdeblock:a,dering:a", - "fast", "x1hdeblock:a,x1vdeblock:a,dering:a", - "fa", "x1hdeblock:a,x1vdeblock:a,dering:a", - "ac", "ha:a:128:7,va:a,dering:a", + "default", "hb:a,vb:a,dr:a", + "de", "hb:a,vb:a,dr:a", + "fast", "h1:a,v1:a,dr:a", + "fa", "h1:a,v1:a,dr:a", + "ac", "ha:a:128:7,va:a,dr:a", NULL //End Marker }; |