summaryrefslogtreecommitdiff
path: root/vp8/common/riscv/sixtap_predict_rvv.c
blob: 0345d026ee3378cc14de7314fcaf8aef5a50612d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <riscv_vector.h>
#include <stdio.h>
#include "./vpx_config.h"
#include "./vp8_rtcd.h"

#define UNUSED(x) (void)(x)

void vp8_sixtap_predict4x4_rvv(unsigned char *src_ptr, int src_pixels_per_line,
                                int xoffset, int yoffset,
                                unsigned char *dst_ptr, int dst_pitch)
{
  UNUSED(src_ptr);
  UNUSED(src_pixels_per_line);
  UNUSED(xoffset);
  UNUSED(yoffset);
  UNUSED(dst_ptr);
  UNUSED(dst_pitch);

  printf("--> vp8_sixtap_predict4x4_rvv\n");
}

void vp8_sixtap_predict8x4_rvv(unsigned char *src_ptr, int src_pixels_per_line,
                                int xoffset, int yoffset,
                                unsigned char *dst_ptr, int dst_pitch)
{
  UNUSED(src_ptr);
  UNUSED(src_pixels_per_line);
  UNUSED(xoffset);
  UNUSED(yoffset);
  UNUSED(dst_ptr);
  UNUSED(dst_pitch);

  printf("--> vp8_sixtap_predict8x4_rvv\n");
}

void vp8_sixtap_predict8x8_rvv(unsigned char *src_ptr, int src_pixels_per_line,
                                int xoffset, int yoffset,
                                unsigned char *dst_ptr, int dst_pitch)
{
  UNUSED(src_ptr);
  UNUSED(src_pixels_per_line);
  UNUSED(xoffset);
  UNUSED(yoffset);
  UNUSED(dst_ptr);
  UNUSED(dst_pitch);

  printf("--> vp8_sixtap_predict8x8_rvv\n");
}

void vp8_sixtap_predict16x16_rvv(unsigned char *src_ptr,
                                  int src_pixels_per_line, int xoffset,
                                  int yoffset, unsigned char *dst_ptr,
                                  int dst_pitch)
{
  UNUSED(src_ptr);
  UNUSED(src_pixels_per_line);
  UNUSED(xoffset);
  UNUSED(yoffset);
  UNUSED(dst_ptr);
  UNUSED(dst_pitch);

  printf("--> vp8_sixtap_predict16x16_rvv\n");
}