You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
hevc: wait proper position for tmvp
The position is either rounded or not checked, so delay the wait to check the proper value. Reviewed-by: Mickaël Raulet <mraulet@insa-rennes.fr> Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
committed by
Anton Khirnov
parent
cf6090dc62
commit
14ca0aa69b
@@ -267,13 +267,13 @@ static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0,
|
|||||||
x = x0 + nPbW;
|
x = x0 + nPbW;
|
||||||
y = y0 + nPbH;
|
y = y0 + nPbH;
|
||||||
|
|
||||||
ff_thread_await_progress(&ref->tf, y, 0);
|
|
||||||
if (tab_mvf &&
|
if (tab_mvf &&
|
||||||
(y0 >> s->sps->log2_ctb_size) == (y >> s->sps->log2_ctb_size) &&
|
(y0 >> s->sps->log2_ctb_size) == (y >> s->sps->log2_ctb_size) &&
|
||||||
y < s->sps->height &&
|
y < s->sps->height &&
|
||||||
x < s->sps->width) {
|
x < s->sps->width) {
|
||||||
x &= ~15;
|
x &= ~15;
|
||||||
y &= ~15;
|
y &= ~15;
|
||||||
|
ff_thread_await_progress(&ref->tf, y, 0);
|
||||||
x_pu = x >> s->sps->log2_min_pu_size;
|
x_pu = x >> s->sps->log2_min_pu_size;
|
||||||
y_pu = y >> s->sps->log2_min_pu_size;
|
y_pu = y >> s->sps->log2_min_pu_size;
|
||||||
temp_col = TAB_MVF(x_pu, y_pu);
|
temp_col = TAB_MVF(x_pu, y_pu);
|
||||||
@@ -286,6 +286,7 @@ static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0,
|
|||||||
y = y0 + (nPbH >> 1);
|
y = y0 + (nPbH >> 1);
|
||||||
x &= ~15;
|
x &= ~15;
|
||||||
y &= ~15;
|
y &= ~15;
|
||||||
|
ff_thread_await_progress(&ref->tf, y, 0);
|
||||||
x_pu = x >> s->sps->log2_min_pu_size;
|
x_pu = x >> s->sps->log2_min_pu_size;
|
||||||
y_pu = y >> s->sps->log2_min_pu_size;
|
y_pu = y >> s->sps->log2_min_pu_size;
|
||||||
temp_col = TAB_MVF(x_pu, y_pu);
|
temp_col = TAB_MVF(x_pu, y_pu);
|
||||||
|
Reference in New Issue
Block a user