mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
[fix] Minor fixes
This commit is contained in:
parent
8c14fa94ba
commit
805afb1331
|
@ -1304,7 +1304,7 @@ static void encoder_state_encode(encoder_state_t * const main_state) {
|
|||
sub_state->tile->frame->width_in_lcu * LCU_WIDTH,
|
||||
sub_state->tile->frame->height_in_lcu * LCU_WIDTH
|
||||
);
|
||||
if(main_state->encoder_control->cfg.dual_tree){
|
||||
if(main_state->encoder_control->cfg.dual_tree && main_state->frame->is_irap){
|
||||
sub_state->tile->frame->chroma_cu_array = uvg_cu_subarray(
|
||||
main_state->tile->frame->chroma_cu_array,
|
||||
offset_x,
|
||||
|
|
|
@ -190,18 +190,6 @@ static void uvg_angular_pred_generic(
|
|||
if (!vertical_mode) { SWAP(width, height, int) }
|
||||
|
||||
if (sample_disp != 0) {
|
||||
// The mode is not horizontal or vertical, we have to do interpolation.
|
||||
|
||||
for (int_fast32_t y = 0, delta_pos = sample_disp * (1 + multi_ref_index); y < height; ++y, delta_pos += sample_disp) {
|
||||
int_fast32_t delta_int = delta_pos >> 5;
|
||||
int_fast32_t delta_fract = delta_pos & (32 - 1);
|
||||
|
||||
if ((abs(sample_disp) & 0x1F) != 0) {
|
||||
|
||||
// Luma Channel
|
||||
if (channel_type == 0) {
|
||||
int32_t ref_main_index = delta_int;
|
||||
uvg_pixel p[4];
|
||||
bool use_cubic = true; // Default to cubic filter
|
||||
static const int uvg_intra_hor_ver_dist_thres[8] = { 24, 24, 24, 14, 2, 0, 0, 0 };
|
||||
int filter_threshold = uvg_intra_hor_ver_dist_thres[(log2_width + log2_height) >> 1];
|
||||
|
@ -216,8 +204,22 @@ static void uvg_angular_pred_generic(
|
|||
if (multi_ref_index || isp) {
|
||||
use_cubic = true;
|
||||
}
|
||||
// The mode is not horizontal or vertical, we have to do interpolation.
|
||||
|
||||
for (int_fast32_t y = 0, delta_pos = sample_disp * (1 + multi_ref_index); y < height; ++y, delta_pos += sample_disp) {
|
||||
|
||||
int_fast32_t delta_int = delta_pos >> 5;
|
||||
int_fast32_t delta_fract = delta_pos & (32 - 1);
|
||||
const int16_t filter_coeff[4] = { 16 - (delta_fract >> 1), 32 - (delta_fract >> 1), 16 + (delta_fract >> 1), delta_fract >> 1 };
|
||||
int16_t const * const f = use_cubic ? cubic_filter[delta_fract] : filter_coeff;
|
||||
int16_t const* const f = use_cubic ? cubic_filter[delta_fract] : filter_coeff;
|
||||
|
||||
if ((abs(sample_disp) & 0x1F) != 0) {
|
||||
|
||||
// Luma Channel
|
||||
if (channel_type == 0) {
|
||||
int32_t ref_main_index = delta_int;
|
||||
uvg_pixel p[4];
|
||||
|
||||
// Do 4-tap intra interpolation filtering
|
||||
for (int_fast32_t x = 0; x < width; x++, ref_main_index++) {
|
||||
p[0] = ref_main[ref_main_index];
|
||||
|
|
Loading…
Reference in a new issue