Searched refs:mb_count (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddxva2_internal.h47 unsigned mb_count);
H A Ddxva2.c48 unsigned mb_count)
65 dsc->NumMBsInBuffer = mb_count;
44 ff_dxva2_commit_buffer(AVCodecContext *avctx, struct dxva_context *ctx, DXVA2_DecodeBufferDesc *dsc, unsigned type, const void *data, unsigned size, unsigned mb_count) argument
H A Ddxva2_mpeg2.c156 const unsigned mb_count = s->mb_width * (s->mb_height >> is_field); local
183 mb_count - slice[0].wNumberMBsInSlice;
197 bs->NumMBsInBuffer = mb_count;
203 mb_count);
H A Drv10.c242 int mb_count, pb_frame, marker, mb_xy; local
283 mb_count = get_bits(&s->gb, 12);
287 mb_count = s->mb_width * s->mb_height;
293 return mb_count;
507 int mb_count, mb_pos, left, start_mb_x, active_bits_size; local
512 mb_count = rv10_decode_picture_header(s);
514 mb_count = rv20_decode_picture_header(s);
515 if (mb_count < 0) {
527 if (mb_count > left) {
584 for(s->mb_num_left= mb_count;
[all...]
H A Dmxpegdec.c68 unsigned bitmask_size, mb_count; local
73 mb_count = s->mb_width * s->mb_height;
75 bitmask_size = (mb_count + 7) >> 3;
H A Ddxva2_h264.c280 const unsigned mb_count = s->mb_width * s->mb_height; local
331 slice_long->NumMbsForSlice = mb_count - slice_long->first_mb_in_slice;
356 bs->NumMBsInBuffer = mb_count;
368 slice_data, slice_size, mb_count);
H A Dmpeg4videodec.c703 static int mpeg4_decode_partition_b(MpegEncContext *s, int mb_count){ argument
709 for(s->mb_y= s->resync_mb_y; mb_num < mb_count; s->mb_y++){
711 for(; mb_num < mb_count && s->mb_x<s->mb_width; s->mb_x++){
780 if(mb_num >= mb_count) return 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddxva2_internal.h46 unsigned mb_count);
H A Dproresdec.h33 unsigned mb_count; member in struct:__anon3197
H A Dproresenc_anatoliy.c284 static int encode_slice_plane(AVCodecContext *avctx, int mb_count, argument
295 for (i = 0; i < mb_count; i++) {
307 blocks_per_slice = mb_count << (2 - chroma);
319 int chroma_stride, unsigned mb_count, uint8_t *buf, unsigned data_size,
325 *y_data_size = encode_slice_plane(avctx, mb_count, dest_y, luma_stride,
329 *u_data_size = encode_slice_plane(avctx, mb_count, dest_u,
333 *v_data_size = encode_slice_plane(avctx, mb_count, dest_v,
373 int mb_y, unsigned mb_count, uint8_t *buf, unsigned data_size,
381 int tgt_bits = (mb_count * bitrate_table[avctx->profile]) >> 2;
396 (uint16_t *) ctx->fill_y, mb_count <<
317 encode_slice_data(AVCodecContext *avctx, uint8_t *dest_y, uint8_t *dest_u, uint8_t *dest_v, int luma_stride, int chroma_stride, unsigned mb_count, uint8_t *buf, unsigned data_size, unsigned* y_data_size, unsigned* u_data_size, unsigned* v_data_size, int qp) argument
372 encode_slice(AVCodecContext *avctx, const AVFrame *pic, int mb_x, int mb_y, unsigned mb_count, uint8_t *buf, unsigned data_size, int unsafe, int *qp) argument
[all...]
H A Ddxva2.c56 unsigned mb_count)
76 dsc->NumMBsInBuffer = mb_count;
52 ff_dxva2_commit_buffer(AVCodecContext *avctx, struct dxva_context *ctx, DXVA2_DecodeBufferDesc *dsc, unsigned type, const void *data, unsigned size, unsigned mb_count) argument
H A Ddxva2_mpeg2.c157 const unsigned mb_count = s->mb_width * (s->mb_height >> is_field); local
184 mb_count - slice[0].wNumberMBsInSlice;
198 bs->NumMBsInBuffer = mb_count;
204 mb_count);
H A Dcinepakenc.c189 int x, mb_count, strip_buf_size, frame_buf_size; local
223 mb_count = avctx->width * avctx->height / MB_AREA;
229 strip_buf_size = STRIP_HEADER_SIZE + 3 * CHUNK_HEADER_SIZE + 2 * VECTOR_MAX * CODEBOOK_MAX + 4 * (mb_count + (mb_count + 15) / 16) + (2 * CODEBOOK_MAX)/8;
239 if (!(s->mb = av_malloc_array(mb_count, sizeof(mb_info))))
243 if (!(s->best_mb = av_malloc_array(mb_count, sizeof(mb_info))))
323 int mb_count = s->w * h / MB_AREA; local
330 //av_log(s->avctx, AV_LOG_INFO, "sizes %3i %3i -> %9lli score mb_count %i", info->v1_size, info->v4_size, (long long int)ret, mb_count);
339 ret += s->lambda * 8 * mb_count;
622 int x, y, z, flags, bits, temp_size, header_ofs, ret = 0, mb_count = s->w * h / MB_AREA; local
[all...]
H A Drv10.c246 int mb_count, pb_frame, marker, mb_xy; local
290 mb_count = get_bits(&s->gb, 12);
294 mb_count = s->mb_width * s->mb_height;
300 return mb_count;
552 int mb_count, mb_pos, left, start_mb_x, active_bits_size, ret; local
557 mb_count = rv10_decode_picture_header(s);
559 mb_count = rv20_decode_picture_header(rv);
560 if (mb_count < 0) {
561 if (mb_count != ERROR_SKIP_FRAME)
573 if (mb_count > lef
[all...]
H A Dmxpegdec.c94 unsigned bitmask_size, mb_count; local
99 mb_count = s->mb_width * s->mb_height;
101 bitmask_size = (mb_count + 7) >> 3;
H A Ddxva2_h264.c295 const unsigned mb_count = h->mb_width * h->mb_height; local
346 slice_long->NumMbsForSlice = mb_count - slice_long->first_mb_in_slice;
371 bs->NumMBsInBuffer = mb_count;
383 slice_data, slice_size, mb_count);
H A Dproresdec2.c220 slice->mb_count = slice_mb_count;
367 int i, blocks_per_slice = slice->mb_count<<2;
380 for (i = 0; i < slice->mb_count; i++) {
400 int i, j, blocks_per_slice = slice->mb_count << log2_blocks_per_mb;
413 for (i = 0; i < slice->mb_count; i++) {
518 // jobnr, slice->mb_count, slice->mb_x, slice->mb_y);
594 a_data_size, slice->mb_count);
H A Dmpeg4videodec.c782 static int mpeg4_decode_partition_b(MpegEncContext *s, int mb_count) argument
789 for (s->mb_y = s->resync_mb_y; mb_num < mb_count; s->mb_y++) {
791 for (; mb_num < mb_count && s->mb_x < s->mb_width; s->mb_x++) {
864 if (mb_num >= mb_count)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/go7007/
H A Dgo7007-fw.c737 int mb_count = (go->width >> 4) * (go->height >> 4); local
751 for (i = 0; i < mb_count; ++i) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dregex.c1223 size_t mb_count = 0;
1251 offset_buffer[wc_count + 1] = mb_count += consumed;
1256 offset_buffer[i] = mb_count + 1;
1216 size_t mb_count = 0; local

Completed in 233 milliseconds