Searched refs:block_w (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dvideodsp_template.c28 int block_w, int block_h,
49 } else if (src_x <= -block_w) {
50 src += (1 - block_w - src_x) * sizeof(pixel);
51 src_x = 1 - block_w;
57 end_x = FFMIN(block_w, w-src_x);
59 av_assert2(start_x < end_x && block_w);
95 for (x = end_x; x < block_w; x++) {
25 ff_emulated_edge_mc(uint8_t *buf, const uint8_t *src, ptrdiff_t buf_linesize, ptrdiff_t src_linesize, int block_w, int block_h, int src_x, int src_y, int w, int h) argument
H A Dvideodsp.h35 int block_w, int block_h,\
54 * @param block_w width of block
66 int block_w, int block_h,
H A Dsnowenc.c223 const int block_w= 1<<(LOG2_MB_SIZE - level); local
240 uint8_t *current_data[3]= { s->input_picture->data[0] + (x + y* stride)*block_w,
241 s->input_picture->data[1] + ((x*block_w)>>s->chroma_h_shift) + ((y*uvstride*block_w)>>s->chroma_v_shift),
242 s->input_picture->data[2] + ((x*block_w)>>s->chroma_h_shift) + ((y*uvstride*block_w)>>s->chroma_v_shift)};
289 c->xmin = - x*block_w - 16+3;
290 c->ymin = - y*block_w - 16+3;
291 c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
292 c->ymax = - (y+1)*block_w
499 const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size; local
594 const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size; local
696 const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size; local
1059 const int block_w= MB_SIZE >> s->block_max_depth; local
[all...]
H A Dsnow.h244 const int block_w= 1<<rem_depth; local
257 for(j=0; j<block_w; j++){
258 for(i=0; i<block_w; i++){
288 //FIXME name cleanup (b_w, block_w, b_width stuff)
420 int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size; local
455 block_w*mb_x - block_w/2,
457 block_w, block_h,
476 const int block_w= 1<<rem_depth; local
491 for(i=0; i<block_w;
[all...]
H A Dhevc.c1284 * @param block_w width of block
1292 int block_w, int block_h, int luma_weight, int luma_offset)
1303 int idx = ff_hevc_pel_weight[block_w];
1310 x_off >= pic_width - block_w - QPEL_EXTRA_AFTER ||
1318 block_w + QPEL_EXTRA,
1328 block_h, mx, my, block_w);
1332 luma_weight, luma_offset, mx, my, block_w);
1345 * @param block_w width of block
1353 int block_w, int block_h, AVFrame *ref1, const Mv *mv1, struct MvField *current_mv)
1371 int idx = ff_hevc_pel_weight[block_w];
1290 luma_mc_uni(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref, const Mv *mv, int x_off, int y_off, int block_w, int block_h, int luma_weight, int luma_offset) argument
1351 luma_mc_bi(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref0, const Mv *mv0, int x_off, int y_off, int block_w, int block_h, AVFrame *ref1, const Mv *mv1, struct MvField *current_mv) argument
1443 chroma_mc_uni(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, uint8_t *src0, ptrdiff_t srcstride, int reflist, int x_off, int y_off, int block_w, int block_h, struct MvField *current_mv, int chroma_weight, int chroma_offset) argument
1508 chroma_mc_bi(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, AVFrame *ref0, AVFrame *ref1, int x_off, int y_off, int block_w, int block_h, struct MvField *current_mv, int cidx) argument
[all...]
H A Dsnowdec.c42 int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size; local
83 block_w*mb_x - block_w/2,
85 block_w, block_h,
H A Dvp8.c1698 * @param block_w width of block (16, 8 or 4)
1699 * @param block_h height of block (always same as block_w)
1708 int x_off, int y_off, int block_w, int block_h,
1726 if (x_off < mx_idx || x_off >= width - block_w - subpel_idx[2][mx] ||
1731 block_w + subpel_idx[1][mx],
1756 * @param block_w width of block (16, 8 or 4)
1757 * @param block_h height of block (always same as block_w)
1766 int x_off, int y_off, int block_w, int block_h,
1783 if (x_off < mx_idx || x_off >= width - block_w - subpel_idx[2][mx] ||
1788 block_w
1706 vp8_mc_luma(VP8Context *s, VP8ThreadData *td, uint8_t *dst, ThreadFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, ptrdiff_t linesize, vp8_mc_func mc_func[3][3]) argument
1764 vp8_mc_chroma(VP8Context *s, VP8ThreadData *td, uint8_t *dst1, uint8_t *dst2, ThreadFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, ptrdiff_t linesize, vp8_mc_func mc_func[3][3]) argument
1814 vp8_mc_part(VP8Context *s, VP8ThreadData *td, uint8_t *dst[3], ThreadFrame *ref_frame, int x_off, int y_off, int bx_off, int by_off, int block_w, int block_h, int width, int height, VP56mv *mv) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dvideodsp_init.c135 x86_reg block_w, x86_reg block_h,
160 } else if (src_x <= -block_w) {
161 src += 1 - block_w - src_x;
162 src_x = 1 - block_w;
168 end_x = FFMIN(block_w, w-src_x);
169 av_assert2(start_x < end_x && block_w > 0);
194 p = block_w - end_x;
210 int block_w, int block_h,
213 emulated_edge_mc(buf, src, buf_stride, src_stride, block_w, block_h,
221 int block_w, in
132 emulated_edge_mc(uint8_t *dst, const uint8_t *src, ptrdiff_t dst_stride, ptrdiff_t src_stride, x86_reg block_w, x86_reg block_h, x86_reg src_x, x86_reg src_y, x86_reg w, x86_reg h, emu_edge_vfix_func **vfix_tbl, emu_edge_vvar_func *v_extend_var, emu_edge_hfix_func **hfix_tbl, emu_edge_hvar_func *h_extend_var) argument
207 emulated_edge_mc_mmx(uint8_t *buf, const uint8_t *src, ptrdiff_t buf_stride, ptrdiff_t src_stride, int block_w, int block_h, int src_x, int src_y, int w, int h) argument
218 emulated_edge_mc_sse(uint8_t *buf, const uint8_t *src, ptrdiff_t buf_stride, ptrdiff_t src_stride, int block_w, int block_h, int src_x, int src_y, int w, int h) argument
230 emulated_edge_mc_sse2(uint8_t *buf, const uint8_t *src, ptrdiff_t buf_stride, ptrdiff_t src_stride, int block_w, int block_h, int src_x, int src_y, int w, int h) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dsnowenc.c311 const int block_w= 1<<(LOG2_MB_SIZE - level); local
328 uint8_t *current_data[3]= { s->input_picture.data[0] + (x + y* stride)*block_w,
329 s->input_picture.data[1] + (x + y*uvstride)*block_w/2,
330 s->input_picture.data[2] + (x + y*uvstride)*block_w/2};
377 c->xmin = - x*block_w - 16+3;
378 c->ymin = - y*block_w - 16+3;
379 c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
380 c->ymax = - (y+1)*block_w + (h<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
404 init_ref(c, current_data, s->last_picture[ref].data, NULL, block_w*x, block_w*
580 const int block_w = plane_index ? block_size/2 : block_size; local
672 const int block_w = plane_index ? block_size/2 : block_size; local
771 const int block_w = plane_index ? block_size/2 : block_size; local
1122 const int block_w= MB_SIZE >> s->block_max_depth; local
[all...]
H A Dsnowdec.c44 int block_w = plane_index ? block_size/2 : block_size; local
57 for(y=block_w*mb_y; y<FFMIN(h,block_w*(mb_y+1)); y++){
69 for(y=block_w*mb_y; y<FFMIN(h,block_w*(mb_y+1)); y++){
84 block_w*mb_x - block_w/2,
85 block_w*mb_y - block_w/2,
86 block_w, block_
455 const int block_w = plane_index ? block_size/2 : block_size; local
[all...]
H A Dsnow.h233 const int block_w= 1<<rem_depth; local
246 for(j=0; j<block_w; j++){
247 for(i=0; i<block_w; i++){
277 //FIXME name cleanup (b_w, block_w, b_width stuff)
407 int block_w = plane_index ? block_size/2 : block_size; local
420 for(y=block_w*mb_y; y<FFMIN(h,block_w*(mb_y+1)); y++){
429 for(y=block_w*mb_y; y<FFMIN(h,block_w*(mb_y+1)); y++){
441 block_w*mb_
462 const int block_w= 1<<rem_depth; local
[all...]
H A Dvp8.c1106 * @param block_w width of block (16, 8 or 4)
1107 * @param block_h height of block (always same as block_w)
1115 int x_off, int y_off, int block_w, int block_h,
1132 if (x_off < mx_idx || x_off >= width - block_w - subpel_idx[2][mx] ||
1135 block_w + subpel_idx[1][mx], block_h + subpel_idx[1][my],
1156 * @param block_w width of block (16, 8 or 4)
1157 * @param block_h height of block (always same as block_w)
1166 int block_w, int block_h, int width, int height, int linesize,
1182 if (x_off < mx_idx || x_off >= width - block_w - subpel_idx[2][mx] ||
1185 block_w
1114 vp8_mc_luma(VP8Context *s, uint8_t *dst, AVFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, int linesize, vp8_mc_func mc_func[3][3]) argument
1164 vp8_mc_chroma(VP8Context *s, uint8_t *dst1, uint8_t *dst2, AVFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, int linesize, vp8_mc_func mc_func[3][3]) argument
1207 vp8_mc_part(VP8Context *s, uint8_t *dst[3], AVFrame *ref_frame, int x_off, int y_off, int bx_off, int by_off, int block_w, int block_h, int width, int height, VP56mv *mv) argument
[all...]
H A Ddsputil_template.c121 * @param block_w width of block
128 void FUNC(ff_emulated_edge_mc)(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h, argument
143 }else if(src_x<=-block_w){
144 src+= (1-block_w-src_x)*sizeof(pixel);
145 src_x=1-block_w;
151 end_x= FFMIN(block_w, w-src_x);
153 assert(start_x < end_x && block_w);
188 for(x=end_x; x<block_w; x++){
H A Ddsputil.h212 int block_w, int block_h,\
246 * @param block_w number of pixels (per row) to copy to buf
254 int block_w, int block_h,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/lzotest/
H A Dlzotest.c366 static mblock_t block_w; /* wrkmem */ variable
690 if (c && c->compress && block_w.len >= c->mem_compress)
693 memchecker_init(&block_w, c->mem_compress, random_byte);
695 lzo_memset(block_w.ptr, 0, c->mem_compress);
698 r = c->compress_dict(src,src_len,dst,dst_len,block_w.ptr,dict.ptr,dict.len);
700 r = c->compress(src,src_len,dst,dst_len,block_w.ptr);
702 if (memchecker_check(&block_w, c->mem_compress, random_byte) != 0)
736 if (c && d && block_w.len >= c->mem_decompress)
739 memchecker_init(&block_w, c->mem_decompress, random_byte);
741 lzo_memset(block_w
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Ddsputil_mmx.c1675 x86_reg block_w);
1681 int block_w, int block_h,
1697 }else if(src_x<=-block_w){
1698 src+= (1-block_w-src_x);
1699 src_x=1-block_w;
1705 end_x= FFMIN(block_w, w-src_x);
1706 assert(start_x < end_x && block_w > 0);
1712 core_fn(buf, src, linesize, start_y, end_y, block_h, start_x, end_x, block_w);
1718 int block_w, int block_h,
1721 emulated_edge_mc(buf, src, linesize, block_w, block_
1680 emulated_edge_mc(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h, int src_x, int src_y, int w, int h, emu_edge_core_func *core_fn) argument
1717 emulated_edge_mc_mmx(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h, int src_x, int src_y, int w, int h) argument
1726 emulated_edge_mc_sse(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h, int src_x, int src_y, int w, int h) argument
[all...]
H A Ddsputil_yasm.asm485 ; x86_reg start_x, x86_reg end_x, x86_reg block_w);
565 ; now r3(64)/r0(32)=buf,r2=linesize,r11/r5=block_h,r6/r3=val, r10/r6=end_x, r1=block_w
572 mov r1, r8m ; block_w
575 jz .h_extend_end ; if (end_x == block_w) goto h_extend_end
1007 ; r3(64)/r0(32)=buf+block_h*linesize,r2=linesize,r4=block_w,r11(64)/r5(32)=block_h,

Completed in 440 milliseconds