You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
100l typo fix, mixed up +-1 forcing the loop filter skip to never skip.
Originally committed as revision 21455 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -2201,7 +2201,7 @@ static void loop_filter(H264Context *h){
|
|||||||
uvlinesize = h->mb_uvlinesize = s->uvlinesize;
|
uvlinesize = h->mb_uvlinesize = s->uvlinesize;
|
||||||
}
|
}
|
||||||
backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
|
backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
|
||||||
if(fill_filter_caches(h, mb_type) < 0)
|
if(fill_filter_caches(h, mb_type))
|
||||||
continue;
|
continue;
|
||||||
h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
|
h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
|
||||||
h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
|
h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
|
||||||
|
Reference in New Issue
Block a user