Searched refs:mb_height (Results 26 - 50 of 123) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmdec.c50 int mb_height; member in struct:MDECContext
194 for (a->mb_y = 0; a->mb_y < a->mb_height; a->mb_y++) {
212 a->mb_height = (avctx->coded_height + 15) / 16;
H A Dasv.c89 a->mb_height = (avctx->height + 15) / 16;
H A Dh264_slice.c224 const int big_mb_num = h->mb_stride * (h->mb_height + 1) + 1;
225 const int mb_array_size = h->mb_stride * h->mb_height;
227 const int b4_array_size = b4_stride * h->mb_height * 4;
509 h->mb_height != h1->mb_height ||
523 h->mb_height = h1->mb_height;
1177 if (nb_slices > H264_MAX_THREADS || (nb_slices > h->mb_height && h->mb_height)) {
1179 if (h->mb_height)
[all...]
H A Dh261dec.c121 if (s->mb_height == 18) { // CIF
504 s->mb_height = 9;
509 s->mb_height = 18;
512 s->mb_num = s->mb_width * s->mb_height;
638 while (h->gob_number < (s->mb_height == 18 ? 12 : 5)) {
H A Dproresenc_anatoliy.c446 int mb_height = (avctx->height + 15) >> 4; local
461 sl_data = sl_data_sizes + (slice_per_line * mb_height * 2);
462 for (mb_y = 0; mb_y < mb_height; mb_y++) {
469 unsafe_bot = (avctx->height & 0xf) && (mb_y == mb_height - 1);
484 AV_WB16(buf + 5, slice_per_line * mb_height);
H A Dvp56.c53 mvp.y < 0 || mvp.y >= s->mb_height)
471 s->mb_height = (avctx->coded_height+15) / 16;
473 if (s->mb_width > 1000 || s->mb_height > 1000) {
481 av_reallocp_array(&s->macroblocks, s->mb_width*s->mb_height,
595 for (block=0; block<s->mb_height*s->mb_width; block++)
626 for (mb_row=0; mb_row<s->mb_height; mb_row++) {
628 mb_row_flip = s->mb_height - mb_row - 1;
H A Ddxva2_vc1.c70 pp->wPicHeightInMBminus1= s->mb_height - 1;
173 slice->wNumberMBsInSlice = s->mb_width * s->mb_height; /* XXX We assume 1 slice */
226 bs->NumMBsInBuffer = s->mb_width * s->mb_height;
H A Dcavs.h177 int mb_width, mb_height; member in struct:AVSContext
H A Dvp8.h147 uint16_t mb_height; /* number of vertical MB */ member in struct:VP8Context
H A Ddxva2_mpeg2.c58 pp->wPicHeightInMBminus1 = (s->mb_height >> is_field) - 1;
157 const unsigned mb_count = s->mb_width * (s->mb_height >> is_field);
H A Dratecontrol.c631 const int mb_height = s->mb_height; local
669 if (mb_y < mb_height / 5) {
670 mb_distance = mb_height / 5 - mb_y;
672 (float)mb_distance / (float)(mb_height / 5));
673 } else if (mb_y > 4 * mb_height / 5) {
674 mb_distance = mb_y - 4 * mb_height / 5;
676 (float)mb_distance / (float)(mb_height / 5));
H A Dvp8.c74 if (!(f->seg_map = av_buffer_allocz(s->mb_width * s->mb_height))) {
154 if (width != s->avctx->width || ((width+15)/16 != s->mb_width || (height+15)/16 != s->mb_height) && s->macroblocks_base ||
164 s->mb_height = (s->avctx->coded_height + 15) / 16;
169 s->macroblocks_base = av_mallocz((s->mb_width + s->mb_height * 2 + 1) *
173 s->macroblocks_base = av_mallocz((s->mb_width + 2) * (s->mb_height + 2) *
452 int height = s->mb_height * 16;
566 (width + 15) / 16 != s->mb_width || (height + 15) / 16 != s->mb_height) {
716 (width+15)/16 != s->mb_width || (height+15)/16 != s->mb_height)
943 (s->mb_height - edge_y - 1) * 2;
1879 int width = 16 * s->mb_width, height = 16 * s->mb_height;
[all...]
H A Dvc1dec.c413 src_y = av_clip( src_y, -16, s->mb_height * 16);
415 uvsrc_y = av_clip(uvsrc_y, -8, s->mb_height * 8);
666 src_y = av_clip(src_y, -16, s->mb_height * 16);
865 uvsrc_y = av_clip(uvsrc_y, -8, s->mb_height * 8);
1118 if ((edges&8) && s->mb_y == (s->mb_height - 1)) \
1604 Y = (s->mb_height << 6) - 4;
1935 src_y = av_clip( src_y, -16, s->mb_height * 16);
1937 uvsrc_y = av_clip(uvsrc_y, -8, s->mb_height * 8);
2144 s->mv[0][0][1] = av_clip(s->mv[0][0][1], -60 - (s->mb_y << 6), (s->mb_height << 6) - 4 - (s->mb_y << 6));
2146 s->mv[1][0][1] = av_clip(s->mv[1][0][1], -60 - (s->mb_y << 6), (s->mb_height <<
5530 int mb_height = FFALIGN(s->mb_height, 2); local
5814 int mb_height, n_slices1=-1; local
[all...]
H A Dh264.c431 const int big_mb_num = h->mb_stride * (h->mb_height + 1);
462 for (y = 0; y < h->mb_height; y++)
497 int mb_array_size = h->mb_height * h->mb_stride;
498 int y_size = (2 * h->mb_width + 1) * (2 * h->mb_height + 1);
499 int c_size = h->mb_stride * (h->mb_height + 1);
525 er->mb_height = h->mb_height;
531 for (y = 0; y < h->mb_height; y++)
535 er->mb_index2xy[h->mb_height * h->mb_width] = (h->mb_height
[all...]
H A Dproresenc_kostya.c201 int mb_width, mb_height; member in struct:ProresContext
1009 ctx->mb_height);
1014 for (y = 0; y < ctx->mb_height; y++) {
1130 ctx->mb_height = FFALIGN(avctx->height, 32) >> 5;
1132 ctx->mb_height = FFALIGN(avctx->height, 16) >> 4;
1136 ctx->slices_per_picture = ctx->mb_height * ctx->slices_width;
1153 if (prores_mb_limits[i] >= ctx->mb_width * ctx->mb_height *
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dvp8.h93 uint16_t mb_height; /* number of vertical MB */ member in struct:__anon2033
H A Dmpegvideo.c297 const int big_mb_num = s->mb_stride * (s->mb_height + 1) + 1;
301 const int mb_array_size = s->mb_stride * s->mb_height;
302 const int b8_array_size = s->b8_stride * s->mb_height * 2;
303 const int b4_array_size = s->b4_stride * s->mb_height * 4;
417 int y_size = s->b8_stride * (2 * s->mb_height + 1);
418 int c_size = s->mb_stride * (s->mb_height + 1);
669 s->mb_height = (s->height + 31) / 32 * 2;
671 s->mb_height = (s->height + 15) / 16;
679 if (nb_slices > MAX_THREADS || (nb_slices > s->mb_height && s->mb_height)) {
[all...]
H A Dljpegenc.c108 const int mb_height = (height + s->mjpeg_vsample[0] - 1) / s->mjpeg_vsample[0]; local
110 for(mb_y = 0; mb_y < mb_height; mb_y++) {
H A Dvaapi_mpeg4.c91 pic_param->num_gobs_in_vop = (s->mb_width * s->mb_height) / pic_param->num_macroblocks_in_gob;
147 s->mb_y = s->mb_height;
H A Dh261dec.c123 if (s->mb_height==18){ //cif
482 s->mb_height = 9;
487 s->mb_height = 18;
490 s->mb_num = s->mb_width * s->mb_height;
618 while(h->gob_number < (s->mb_height==18 ? 12 : 5)){
H A Dvp56.c53 mvp.y < 0 || mvp.y >= s->mb_height)
467 s->mb_height = (avctx->coded_height+15) / 16;
469 if (s->mb_width > 1000 || s->mb_height > 1000) {
479 s->mb_width*s->mb_height*sizeof(*s->macroblocks));
554 for (block=0; block<s->mb_height*s->mb_width; block++)
585 for (mb_row=0; mb_row<s->mb_height; mb_row++) {
587 mb_row_flip = s->mb_height - mb_row - 1;
H A Ddxva2_mpeg2.c56 pp->wPicHeightInMBminus1 = (s->mb_height >> is_field) - 1;
156 const unsigned mb_count = s->mb_width * (s->mb_height >> is_field);
H A Dratecontrol.c546 const int mb_height = s->mb_height; local
586 if(mb_y < mb_height/5){
587 mb_distance = mb_height/5 - mb_y;
588 mb_factor = FFMAX(mb_factor, (float)mb_distance / (float)(mb_height/5));
589 }else if(mb_y > 4*mb_height/5){
590 mb_distance = mb_y - 4*mb_height/5;
591 mb_factor = FFMAX(mb_factor, (float)mb_distance / (float)(mb_height/5));
H A Dasv1.c48 int mb_height; member in struct:ASV1Context
444 if(a->mb_height2 != a->mb_height){
491 if(a->mb_height2 != a->mb_height){
524 a->mb_height = (avctx->height + 15) / 16;
559 p->qscale_table= av_malloc( p->qstride * a->mb_height);
561 memset(p->qscale_table, p->quality, p->qstride*a->mb_height);
H A Dvc1dec.c405 src_y = av_clip( src_y, -16, s->mb_height * 16);
407 uvsrc_y = av_clip(uvsrc_y, -8, s->mb_height * 8);
644 src_y = av_clip(src_y, -16, s->mb_height * 16);
835 uvsrc_y = av_clip(uvsrc_y, -8, s->mb_height * 8);
1049 if ((edges&8) && s->mb_y == (s->mb_height - 1)) \
1519 Y = (s->mb_height << 6) - 4;
1852 src_y = av_clip( src_y, -16, s->mb_height * 16);
1854 uvsrc_y = av_clip(uvsrc_y, -8, s->mb_height * 8);
2058 s->mv[0][0][1] = av_clip(s->mv[0][0][1], -60 - (s->mb_y << 6), (s->mb_height << 6) - 4 - (s->mb_y << 6));
2060 s->mv[1][0][1] = av_clip(s->mv[1][0][1], -60 - (s->mb_y << 6), (s->mb_height <<
5314 int mb_height, n_slices1; local
[all...]

Completed in 239 milliseconds

12345