403Webshell
Server IP : www.new.bangkokfinder.com  /  Your IP : 104.23.176.10
Web Server : nginx/1.20.1
System : Linux new 4.15.0-159-generic #167-Ubuntu SMP Tue Sep 21 08:55:05 UTC 2021 x86_64
User : bangkokfinder ( 1000)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/thread-self/root/usr/src/libde265/libde265/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/thread-self/root/usr/src/libde265/libde265/fallback.cc
/*
 * H.265 video codec.
 * Copyright (c) 2013-2014 struktur AG, Dirk Farin <[email protected]>
 *
 * This file is part of libde265.
 *
 * libde265 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 3 of
 * the License, or (at your option) any later version.
 *
 * libde265 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.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with libde265.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "fallback.h"
#include "fallback-motion.h"
#include "fallback-dct.h"


void init_acceleration_functions_fallback(struct acceleration_functions* accel)
{
  accel->put_weighted_pred_avg_8 = put_weighted_pred_avg_8_fallback;
  accel->put_unweighted_pred_8   = put_unweighted_pred_8_fallback;
  accel->put_weighted_pred_8 = put_weighted_pred_8_fallback;
  accel->put_weighted_bipred_8 = put_weighted_bipred_8_fallback;

  accel->put_weighted_pred_avg_16 = put_weighted_pred_avg_16_fallback;
  accel->put_unweighted_pred_16   = put_unweighted_pred_16_fallback;
  accel->put_weighted_pred_16 = put_weighted_pred_16_fallback;
  accel->put_weighted_bipred_16 = put_weighted_bipred_16_fallback;


  accel->put_hevc_epel_8    = put_epel_8_fallback;
  accel->put_hevc_epel_h_8  = put_epel_hv_fallback<uint8_t>;
  accel->put_hevc_epel_v_8  = put_epel_hv_fallback<uint8_t>;
  accel->put_hevc_epel_hv_8 = put_epel_hv_fallback<uint8_t>;

  accel->put_hevc_qpel_8[0][0] = put_qpel_0_0_fallback;
  accel->put_hevc_qpel_8[0][1] = put_qpel_0_1_fallback;
  accel->put_hevc_qpel_8[0][2] = put_qpel_0_2_fallback;
  accel->put_hevc_qpel_8[0][3] = put_qpel_0_3_fallback;
  accel->put_hevc_qpel_8[1][0] = put_qpel_1_0_fallback;
  accel->put_hevc_qpel_8[1][1] = put_qpel_1_1_fallback;
  accel->put_hevc_qpel_8[1][2] = put_qpel_1_2_fallback;
  accel->put_hevc_qpel_8[1][3] = put_qpel_1_3_fallback;
  accel->put_hevc_qpel_8[2][0] = put_qpel_2_0_fallback;
  accel->put_hevc_qpel_8[2][1] = put_qpel_2_1_fallback;
  accel->put_hevc_qpel_8[2][2] = put_qpel_2_2_fallback;
  accel->put_hevc_qpel_8[2][3] = put_qpel_2_3_fallback;
  accel->put_hevc_qpel_8[3][0] = put_qpel_3_0_fallback;
  accel->put_hevc_qpel_8[3][1] = put_qpel_3_1_fallback;
  accel->put_hevc_qpel_8[3][2] = put_qpel_3_2_fallback;
  accel->put_hevc_qpel_8[3][3] = put_qpel_3_3_fallback;

  accel->put_hevc_epel_16    = put_epel_16_fallback;
  accel->put_hevc_epel_h_16  = put_epel_hv_fallback<uint16_t>;
  accel->put_hevc_epel_v_16  = put_epel_hv_fallback<uint16_t>;
  accel->put_hevc_epel_hv_16 = put_epel_hv_fallback<uint16_t>;

  accel->put_hevc_qpel_16[0][0] = put_qpel_0_0_fallback_16;
  accel->put_hevc_qpel_16[0][1] = put_qpel_0_1_fallback_16;
  accel->put_hevc_qpel_16[0][2] = put_qpel_0_2_fallback_16;
  accel->put_hevc_qpel_16[0][3] = put_qpel_0_3_fallback_16;
  accel->put_hevc_qpel_16[1][0] = put_qpel_1_0_fallback_16;
  accel->put_hevc_qpel_16[1][1] = put_qpel_1_1_fallback_16;
  accel->put_hevc_qpel_16[1][2] = put_qpel_1_2_fallback_16;
  accel->put_hevc_qpel_16[1][3] = put_qpel_1_3_fallback_16;
  accel->put_hevc_qpel_16[2][0] = put_qpel_2_0_fallback_16;
  accel->put_hevc_qpel_16[2][1] = put_qpel_2_1_fallback_16;
  accel->put_hevc_qpel_16[2][2] = put_qpel_2_2_fallback_16;
  accel->put_hevc_qpel_16[2][3] = put_qpel_2_3_fallback_16;
  accel->put_hevc_qpel_16[3][0] = put_qpel_3_0_fallback_16;
  accel->put_hevc_qpel_16[3][1] = put_qpel_3_1_fallback_16;
  accel->put_hevc_qpel_16[3][2] = put_qpel_3_2_fallback_16;
  accel->put_hevc_qpel_16[3][3] = put_qpel_3_3_fallback_16;



  accel->transform_skip_8 = transform_skip_8_fallback;
  accel->transform_skip_rdpcm_h_8 = transform_skip_rdpcm_h_8_fallback;
  accel->transform_skip_rdpcm_v_8 = transform_skip_rdpcm_v_8_fallback;
  accel->transform_bypass = transform_bypass_fallback;
  accel->transform_bypass_rdpcm_h = transform_bypass_rdpcm_h_fallback;
  accel->transform_bypass_rdpcm_v = transform_bypass_rdpcm_v_fallback;
  accel->transform_4x4_dst_add_8 = transform_4x4_luma_add_8_fallback;
  accel->transform_add_8[0] = transform_4x4_add_8_fallback;
  accel->transform_add_8[1] = transform_8x8_add_8_fallback;
  accel->transform_add_8[2] = transform_16x16_add_8_fallback;
  accel->transform_add_8[3] = transform_32x32_add_8_fallback;

  accel->transform_skip_16 = transform_skip_16_fallback;
  accel->transform_4x4_dst_add_16 = transform_4x4_luma_add_16_fallback;
  accel->transform_add_16[0] = transform_4x4_add_16_fallback;
  accel->transform_add_16[1] = transform_8x8_add_16_fallback;
  accel->transform_add_16[2] = transform_16x16_add_16_fallback;
  accel->transform_add_16[3] = transform_32x32_add_16_fallback;

  accel->rotate_coefficients = rotate_coefficients_fallback;
  accel->add_residual_8  = add_residual_fallback<uint8_t>;
  accel->add_residual_16 = add_residual_fallback<uint16_t>;
  accel->rdpcm_h = rdpcm_h_fallback;
  accel->rdpcm_v = rdpcm_v_fallback;
  accel->transform_skip_residual = transform_skip_residual_fallback;

  accel->transform_idst_4x4   = transform_idst_4x4_fallback;
  accel->transform_idct_4x4   = transform_idct_4x4_fallback;
  accel->transform_idct_8x8   = transform_idct_8x8_fallback;
  accel->transform_idct_16x16 = transform_idct_16x16_fallback;
  accel->transform_idct_32x32 = transform_idct_32x32_fallback;

  accel->fwd_transform_4x4_dst_8 = fdst_4x4_8_fallback;
  accel->fwd_transform_8[0] = fdct_4x4_8_fallback;
  accel->fwd_transform_8[1] = fdct_8x8_8_fallback;
  accel->fwd_transform_8[2] = fdct_16x16_8_fallback;
  accel->fwd_transform_8[3] = fdct_32x32_8_fallback;

  accel->hadamard_transform_8[0] = hadamard_4x4_8_fallback;
  accel->hadamard_transform_8[1] = hadamard_8x8_8_fallback;
  accel->hadamard_transform_8[2] = hadamard_16x16_8_fallback;
  accel->hadamard_transform_8[3] = hadamard_32x32_8_fallback;
}

Youez - 2016 - github.com/yon3zu
LinuXploit