diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-17 22:28:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:14 +0100 |
commit | e6c90ce94f1b07f50cea2babf7471af455cca0ff (patch) | |
tree | 90a6a210485a743e4d59de27b7094a3d861c8546 /libavcodec/h264_mb.c | |
parent | bd3e460b73dd54a68dc253e010c239cefc8d8d55 (diff) | |
download | ffmpeg-e6c90ce94f1b07f50cea2babf7471af455cca0ff.tar.gz |
h264: move loopfilter parameters into the per-slice context
Diffstat (limited to 'libavcodec/h264_mb.c')
-rw-r--r-- | libavcodec/h264_mb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_mb.c b/libavcodec/h264_mb.c index 5176e54e33..d29e2c632f 100644 --- a/libavcodec/h264_mb.c +++ b/libavcodec/h264_mb.c @@ -523,7 +523,7 @@ static av_always_inline void xchg_mb_border(H264Context *h, H264SliceContext *sl } } - if (h->deblocking_filter == 2) { + if (sl->deblocking_filter == 2) { deblock_topleft = h->slice_table[h->mb_xy - 1 - h->mb_stride] == sl->slice_num; deblock_top = sl->top_type; } else { |