Searched refs:mb_width (Results 101 - 125 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 Dsvq1enc.c278 s->m.mb_width = block_width;
280 s->m.mb_stride = s->m.mb_width + 1;
281 s->m.b8_stride = 2 * s->m.mb_width + 1;
H A Dmotion_est.c356 c->stride = 16*s->mb_width + 32;
357 c->uvstride= 8*s->mb_width + 16;
538 c->xmax = (x < s->mb_width * 16 - 16) ? 15 : 0;
543 c->xmax = - x + s->mb_width *16 - 16;
1200 // s->mb_type[mb_y*s->mb_width + mb_x]= mb_type;
1648 for(x=0; x<s->mb_width; x++){
1705 for(x=0; x<s->mb_width; x++){
1750 for(x=0; x<s->mb_width; x++){
H A Dmpeg4videodec.c426 s->mb_x = mb_num % s->mb_width;
427 s->mb_y = mb_num / s->mb_width;
598 for (; s->mb_x < s->mb_width; s->mb_x++) {
791 for (; mb_num < mb_count && s->mb_x < s->mb_width; s->mb_x++) {
889 if (s->resync_mb_x + s->resync_mb_y * s->mb_width + mb_num > s->mb_num) {
1286 const int delta = s->mb_x + 1 == s->mb_width ? 2 : 1;
1646 if (s->mb_x + s->mb_y*s->mb_width + 1 > next && (s->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
1648 } else if (s->mb_x + s->mb_y*s->mb_width + 1 >= next)
1652 const int delta= s->mb_x + 1 == s->mb_width ? 2 : 1;
1654 (s->mb_x + delta >= s->mb_width)
[all...]
H A Dmpeg12enc.c299 s->mb_width * s->mb_height <= 396 &&
300 s->mb_width * s->mb_height * framerate.num <= 396 * 25 * framerate.den &&
736 (mb_x != s->mb_width - 1 ||
H A Dmpegvideo_enc.c1204 for (x = 0; x < s->mb_width * bw; x++) {
1225 score64 = pow(score64 / (double)(s->mb_width * s->mb_height),
1695 if ((ret = ff_alloc_packet2(avctx, pkt, s->mb_width*s->mb_height*(MAX_MB_BYTES+100)+10000)) < 0)
1700 s->mb_width*s->mb_height*12);
2571 for(s->mb_x=s->mb_width-1; s->mb_x >=0 ;s->mb_x--) {
2592 for(s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) {
2616 for(mb_x=0; mb_x < s->mb_width; mb_x++) {
2656 int mba = s->mb_x + s->mb_width * (s->mb_y % s->gob_index);
2765 for(mb_x=0; mb_x < s->mb_width; mb_x++) {
2843 int number_mb = (mb_y - s->resync_mb_y)*s->mb_width
[all...]
H A Dlibxvid.c681 int mb_width = (avctx->width + 15) / 16; local
687 if ((ret = ff_alloc_packet2(avctx, pkt, mb_width*mb_height*MAX_MB_BYTES + FF_MIN_BUFFER_SIZE)) < 0)
H A Dituh263enc.c831 mb_pos= s->mb_x + s->mb_width*s->mb_y;
H A Dmpeg12dec.c751 mb_type = s->current_picture.mb_type[s->mb_width + (s->mb_y - 1) * s->mb_stride - 1];
1757 if (s->mb_x >= (unsigned) s->mb_width) {
1850 if (++s->mb_x >= s->mb_width) {
1974 s->er.error_count = (3 * (s->end_mb_y - s->start_mb_y) * s->mb_width) >> field_pic;
H A Dmpegvideo_motion.c709 if (mb_x + 1 >= s->mb_width || IS_INTRA(cur_frame->mb_type[xy + 1])) {
H A Dsnowenc.c1627 s->m.mb_width = block_width;
1629 s->m.mb_stride= s->m.mb_width+1;
1630 s->m.b8_stride= 2*s->m.mb_width+1;
H A Dmotion_est_template.c947 const int xend= FFMIN(s->mb_width , s->mb_x + count + 1);
H A Dmpeg4videoenc.c1389 put_bits(&s->pb, mb_num_bits, s->mb_x + s->mb_y * s->mb_width);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264.c464 const int pic_width = 16*s->mb_width;
968 for(x=0; x<s->mb_width; x++){
1014 FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[0], h->s.mb_width * 16*3 * sizeof(uint8_t)*2, fail)
1015 FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[1], h->s.mb_width * 16*3 * sizeof(uint8_t)*2, fail)
1697 if(s->mb_x+1 < s->mb_width){
1711 if(s->mb_x+1 < s->mb_width){
2714 s->mb_width= h->sps.mb_width;
2717 h->b_stride= s->mb_width*4;
2721 s->width = 16*s->mb_width
[all...]
H A Dmpeg12enc.c252 s->mb_width * s->mb_height <= 396 &&
253 s->mb_width * s->mb_height * framerate.num <= framerate.den*396*25 &&
459 (mb_x != s->mb_width - 1 || (mb_y != s->mb_height - 1 && s->codec_id == CODEC_ID_MPEG1VIDEO)) &&
H A Dmpeg4videodec.c382 if (++mb_x == s->mb_width) mb_x = 0;
387 s->mb_x= mb_num % s->mb_width;
388 s->mb_y= mb_num / s->mb_width;
547 for(; s->mb_x<s->mb_width; s->mb_x++){
711 for(; mb_num < mb_count && s->mb_x<s->mb_width; s->mb_x++){
802 if(s->resync_mb_x + s->resync_mb_y*s->mb_width + mb_num > s->mb_num){
1141 const int delta= s->mb_x + 1 == s->mb_width ? 2 : 1;
1470 const int delta= s->mb_x + 1 == s->mb_width ? 2 : 1;
1474 (s->mb_x + delta >= s->mb_width) ? FFMIN(s->mb_y+1, s->mb_height-1) : s->mb_y, 0);
H A Dmotion_est.c352 c->stride = 16*s->mb_width + 32;
353 c->uvstride= 8*s->mb_width + 16;
539 c->xmax = - x + s->mb_width *16;
545 c->xmax = (x < s->mb_width * 16 - 16) ? 15 : 0;
550 c->xmax = - x + s->mb_width *16 - 16;
1333 // s->mb_type[mb_y*s->mb_width + mb_x]= mb_type;
1830 for(x=0; x<s->mb_width; x++){
1894 for(x=0; x<s->mb_width; x++){
1939 for(x=0; x<s->mb_width; x++){
H A Dh264.h167 int mb_width; ///< pic_width_in_mbs_minus1 + 1 member in struct:SPS
H A Dmpegvideo.h237 int mb_width, mb_height; ///< number of MBs horizontally & vertically member in struct:MpegEncContext
238 int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11
239 int b8_stride; ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
240 int b4_stride; ///< 4*mb_width+1 used for some 4x4 block arrays to allow simple addressing
H A Dmpegvideo_enc.c224 int stride = ((16 * s->mb_width ) >>
1081 for (x = 0; x < s->mb_width * bw; x++) {
2268 for(s->mb_x=s->mb_width-1; s->mb_x >=0 ;s->mb_x--) {
2289 for(s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) {
2313 for(mb_x=0; mb_x < s->mb_width; mb_x++) {
2415 for(mb_x=0; mb_x < s->mb_width; mb_x++) {
2490 int number_mb = (mb_y - s->resync_mb_y)*s->mb_width + mb_x - s->resync_mb_x;
2966 int number_mb = (mb_y - s->resync_mb_y)*s->mb_width - s->resync_mb_x;
H A Dituh263enc.c839 mb_pos= s->mb_x + s->mb_width*s->mb_y;
H A Dmpeg12.c756 mb_type = s->current_picture.f.mb_type[s->mb_width + (s->mb_y - 1) * s->mb_stride - 1]; // FIXME not sure if this is allowed in MPEG at all
1679 if (s->mb_x >= (unsigned)s->mb_width) {
1758 if (++s->mb_x >= s->mb_width) {
1855 s->error_count = (3 * (s->end_mb_y - s->start_mb_y) * s->mb_width) >> field_pic;
H A Dmpegvideo_common.h678 if (mb_x + 1 >= s->mb_width || IS_INTRA(s->current_picture.f.mb_type[xy + 1])) {
H A Dsnowenc.c1680 s->m.mb_width = block_width;
1682 s->m.mb_stride= s->m.mb_width+1;
1683 s->m.b8_stride= 2*s->m.mb_width+1;
H A Dmotion_est_template.c946 const int xend= FFMIN(s->mb_width , s->mb_x + count + 1);
H A Dmpeg4videoenc.c1313 put_bits(&s->pb, mb_num_bits, s->mb_x + s->mb_y*s->mb_width);

Completed in 276 milliseconds

123456