Revert VP8 Deblocker.

Review URL: https://webrtc-codereview.appspot.com/563007

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2191 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pwestin@webrtc.org 2012-05-08 09:06:31 +00:00
parent 5019c9583c
commit 7415f371ac

View File

@ -612,8 +612,9 @@ int VP8Decoder::InitDecode(const VideoCodec* inst, int number_of_cores) {
vpx_codec_flags_t flags = 0;
#if WEBRTC_LIBVPX_VERSION >= 971
flags = VPX_CODEC_USE_ERROR_CONCEALMENT | VPX_CODEC_USE_POSTPROC |
VP8_DEMACROBLOCK | VP8_DEBLOCK;
flags = VPX_CODEC_USE_ERROR_CONCEALMENT | VPX_CODEC_USE_POSTPROC;
// TODO(pwestin) enable deblock with the next VP8 drop.
// | VP8_DEMACROBLOCK | VP8_DEBLOCK;
#ifdef INDEPENDENT_PARTITIONS
flags |= VPX_CODEC_USE_INPUT_PARTITION;
#endif