summaryrefslogtreecommitdiffstats
path: root/libhb/deblock.c
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-09-24 20:00:28 +0000
committerjbrjake <[email protected]>2008-09-24 20:00:28 +0000
commitf64be95d8eeeef3d6d84469df557836dd86192f0 (patch)
tree3a59e45b18ceb9d881faa255553f66fd804b4bd6 /libhb/deblock.c
parenta7881d6b82326866c341d354027542cf48228033 (diff)
Sets the default QP of deblock to 5 instead of 0. This way the filter actually does something when called without an option string besides copying input to output.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1758 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/deblock.c')
-rw-r--r--libhb/deblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/deblock.c b/libhb/deblock.c
index 42b7d8c4c..dbc669031 100644
--- a/libhb/deblock.c
+++ b/libhb/deblock.c
@@ -20,7 +20,7 @@
#include "libavcodec/avcodec.h"
#include "mpeg2dec/mpeg2.h"
-#define PP7_QP_DEFAULT 0
+#define PP7_QP_DEFAULT 5
#define PP7_MODE_DEFAULT 2
#define XMIN(a,b) ((a) < (b) ? (a) : (b))