Skip to content

/github/workspace/src/TransformFunctions/plp_dwt_q16.c

Functions

Name
void plp_dwt_q16(const int16_t restrict pSrc, uint32_t length, const plp_dwt_wavelet_q16 wavelet, plp_dwt_extension_mode mode, int16_t restrict pDstA, int16_t *restrict pDstD)
16bit Fixed-point DWT on real input data for XPULPV2 extension.

Functions Documentation

function plp_dwt_q16

void plp_dwt_q16(
    const int16_t *__restrict__ pSrc,
    uint32_t length,
    const plp_dwt_wavelet_q16 wavelet,
    plp_dwt_extension_mode mode,
    int16_t *__restrict__ pDstA,
    int16_t *__restrict__ pDstD
)

16bit Fixed-point DWT on real input data for XPULPV2 extension.

Parameters:

  • pSrc points to the input buffer (q16)
  • length length of input buffer
  • wavelet wavelet structure for calculating DWT
  • mode boundary extension mode
  • pDstA points to ouput buffer with Approximate coefficients
  • pDstD points to ouput buffer with Detailed coefficients

Return: none

16bit Fixed-point DWT for XPULPV2 extension.

Source code

/* ----------------------------------------------------------------------
 * Project:      PULP DSP Library
 * Title:        plp_dwt_q16.c
 * Description:  16bit Fixed-point Discret Wavelet Transform
 *
 * $Date:        10. Juli 2021
 * $Revision:    V1
 *
 * Target Processor: PULP cores
 * -------------------------------------------------------------------- */
/*
 * Copyright (C) 2021 ETH Zurich and University of Bologna. All rights reserved.
 *
 * Author: Jakub Mandula, ETH Zurich
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Licensed under the Apache License, Version 2.0 (the License); you may
 * not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "plp_math.h"
#include "plp_dwt_common.h"

void plp_dwt_q16(const int16_t *__restrict__ pSrc,
                 uint32_t length,
                 const plp_dwt_wavelet_q16 wavelet,
                 plp_dwt_extension_mode mode,
                 int16_t *__restrict__ pDstA,
                 int16_t *__restrict__ pDstD) {

   if((mode == PLP_DWT_MODE_ANTIREFLECT || mode == PLP_DWT_MODE_REFLECT) && length <= 1){
      printf("F Cannot run [anti]reflect mode on length 1 signal.\n");
      return;
   }

   int16_t *dec_hi_l1;
   int16_t *dec_lo_l1;
   plp_dwt_wavelet_q16 temp_wavelet;

   if (hal_cluster_id() == ARCHI_FC_CID) {
      switch(wavelet.type) {
      case PLP_DWT_WAVELET_HAAR:
      case PLP_DWT_WAVELET_DB1:
         plp_dwt_haar_q16s_rv32im(pSrc, length, mode, pDstA, pDstD);
         break;
      default:
         plp_dwt_q16s_rv32im(pSrc, length, wavelet, mode, pDstA, pDstD);
         break;
      }
   } else {
      switch(wavelet.type) {
      case PLP_DWT_WAVELET_HAAR:
      case PLP_DWT_WAVELET_DB1:
         plp_dwt_haar_q16s_xpulpv2(pSrc, length, mode, pDstA, pDstD);
         break;
      default:
         dec_hi_l1 = hal_cl_l1_malloc(sizeof(int16_t) * (wavelet.length));
         dec_lo_l1 = hal_cl_l1_malloc(sizeof(int16_t) * (wavelet.length));

         copy_coefs_q16(dec_hi_l1, dec_lo_l1, wavelet);
         temp_wavelet = (plp_dwt_wavelet_q16){
            .length = wavelet.length,
            .type = wavelet.type,
            .dec_hi = dec_hi_l1,
            .dec_lo = dec_lo_l1
         };

         plp_dwt_q16s_xpulpv2(pSrc, length, temp_wavelet, mode, pDstA, pDstD);
         hal_cl_l1_free(dec_hi_l1, sizeof(int16_t) * (wavelet.length) );
         hal_cl_l1_free(dec_lo_l1, sizeof(int16_t) * (wavelet.length) );
         break;
      }
   }
}

Updated on 2023-03-01 at 16:16:33 +0000