Searched refs:mb_width (Results 51 - 75 of 127) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddnxhddec.c41 unsigned int mb_width, mb_height; member in struct:DNXHDContext
184 ctx->mb_width = ctx->width >> 4;
188 "mb width %d, mb height %d\n", ctx->mb_width, ctx->mb_height);
417 for (x = 0; x < ctx->mb_width; x++) {
H A Dh261dec.c437 int b_stride = 2*s->mb_width + 1;
503 s->mb_width = 11;
508 s->mb_width = 22;
512 s->mb_num = s->mb_width * s->mb_height;
H A Dh264_slice.c226 const int b4_stride = h->mb_width * 4 + 1;
508 h->mb_width != h1->mb_width ||
524 h->mb_width = h1->mb_width;
1223 c->mb_width = h->mb_width;
1367 if (h->mb_width != h->sps.mb_width ||
1389 ( 16*h->sps.mb_width !
[all...]
H A Dvp8.h146 uint16_t mb_width; /* number of horizontal MB */ member in struct:VP8Context
H A Dsvq3.c556 if (h->mb_x < h->mb_width - 1) {
829 (h->mb_y * h->mb_width + h->mb_x);
860 -1, 8 * sizeof(int8_t) * (h->mb_width - h->mb_x));
1040 h->mb_width = (h->width + 15) / 16;
1042 h->mb_stride = h->mb_width + 1;
1043 h->mb_num = h->mb_width * h->mb_height;
1044 h->b_stride = 4 * h->mb_width;
1045 s->h_edge_pos = h->mb_width * 16;
1077 const int b4_stride = h->mb_width * 4 + 1;
1273 for (h->mb_x = 0; h->mb_x < h->mb_width;
[all...]
H A Dasvdec.c244 if (a->mb_width2 != a->mb_width) {
256 for (mb_x = 0; mb_x < a->mb_width; mb_x++) {
H A Dratecontrol.c630 const int mb_width = s->mb_width; local
662 if (mb_x < mb_width / 5) {
663 mb_distance = mb_width / 5 - mb_x;
664 mb_factor = (float)mb_distance / (float)(mb_width / 5);
665 } else if (mb_x > 4 * mb_width / 5) {
666 mb_distance = mb_x - 4 * mb_width / 5;
667 mb_factor = (float)mb_distance / (float)(mb_width / 5);
H A Dmjpegdec.c896 (unsigned)s->mb_width * 4 * sizeof(s->ljpeg_buffer[0][0]));
911 for (mb_x = 0; mb_x < s->mb_width; mb_x++) {
949 for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
955 for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
961 for (mb_x = 0; mb_x < s->mb_width; mb_x++) {
967 for (mb_x = 0; mb_x < s->mb_width; mb_x++) {
976 for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
982 for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
1006 for (mb_x = 0; mb_x < s->mb_width; mb_x++) {
1180 if (mb_bitmask_size != (s->mb_width *
[all...]
H A Dh264.c463 for (x = 0; x < h->mb_width; x++) {
498 int y_size = (2 * h->mb_width + 1) * (2 * h->mb_height + 1);
504 h->mb_width * 16 * 3 * sizeof(uint8_t) * 2, fail)
506 h->mb_width * 16 * 3 * sizeof(uint8_t) * 2, fail)
524 er->mb_width = h->mb_width;
527 er->b8_stride = h->mb_width * 2 + 1;
532 for (x = 0; x < h->mb_width; x++)
533 er->mb_index2xy[x + y * h->mb_width] = x + y * h->mb_stride;
535 er->mb_index2xy[h->mb_height * h->mb_width]
[all...]
H A Dh264_ps.c457 sps->mb_width = get_ue_golomb(&h->gb) + 1;
459 if ((unsigned)sps->mb_width >= INT_MAX / 16 ||
461 av_image_check_size(16 * sps->mb_width,
463 av_log(h->avctx, AV_LOG_ERROR, "mb_width/height overflow\n");
486 int width = 16 * sps->mb_width;
555 sps->mb_width, sps->mb_height,
H A Dintrax8.c366 w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );//mb_x for chroma would always be odd
382 w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );
688 * Requires valid MpegEncContext with valid s->mb_width before calling.
696 av_assert0(s->mb_width>0);
697 w->prediction_table=av_mallocz(s->mb_width*2*2);//two rows, 2 blocks per cannon mb
756 for(s->mb_x=0; s->mb_x < s->mb_width*2; s->mb_x++){
H A Ddxva2_h264.c91 pp->wFrameWidthInMbsMinus1 = h->mb_width - 1;
222 slice->first_mb_in_slice = (h->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + h->mb_x;
295 const unsigned mb_count = h->mb_width * h->mb_height;
H A Dvc1dec.c119 if (s->mb_x == s->mb_width - 1) {
210 if (s->mb_x == s->mb_width - 1) {
239 if (s->mb_x == s->mb_width - 1) {
289 if (s->mb_x == s->mb_width - 1) {
412 src_x = av_clip( src_x, -16, s->mb_width * 16);
414 uvsrc_x = av_clip(uvsrc_x, -8, s->mb_width * 8);
665 src_x = av_clip(src_x, -16, s->mb_width * 16);
864 uvsrc_x = av_clip(uvsrc_x, -8, s->mb_width * 8);
1116 if ((edges&4) && s->mb_x == (s->mb_width - 1)) \
1473 off = (s->mb_x == (s->mb_width
[all...]
H A Dmpegvideo.c608 pic->alloc_mb_width = s->mb_width;
648 if ( pic->alloc_mb_width != s->mb_width
1113 er->mb_width = s->mb_width;
1146 s->mb_width = (s->width + 15) / 16;
1147 s->mb_stride = s->mb_width + 1;
1148 s->b8_stride = s->mb_width * 2 + 1;
1154 s->h_edge_pos = s->mb_width * 16;
1157 s->mb_num = s->mb_width * s->mb_height;
1175 for (x = 0; x < s->mb_width;
2110 ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_table, uint32_t *mbtype_table, int8_t *qscale_table, int16_t (*motion_val[2])[2], int *low_delay, int mb_width, int mb_height, int mb_stride, int quarter_sample) argument
[all...]
H A Dvaapi_h264.c243 pic_param->picture_width_in_mbs_minus1 = h->mb_width - 1;
329 slice_param->first_mb_in_slice = (h->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + h->mb_x;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dratecontrol.c545 const int mb_width = s->mb_width; local
579 if(mb_x < mb_width/5){
580 mb_distance = mb_width/5 - mb_x;
581 mb_factor = (float)mb_distance / (float)(mb_width/5);
582 }else if(mb_x > 4*mb_width/5){
583 mb_distance = mb_x - 4*mb_width/5;
584 mb_factor = (float)mb_distance / (float)(mb_width/5);
638 //if(i%s->mb_width==0) printf("\n");
H A Dh263dec.c200 for(; s->mb_x < s->mb_width; s->mb_x++) {
232 if(++s->mb_x >= s->mb_width){
435 (s->width + 15) >> 4 != s->mb_width ||
666 if (prev_y * s->mb_width + prev_x < s->mb_y * s->mb_width + s->mb_x)
H A Dintrax8.c366 w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );//mb_x for chroma would always be odd
382 w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );
688 * Requires valid MpegEncContext with valid s->mb_width before calling.
696 assert(s->mb_width>0);
697 w->prediction_table=av_mallocz(s->mb_width*2*2);//two rows, 2 blocks per cannon mb
752 for(s->mb_x=0; s->mb_x < s->mb_width*2; s->mb_x++){
H A Ddxva2_h264.c91 pp->wFrameWidthInMbsMinus1 = s->mb_width - 1;
210 slice->first_mb_in_slice = (s->mb_y >> FIELD_OR_MBAFF_PICTURE) * s->mb_width + s->mb_x;
280 const unsigned mb_count = s->mb_width * s->mb_height;
H A Dh261dec.c481 s->mb_width = 11;
486 s->mb_width = 22;
490 s->mb_num = s->mb_width * s->mb_height;
H A Dvc1dec.c118 if (s->mb_x == s->mb_width - 1) {
208 if (s->mb_x == s->mb_width - 1) {
237 if (s->mb_x == s->mb_width - 1) {
287 if (s->mb_x == s->mb_width - 1) {
404 src_x = av_clip( src_x, -16, s->mb_width * 16);
406 uvsrc_x = av_clip(uvsrc_x, -8, s->mb_width * 8);
643 src_x = av_clip(src_x, -16, s->mb_width * 16);
834 uvsrc_x = av_clip(uvsrc_x, -8, s->mb_width * 8);
1047 if ((edges&4) && s->mb_x == (s->mb_width - 1)) \
1394 off = (s->mb_x == (s->mb_width
[all...]
H A Dvaapi_h264.c243 pic_param->picture_width_in_mbs_minus1 = s->mb_width - 1;
314 slice_param->first_mb_in_slice = (s->mb_y >> FIELD_OR_MBAFF_PICTURE) * s->mb_width + s->mb_x;
H A Dcavs.h163 int mb_width, mb_height; member in struct:__anon1890
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dpo-lex.c261 mb_width (const mbchar_t mbc) function
672 gram_pos_column += mb_width (mbc);
712 gram_pos_column -= mb_width (mbc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dmbchar.h102 mb_width (mbc)
138 extern int mb_width (const mbchar_t mbc);
247 #define mb_width(mbc) \ macro

Completed in 301 milliseconds

123456