/third_party/ffmpeg/libavcodec/ |
H A D | cfhdencdsp.c | 28 int16_t *high, ptrdiff_t high_stride, in filter() 32 high[(0>>1) * high_stride] = av_clip_int16((5 * input[0*in_stride] - 11 * input[1*in_stride] + in filter() 38 high[(i>>1) * high_stride] = av_clip_int16(((-input[(i-2)*in_stride] - input[(i-1)*in_stride] + in filter() 44 high[((len-2)>>1) * high_stride] = av_clip_int16((11* input[((len-2)+0)*in_stride] - 5 * input[((len-2)+1)*in_stride] - in filter() 51 ptrdiff_t high_stride, in horiz_filter() 58 high += high_stride; in horiz_filter() 64 ptrdiff_t high_stride, in vert_filter() 68 filter(&input[i], in_stride, &low[i], low_stride, &high[i], high_stride, height); in vert_filter() 26 filter(int16_t *input, ptrdiff_t in_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len) filter() argument 49 horiz_filter(int16_t *input, int16_t *low, int16_t *high, ptrdiff_t in_stride, ptrdiff_t low_stride, ptrdiff_t high_stride, int width, int height) horiz_filter() argument 62 vert_filter(int16_t *input, int16_t *low, int16_t *high, ptrdiff_t in_stride, ptrdiff_t low_stride, ptrdiff_t high_stride, int width, int height) vert_filter() argument
|
H A D | cfhddsp.c | 28 const int16_t *high, ptrdiff_t high_stride, in filter() 35 output[(2*0+0)*out_stride] = (tmp + high[0*high_stride]) >> 1; in filter() 40 output[(2*0+1)*out_stride] = (tmp - high[0*high_stride]) >> 1; in filter() 46 output[(2*i+0)*out_stride] = (tmp + low[i*low_stride] + high[i*high_stride]) >> 1; in filter() 51 output[(2*i+1)*out_stride] = (tmp + low[i*low_stride] - high[i*high_stride]) >> 1; in filter() 57 output[(2*i+0)*out_stride] = (tmp + high[i*high_stride]) >> 1; in filter() 62 output[(2*i+1)*out_stride] = (tmp - high[i*high_stride]) >> 1; in filter() 69 const int16_t *high, ptrdiff_t high_stride, in vert_filter() 73 filter(output, out_stride, low, low_stride, high, high_stride, height, 0); in vert_filter() 26 filter(int16_t *output, ptrdiff_t out_stride, const int16_t *low, ptrdiff_t low_stride, const int16_t *high, ptrdiff_t high_stride, int len, int clip) filter() argument 67 vert_filter(int16_t *output, ptrdiff_t out_stride, const int16_t *low, ptrdiff_t low_stride, const int16_t *high, ptrdiff_t high_stride, int width, int height) vert_filter() argument
|
H A D | cfhddsp.h | 28 const int16_t *high, ptrdiff_t high_stride, 33 const int16_t *high, ptrdiff_t high_stride,
|
H A D | cfhdencdsp.h | 28 ptrdiff_t high_stride, 33 ptrdiff_t high_stride,
|
H A D | cfhdenc.c | 444 int low_stride, high_stride; in cfhd_encode_frame() local 461 high_stride = s->plane[plane].band[2][0].a_width; in cfhd_encode_frame() 464 a_width, low_stride, high_stride, in cfhd_encode_frame() 472 a_width, low_stride, high_stride, in cfhd_encode_frame() 482 high_stride = s->plane[plane].band[1][0].a_width; in cfhd_encode_frame() 492 a_width * 2, low_stride, high_stride, in cfhd_encode_frame() 500 a_width, low_stride, high_stride, in cfhd_encode_frame() 508 a_width, low_stride, high_stride, in cfhd_encode_frame() 518 high_stride = s->plane[plane].band[0][0].a_width; in cfhd_encode_frame() 530 a_width * 2, low_stride, high_stride, in cfhd_encode_frame() [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | cfhdencdsp_init.c | 32 ptrdiff_t high_stride, 36 ptrdiff_t high_stride,
|
H A D | cfhddsp_init.c | 32 const int16_t *high, ptrdiff_t high_stride, 36 const int16_t *high, ptrdiff_t high_stride,
|