[FFmpeg-cvslog] dxva2_vc1: pass the overlap flag to the decoder
Hendrik Leppkes
git at videolan.org
Wed Mar 14 03:54:16 CET 2012
ffmpeg | branch: master | Hendrik Leppkes <h.leppkes at gmail.com> | Fri Jan 20 15:19:44 2012 +0100| [7103c8350a1cb0c9fa574d9ccaa09ce5f53dbfe5] | committer: Anton Khirnov
dxva2_vc1: pass the overlap flag to the decoder
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7103c8350a1cb0c9fa574d9ccaa09ce5f53dbfe5
---
libavcodec/dxva2_vc1.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/libavcodec/dxva2_vc1.c b/libavcodec/dxva2_vc1.c
index 53c205e..2b0480b 100644
--- a/libavcodec/dxva2_vc1.c
+++ b/libavcodec/dxva2_vc1.c
@@ -101,7 +101,8 @@ static void fill_picture_parameters(AVCodecContext *avctx,
(v->rangered << 3) |
(s->max_b_frames );
pp->bPicExtrapolation = (!v->interlace || v->fcm == PROGRESSIVE) ? 1 : 2;
- pp->bPicDeblocked = ((v->profile != PROFILE_ADVANCED && v->rangeredfrm) << 5) |
+ pp->bPicDeblocked = ((!pp->bPicBackwardPrediction && v->overlap) << 6) |
+ ((v->profile != PROFILE_ADVANCED && v->rangeredfrm) << 5) |
(s->loop_filter << 1);
pp->bPicDeblockConfined = (v->postprocflag << 7) |
(v->broadcast << 6) |
More information about the ffmpeg-cvslog
mailing list