uvg266/src/cu.c

82 lines
2.3 KiB
C
Raw Normal View History

2014-06-05 07:48:59 +00:00
/*****************************************************************************
* This file is part of Kvazaar HEVC encoder.
*
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
2014-06-05 07:48:59 +00:00
* COPYING file).
*
* Kvazaar is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
2014-06-05 07:48:59 +00:00
*
* Kvazaar is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
2014-06-05 07:48:59 +00:00
*
* You should have received a copy of the GNU General Public License along
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
2014-06-05 07:48:59 +00:00
****************************************************************************/
/*
* \file
*/
#include <string.h>
#include <stdlib.h>
2014-06-05 07:48:59 +00:00
#include "cu.h"
2014-06-16 06:17:22 +00:00
#include "threads.h"
void kvz_coefficients_blit(const coeff_t * const orig, coeff_t * const dst,
const unsigned width, const unsigned height,
const unsigned orig_stride, const unsigned dst_stride)
{
unsigned y;
for (y = 0; y < height; ++y) {
memcpy(&dst[y*dst_stride], &orig[y*orig_stride], width * sizeof(coeff_t));
}
}
unsigned kvz_coefficients_calc_abs(const coeff_t *const buf, const int buf_stride,
const int width)
2014-06-05 07:48:59 +00:00
{
int sum = 0;
int y, x;
for (y = 0; y < width; ++y) {
for (x = 0; x < width; ++x) {
sum += abs(buf[x + y * buf_stride]);
}
}
return sum;
2014-06-16 06:17:22 +00:00
}
cu_array_t * kvz_cu_array_alloc(const int width_in_scu, const int height_in_scu) {
2014-06-16 06:17:22 +00:00
unsigned cu_array_size = height_in_scu * width_in_scu;
2015-03-04 10:52:49 +00:00
cu_array_t *cua;
cua = MALLOC(cu_array_t, 1);
2015-03-04 11:15:45 +00:00
cua->data = (cu_info_t*)malloc(sizeof(cu_info_t) * cu_array_size);
2014-06-16 06:17:22 +00:00
cua->refcount = 1;
FILL_ARRAY(cua->data, 0, cu_array_size);
2014-06-16 06:17:22 +00:00
return cua;
}
int kvz_cu_array_free(cu_array_t * const cua)
2014-06-16 06:17:22 +00:00
{
2014-06-16 08:42:28 +00:00
int32_t new_refcount;
if (!cua) return 1;
new_refcount = KVZ_ATOMIC_DEC(&(cua->refcount));
2014-06-16 06:17:22 +00:00
//Still we have some references, do nothing
if (new_refcount > 0) return 1;
FREE_POINTER(cua->data);
free(cua);
return 1;
}