Searched refs:b_w (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
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
49 for(x=0; x<b_w; x++){
106 static void mc_block(Plane *p, uint8_t *dst, const uint8_t *src, int stride, int b_w, int b_h, int dx, int dy){ argument
160 for(x=0; x < b_w; x++){
194 for(x=0; x < b_w+1; x++){
222 for(x=0; x < b_w; x++){
264 for(x=0; x < b_w; x++){
280 for(x=0; x < b_w; x++){
290 void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, int stride, int sx, int sy, int b_w, int b_h, BlockNode *block, int plane_index, int w, int h){ argument
295 if(b_w
[all...]
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.h224 int sx, int sy, int b_w, int b_h, BlockNode *block,
277 //FIXME name cleanup (b_w, block_w, b_width stuff)
279 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
310 b_w += src_x;
314 }else if(src_x + b_w > w){
315 b_w = w - src_x;
327 if(b_w<=0 || b_h<=0) return;
339 ff_snow_pred_block(s, block[0], tmp, src_stride, src_x, src_y, b_w, b_h, lt, plane_index, w, h);
346 ff_snow_pred_block(s, block[1], tmp, src_stride, src_x, src_y, b_w, b_h, rt, plane_index, w, h);
356 ff_snow_pred_block(s, block[2], tmp, src_stride, src_x, src_y, b_w, b_
[all...]
H A Dsnowenc.c1080 const int b_w= (MB_SIZE >> s->block_max_depth); local
1081 uint8_t obmc_edged[b_w*2][b_w*2];
1096 memcpy(obmc_edged, obmc_tab[s->block_max_depth], b_w*b_w*4);
1098 for(y=0; y<b_w*2; y++)
1099 memset(obmc_edged[y], obmc_edged[y][0] + obmc_edged[y][b_w-1], b_w);
1101 for(y=0; y<b_w*2; y++)
1102 memset(obmc_edged[y]+b_w, obmc_edge
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
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
47 for(x=0; x<b_w; x++){
127 static void mc_block(Plane *p, uint8_t *dst, const uint8_t *src, int stride, int b_w, int b_h, int dx, int dy){ argument
181 for(x=0; x < b_w; x++){
215 for(x=0; x < b_w+1; x++){
243 for(x=0; x < b_w; x++){
292 for(x=0; x < b_w; x++){
310 for(x=0; x < b_w; x++){
320 void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, ptrdiff_t stride, int sx, int sy, int b_w, int b_h, BlockNode *block, int plane_index, int w, int h){ argument
325 if(b_w
[all...]
H A Dsnow_dwt.h59 uint8_t **block, int b_w, int b_h, int src_x,
104 uint8_t **block, int b_w, int b_h, int src_x,
H A Dsnow.h234 int sx, int sy, int b_w, int b_h, BlockNode *block,
288 //FIXME name cleanup (b_w, block_w, b_width stuff)
290 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
321 b_w += src_x;
326 if(src_x + b_w > w){
327 b_w = w - src_x;
340 if(b_w<=0 || b_h<=0) return;
352 ff_snow_pred_block(s, block[0], tmp, src_stride, src_x, src_y, b_w, b_h, lt, plane_index, w, h);
359 ff_snow_pred_block(s, block[1], tmp, src_stride, src_x, src_y, b_w, b_h, rt, plane_index, w, h);
369 ff_snow_pred_block(s, block[2], tmp, src_stride, src_x, src_y, b_w, b_
[all...]
H A Dsnowenc.c1016 const int b_w= (MB_SIZE >> s->block_max_depth); local
1032 for (y = 0; y < b_w * 2; y++)
1033 memcpy(obmc_edged[y], ff_obmc_tab[s->block_max_depth] + y * b_w * 2, b_w * 2);
1035 for(y=0; y<b_w*2; y++)
1036 memset(obmc_edged[y], obmc_edged[y][0] + obmc_edged[y][b_w-1], b_w);
1038 for(y=0; y<b_w*2; y++)
1039 memset(obmc_edged[y]+b_w, obmc_edged[y][b_w]
[all...]
/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
857 if (b_w == 16)
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_
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
855 if (b_w == 16)
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_
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...]

Completed in 82 milliseconds