You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge commit '84c0ece5fd9569c0f31804f02a199ecd0e7d13d8'
* commit '84c0ece5fd9569c0f31804f02a199ecd0e7d13d8': hevc: further reduce code duplication in hls_prediction_unit() Conflicts: libavcodec/hevc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1617,12 +1617,6 @@ static void hls_prediction_unit(HEVCContext *s, int x0, int y0,
|
|||||||
|
|
||||||
ff_hevc_luma_mv_merge_mode(s, x0, y0, nPbW, nPbH, log2_cb_size,
|
ff_hevc_luma_mv_merge_mode(s, x0, y0, nPbW, nPbH, log2_cb_size,
|
||||||
partIdx, merge_idx, ¤t_mv);
|
partIdx, merge_idx, ¤t_mv);
|
||||||
x_pu = x0 >> s->sps->log2_min_pu_size;
|
|
||||||
y_pu = y0 >> s->sps->log2_min_pu_size;
|
|
||||||
|
|
||||||
for (j = 0; j < nPbH >> s->sps->log2_min_pu_size; j++)
|
|
||||||
for (i = 0; i < nPbW >> s->sps->log2_min_pu_size; i++)
|
|
||||||
tab_mvf[(y_pu + j) * min_pu_width + x_pu + i] = current_mv;
|
|
||||||
} else {
|
} else {
|
||||||
enum InterPredIdc inter_pred_idc = PRED_L0;
|
enum InterPredIdc inter_pred_idc = PRED_L0;
|
||||||
ff_hevc_set_neighbour_available(s, x0, y0, nPbW, nPbH);
|
ff_hevc_set_neighbour_available(s, x0, y0, nPbW, nPbH);
|
||||||
@@ -1666,15 +1660,15 @@ static void hls_prediction_unit(HEVCContext *s, int x0, int y0,
|
|||||||
current_mv.mv[1].x += lc->pu.mvd.x;
|
current_mv.mv[1].x += lc->pu.mvd.x;
|
||||||
current_mv.mv[1].y += lc->pu.mvd.y;
|
current_mv.mv[1].y += lc->pu.mvd.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
x_pu = x0 >> s->sps->log2_min_pu_size;
|
|
||||||
y_pu = y0 >> s->sps->log2_min_pu_size;
|
|
||||||
|
|
||||||
for(j = 0; j < nPbH >> s->sps->log2_min_pu_size; j++)
|
|
||||||
for (i = 0; i < nPbW >> s->sps->log2_min_pu_size; i++)
|
|
||||||
tab_mvf[(y_pu + j) * min_pu_width + x_pu + i] = current_mv;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
x_pu = x0 >> s->sps->log2_min_pu_size;
|
||||||
|
y_pu = y0 >> s->sps->log2_min_pu_size;
|
||||||
|
|
||||||
|
for (j = 0; j < nPbH >> s->sps->log2_min_pu_size; j++)
|
||||||
|
for (i = 0; i < nPbW >> s->sps->log2_min_pu_size; i++)
|
||||||
|
tab_mvf[(y_pu + j) * min_pu_width + x_pu + i] = current_mv;
|
||||||
|
|
||||||
if (current_mv.pred_flag & PF_L0) {
|
if (current_mv.pred_flag & PF_L0) {
|
||||||
ref0 = refPicList[0].ref[current_mv.ref_idx[0]];
|
ref0 = refPicList[0].ref[current_mv.ref_idx[0]];
|
||||||
if (!ref0)
|
if (!ref0)
|
||||||
|
Reference in New Issue
Block a user