Searched refs:obmc_stride (Results 1 - 12 of 12) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dsnowdsp.c692 static void inner_add_yblock_bw_8_obmc_16_bh_even_sse2(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
740 static void inner_add_yblock_bw_16_obmc_32_sse2(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
826 static void inner_add_yblock_bw_8_obmc_16_mmx(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
837 static void inner_add_yblock_bw_16_obmc_32_mmx(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
854 static void ff_snow_inner_add_yblock_sse2(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, argument
858 inner_add_yblock_bw_16_obmc_32_sse2(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
859 else if (b_w == 8 && obmc_stride == 16) {
861 inner_add_yblock_bw_8_obmc_16_bh_even_sse2(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
863 inner_add_yblock_bw_8_obmc_16_mmx(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
865 ff_snow_inner_add_yblock(obmc, obmc_stride, bloc
868 ff_snow_inner_add_yblock_mmx(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dsnowdsp_mmx.c690 static void inner_add_yblock_bw_8_obmc_16_bh_even_sse2(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
738 static void inner_add_yblock_bw_16_obmc_32_sse2(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
824 static void inner_add_yblock_bw_8_obmc_16_mmx(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
835 static void inner_add_yblock_bw_16_obmc_32_mmx(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h, argument
852 static void ff_snow_inner_add_yblock_sse2(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, argument
856 inner_add_yblock_bw_16_obmc_32_sse2(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
857 else if (b_w == 8 && obmc_stride == 16) {
859 inner_add_yblock_bw_8_obmc_16_bh_even_sse2(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
861 inner_add_yblock_bw_8_obmc_16_mmx(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
863 ff_snow_inner_add_yblock(obmc, obmc_stride, bloc
866 ff_snow_inner_add_yblock_mmx(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dsnow_dwt.h58 void (*inner_add_yblock)(const uint8_t *obmc, const int obmc_stride,
103 void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride,
H A Dsnow.h290 static av_always_inline void add_yblock(SnowContext *s, int sliced, slice_buffer *sb, IDWTELEM *dst, uint8_t *dst8, const uint8_t *obmc, int src_x, int src_y, int b_w, int b_h, int w, int h, int dst_stride, int src_stride, int obmc_stride, int b_x, int b_y, int add, int offset_dst, int plane_index){ argument
330 obmc -= src_y*obmc_stride;
383 s->dwt.inner_add_yblock(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
386 //FIXME ugly misuse of obmc_stride
387 const uint8_t *obmc1= obmc + y*obmc_stride;
388 const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
389 const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
390 const uint8_t *obmc4= obmc3+ (obmc_stride>>1);
423 const int obmc_stride local
[all...]
H A Dsnow.c36 void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, argument
41 //FIXME ugly misuse of obmc_stride
42 const uint8_t *obmc1= obmc + y*obmc_stride;
43 const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
44 const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
45 const uint8_t *obmc4= obmc3+ (obmc_stride>>1);
H A Dsnowenc.c502 const int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size; local
519 memset(dst, 0, obmc_stride*obmc_stride*sizeof(IDWTELEM));
527 add_yblock(s, 0, NULL, dst + (i&1)*block_w + (i>>1)*obmc_stride*block_h, NULL, obmc,
528 x, y, block_w, block_h, w, h, obmc_stride, ref_stride, obmc_stride, mb_x2, mb_y2, 0, 0, plane_index);
532 int index= x2-(block_w*mb_x - block_w/2) + (y2-(block_h*mb_y - block_h/2))*obmc_stride;
535 if(y<0) obmc_v += obmc[index + block_h*obmc_stride];
537 if(y+block_h>h) obmc_v += obmc[index - block_h*obmc_stride];
596 const int obmc_stride local
699 const int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size; local
[all...]
H A Dsnowdec.c45 int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size; local
87 w, ref_stride, obmc_stride,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddwt.h51 void (*inner_add_yblock)(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8);
140 void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8);
H A Dsnow.h279 static av_always_inline void add_yblock(SnowContext *s, int sliced, slice_buffer *sb, IDWTELEM *dst, uint8_t *dst8, const uint8_t *obmc, int src_x, int src_y, int b_w, int b_h, int w, int h, int dst_stride, int src_stride, int obmc_stride, int b_x, int b_y, int add, int offset_dst, int plane_index){ argument
318 obmc -= src_y*obmc_stride;
370 s->dwt.inner_add_yblock(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
373 //FIXME ugly misuse of obmc_stride
374 const uint8_t *obmc1= obmc + y*obmc_stride;
375 const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
376 const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
377 const uint8_t *obmc4= obmc3+ (obmc_stride>>1);
409 const int obmc_stride local
[all...]
H A Dsnow.c38 void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, argument
43 //FIXME ugly misuse of obmc_stride
44 const uint8_t *obmc1= obmc + y*obmc_stride;
45 const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
46 const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
47 const uint8_t *obmc4= obmc3+ (obmc_stride>>1);
H A Dsnowenc.c582 const int obmc_stride= plane_index ? block_size : 2*block_size; local
597 memset(dst, 0, obmc_stride*obmc_stride*sizeof(IDWTELEM));
605 add_yblock(s, 0, NULL, dst + ((i&1)+(i>>1)*obmc_stride)*block_w, NULL, obmc,
606 x, y, block_w, block_w, w, h, obmc_stride, ref_stride, obmc_stride, mb_x2, mb_y2, 0, 0, plane_index);
610 int index= x2-(block_w*mb_x - block_w/2) + (y2-(block_w*mb_y - block_w/2))*obmc_stride;
613 if(y<0) obmc_v += obmc[index + block_w*obmc_stride];
615 if(y+block_w>h) obmc_v += obmc[index - block_w*obmc_stride];
673 const int obmc_stride local
773 const int obmc_stride= plane_index ? block_size : 2*block_size; local
[all...]
H A Dsnowdec.c46 int obmc_stride= plane_index ? block_size : 2*block_size; local
88 w, ref_stride, obmc_stride,

Completed in 128 milliseconds