Searched refs:mb_size (Results 1 - 25 of 28) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dindeo5.c61 int result, i, p, tile_size, pic_size_indx, mb_size, blk_size, is_scalable; local
132 mb_size = get_bits1(&ctx->gb);
134 mb_size = blk_size << !mb_size;
141 blk_size_changed = mb_size != band->mb_size || blk_size != band->blk_size;
143 band->mb_size = mb_size;
235 band2->mb_size = band1->mb_size;
[all...]
H A Divi_common.h133 int mb_size; member in struct:IVITile
159 int mb_size; ///< macroblock size member in struct:IVIBandDesc
289 #define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
290 ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
H A Dindeo4.c209 ctx->planes[p].bands[i].mb_size = !p ? (!ctx->is_scalable ? 16 : 8) : 4;
311 band->mb_size = 16 >> indx;
472 int row_offset = band->mb_size * band->pitch;
478 blks_per_mb = band->mb_size != band->blk_size ? 4 : 1;
482 mv_scale = (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3);
485 if (((tile->width + band->mb_size-1)/band->mb_size) * ((tile->height + band->mb_size-1)/band->mb_size) !
[all...]
H A Divi_common.c390 tile->mb_size = band->mb_size;
396 band->mb_size);
629 num_blocks = (band->mb_size != blk_size) ? 4 : 1;
683 mb->xpos + dmv_x + band->mb_size + cx > band->pitch ||
685 mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
698 mb->xpos + dmv_x + band->mb_size + cx > band->pitch ||
700 mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
769 if (tile->num_MBs != IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size)) {
772 tile->num_MBs, IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size));
[all...]
H A Drv30.c41 int mb_size; local
73 mb_size = ((w + 15) >> 4) * ((h + 15) >> 4);
74 mb_bits = ff_rv34_get_start_offset(gb, mb_size);
H A Dh263dec.c176 const int mb_size = 16 >> s->avctx->lowres; local
261 ff_mpeg_draw_horiz_band(s, s->mb_y * mb_size, mb_size);
288 ff_mpeg_draw_horiz_band(s, s->mb_y * mb_size, mb_size);
H A Drv40.c132 int mb_size; local
151 mb_size = ((w + 15) >> 4) * ((h + 15) >> 4);
152 mb_bits = ff_rv34_get_start_offset(gb, mb_size);
H A Dmpegvideo.c3175 const int mb_size= 4 - s->avctx->lowres; local
3185 s->dest[0] = s->current_picture.f->data[0] + ((s->mb_x - 1) << mb_size);
3186 s->dest[1] = s->current_picture.f->data[1] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
3187 s->dest[2] = s->current_picture.f->data[2] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
3192 s->dest[0] += s->mb_y * linesize << mb_size;
3193 s->dest[1] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
3194 s->dest[2] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
3196 s->dest[0] += (s->mb_y>>1) * linesize << mb_size;
3197 s->dest[1] += (s->mb_y>>1) * uvlinesize << (mb_size - s->chroma_y_shift);
3198 s->dest[2] += (s->mb_y>>1) * uvlinesize << (mb_size
[all...]
H A Dh264_cavlc.c771 const int mb_size = ff_h264_mb_sizes[h->sps.chroma_format_idc] * local
776 if (get_bits_left(&h->gb) < mb_size) {
780 skip_bits_long(&h->gb, mb_size);
H A Dh264_cabac.c1999 const int mb_size = ff_h264_mb_sizes[h->sps.chroma_format_idc] * local
2013 if ((int) (h->cabac.bytestream_end - ptr) < mb_size)
2016 ptr += mb_size;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dindeo5.c62 int result, i, p, tile_size, pic_size_indx, mb_size, blk_size; local
132 mb_size = get_bits1(&ctx->gb);
134 mb_size = blk_size << !mb_size;
136 blk_size_changed = mb_size != band->mb_size || blk_size != band->blk_size;
138 band->mb_size = mb_size;
216 band2->mb_size = band1->mb_size;
[all...]
H A Divi_common.h121 int mb_size; member in struct:__anon1935
146 int mb_size; ///< macroblock size member in struct:__anon1936
268 #define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
269 ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
H A Divi_common.c294 tile->mb_size = band->mb_size;
300 band->mb_size);
357 num_blocks = (band->mb_size != blk_size) ? 4 : 1; /* number of blocks per mb */
398 || mb->xpos + dmv_x + band->mb_size + cx > band->pitch
400 || mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
521 if (tile->num_MBs != IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size)) {
524 tile->num_MBs, IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size));
531 row_offset = band->mb_size * band->pitch;
534 for (y = tile->ypos; y < (tile->ypos + tile->height); y += band->mb_size) {
[all...]
H A Dindeo4.c222 ctx->planes[p].bands[i].mb_size = !p ? (!ctx->is_scalable ? 16 : 8) : 4;
322 band->mb_size = 16 >> indx;
424 int row_offset = band->mb_size * band->pitch;
430 blks_per_mb = band->mb_size != band->blk_size ? 4 : 1;
434 mv_scale = (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3);
437 for (y = tile->ypos; y < tile->ypos + tile->height; y += band->mb_size) {
440 for (x = tile->xpos; x < tile->xpos + tile->width; x += band->mb_size) {
521 mb_offset += band->mb_size;
H A Drv30.c40 int mb_size; local
60 mb_size = ((w + 15) >> 4) * ((h + 15) >> 4);
61 mb_bits = ff_rv34_get_start_offset(gb, mb_size);
H A Dh263dec.c152 const int mb_size= 16>>s->avctx->lowres; local
234 ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
255 ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
H A Drv40.c132 int mb_size; local
151 mb_size = ((w + 15) >> 4) * ((h + 15) >> 4);
152 mb_bits = ff_rv34_get_start_offset(gb, mb_size);
H A Dmpegvideo.c2606 const int mb_size= 4 - s->avctx->lowres; local
2616 s->dest[0] = s->current_picture.f.data[0] + ((s->mb_x - 1) << mb_size);
2617 s->dest[1] = s->current_picture.f.data[1] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
2618 s->dest[2] = s->current_picture.f.data[2] + ((s->mb_x - 1) << (mb_size - s->chroma_x_shift));
2623 s->dest[0] += s->mb_y * linesize << mb_size;
2624 s->dest[1] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
2625 s->dest[2] += s->mb_y * uvlinesize << (mb_size - s->chroma_y_shift);
2627 s->dest[0] += (s->mb_y>>1) * linesize << mb_size;
2628 s->dest[1] += (s->mb_y>>1) * uvlinesize << (mb_size - s->chroma_y_shift);
2629 s->dest[2] += (s->mb_y>>1) * uvlinesize << (mb_size
[all...]
H A Dh264_cabac.c1986 const int mb_size = mb_sizes[h->sps.chroma_format_idc]*h->sps.bit_depth_luma >> 3; local
1999 if ((int) (h->cabac.bytestream_end - ptr) < mb_size)
2001 memcpy(h->mb, ptr, mb_size); ptr+=mb_size;
H A Dh264_cavlc.c768 const int mb_size = mb_sizes[h->sps.chroma_format_idc]*h->sps.bit_depth_luma >> 3; local
774 for(x=0; x < mb_size; x++){
H A Drv34.c333 int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size) argument
337 if(rv34_mb_max_sizes[i] >= mb_size - 1)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/octeon/
H A Dcvmx-ipd.h101 size.s.mb_size = mbuff_size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/wlags49_h2/
H A Dhcf.c2268 HCFASSERT( (P)->mb_size >= 60, (P)->mb_size )
2271 ifbp->IFB_MBSize = ifbp->IFB_MBp == NULL ? 0 : P->mb_size;
H A Dmdd.h285 XX2( CFG_REG_MB, hcf_16* , mb_addr, hcf_16, mb_size )
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/octeon/
H A Dcvmx-ipd-defs.h468 uint64_t mb_size:12; member in struct:cvmx_ipd_packet_mbuff_size::cvmx_ipd_packet_mbuff_size_s

Completed in 163 milliseconds

12