Searched refs:cbp (Results 1 - 25 of 33) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dxvmc_internal.h28 void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp);
H A Dwmv2enc.c168 int cbp, coded_cbp, i; local
175 /* compute cbp */
176 cbp = 0;
179 cbp |= 1 << (5 - i);
183 wmv2_inter_table[w->cbp_table_index][cbp + 64][1],
184 wmv2_inter_table[w->cbp_table_index][cbp + 64][0]);
191 /* compute cbp */
192 cbp = 0;
197 cbp |= val << (5 - i);
208 printf("cbp
[all...]
H A Dmpegvideo_xvmc.c54 void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp) argument
59 cbp <<= 12-mb_block_count;
61 if (cbp & (1 << 11))
65 cbp += cbp;
159 int i, cbp, blocks_per_mb; local
277 // calculate cbp
278 cbp = 0;
280 cbp += cbp;
[all...]
H A Dh261enc.c147 int i, cbp; local
148 cbp= 0;
151 cbp |= 1 << (5 - i);
153 return cbp;
160 int mvd, mv_diff_x, mv_diff_y, i, cbp; local
161 cbp = 63; // avoid warning
168 /* compute cbp */
169 cbp= get_cbp(s, block);
174 if((cbp | mvd | s->dquant ) == 0) {
194 if(cbp ||
[all...]
H A Dmsmpeg4.c471 int cbp, coded_cbp, i; local
478 /* compute cbp */
479 cbp = 0;
482 cbp |= 1 << (5 - i);
484 if (s->use_skip_mb_code && (cbp | motion_x | motion_y) == 0) {
498 v2_mb_type[cbp&3][1],
499 v2_mb_type[cbp&3][0]);
500 if((cbp&3) != 3) coded_cbp= cbp ^ 0x3C;
501 else coded_cbp= cbp;
1434 int cbp, code, i; local
1520 int cbp, code, i; local
[all...]
H A Dmpeg12enc.c440 int i, cbp; local
445 /* compute cbp */
446 cbp = 0;
449 cbp |= 1 << (mb_block_count - 1 - i);
452 if (cbp == 0 && !first_mb && s->mv_type == MV_TYPE_16X16 &&
475 if(s->dquant && cbp){
485 if(s->dquant && cbp){
497 if (cbp != 0) {
508 put_mb_modes(s, 5, 2, 1, 0); /* motion + cbp */
511 put_mb_modes(s, 1, 1, 1, 0); /* motion + cbp */
[all...]
H A Drv34.h65 VLC cbp[2][4]; ///< VLCs used for coded block patterns decoding member in struct:RV34VLC
H A Dwmv2dec.c215 av_log(s->avctx, AV_LOG_DEBUG, "rl:%d rlc:%d dc:%d mv:%d mbrl:%d qp:%d mspel:%d per_mb_abt:%d abt_type:%d cbp:%d ii:%d\n",
305 static inline int wmv2_decode_inter_block(Wmv2Context *w, DCTELEM *block, int n, int cbp){ argument
310 if(!cbp){
353 int cbp, code, i; local
378 cbp = code & 0x3f;
383 av_log(s->avctx, AV_LOG_ERROR, "II-cbp illegal at %d %d\n", s->mb_x, s->mb_y);
387 cbp = 0;
395 cbp |= val << (5 - i);
404 if(cbp){
428 if (wmv2_decode_inter_block(w, block[i], i, (cbp >> (
[all...]
H A Drv34.c114 rv34_gen_vlc(rv34_table_intra_cbp[i][j+k*2], CBP_VLC_SIZE, &intra_vlcs[i].cbp[j][k], rv34_cbp_code);
124 rv34_gen_vlc(rv34_inter_cbp[i][j], CBP_VLC_SIZE, &inter_vlcs[i].cbp[0][j], rv34_cbp_code);
222 int pattern, code, cbp=0; local
237 cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
243 cbp |= cbp_masks[get_bits1(gb)] << i;
245 cbp |= cbp_masks[2] << i;
247 return cbp;
919 static void rv34_output_macroblock(RV34DecContext *r, int8_t *intra_types, int cbp, in argument
1075 rv34_apply_differences(RV34DecContext *r, int cbp) argument
1136 int cbp, cbp2; local
[all...]
H A Dcavsdec.c153 if(h->cbp & (1<<4))
156 if(h->cbp & (1<<5))
165 int cbp= get_ue_golomb(&h->s.gb); local
166 if(cbp > 63){
167 av_log(h->s.avctx, AV_LOG_ERROR, "illegal inter cbp\n");
170 h->cbp = cbp_tab[cbp][1];
173 if(h->cbp && !h->qp_fixed)
176 if(h->cbp & (1<<block))
226 av_log(h->s.avctx, AV_LOG_ERROR, "illegal intra cbp\
[all...]
H A Dh263.c771 int cbp, i; local
803 cbp= cbpc + 4*cbpy;
806 cbp= 0;
810 if (s->block_last_index[i] >= 0 && ((cbp >> (5 - i))&1)==0 ){
816 cbp= 0;
819 cbp |= 1 << (5 - i);
822 return cbp;
827 int cbp=0, i; local
836 cbp |= 1 << (5 - i);
840 if(cbp){
910 int i, cbp; local
1194 int cbp; local
1265 int cbpc, cbpy, i, cbp, pred_x, pred_y; local
3719 int cbp, mb_type; local
3911 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
4177 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
[all...]
H A Dh261dec.c250 int i, cbp, xy; local
252 cbp = 63;
319 // Read cbp
321 cbp = get_vlc2(&s->gb, h261_cbp_vlc.table, H261_CBP_VLC_BITS, 2) + 1;
341 if (h261_decode_block(h, s->block[i], i, cbp&32) < 0){
344 cbp+=cbp;
389 // EOB Not possible for first level when cbp is available (that's why the table is different)
H A Dvc1.c3136 int cbp; /* cbp decoding stuff */ local
3182 cbp = 0;
3187 cbp = get_vlc2(&v->s.gb, v->cbpcy_vlc->table, VC1_CBPCY_P_VLC_BITS, 2);
3193 cbp = 0;
3206 val = ((cbp >> (5 - i)) & 1);
3231 left_cbp = v->cbp[s->mb_x - 1] >> (i * 4);
3232 top_cbp = v->cbp[s->mb_x - s->mb_stride] >> (i * 4);
3234 left_cbp = (i & 1) ? (cbp >> ((i-1)*4)) : (v->cbp[
3430 int cbp = 0; /* cbp decoding stuff */ local
3574 int cbp, val; local
3687 int cbp, val; local
[all...]
H A Dsvq3.c421 int cbp = 0; local
600 cbp = i_mb_type_info[mb_type - 8].cbp;
628 cbp = IS_INTRA(mb_type) ? golomb_to_intra4x4_cbp[vlc] : golomb_to_inter_cbp[vlc];
630 if (IS_INTRA16x16(mb_type) || (s->pict_type != FF_I_TYPE && s->adaptive_quant && cbp)) {
645 if (cbp) {
650 if ((cbp & (1 << i))) {
663 if ((cbp & 0x30)) {
671 if ((cbp & 0x20)) {
684 h->cbp
[all...]
H A Drv40.c439 int cbp[4]; local
484 cbp [i] = r->cbp_luma[pos];
490 cbp [i] = 0;
505 | ((cbp[POS_CUR] << 4) & ~MASK_Y_TOP_ROW)
506 | ((cbp[POS_TOP] & MASK_Y_LAST_ROW) >> 12);
514 | ((cbp[POS_CUR] << 1) & ~MASK_Y_LEFT_COL)
515 | ((cbp[POS_LEFT] & MASK_Y_RIGHT_COL) >> 3);
H A Dvc1.h309 uint32_t *cbp_base, *cbp; member in struct:VC1Context
H A Dh264data.h350 uint8_t cbp; member in struct:IMbInfo
H A Dh264.c2592 }else if(h->cbp&15){
2619 if((simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)) && (h->cbp&0x30)){
2655 if(h->cbp || IS_INTRA(mb_type))
4361 unsigned int mb_type, cbp; local
4367 cbp = 0; /* avoid warning. FIXME: find a solution without slowing
4418 cbp= i_mb_type_info[mb_type].cbp;
4719 cbp= get_ue_golomb(&s->gb);
4720 if(cbp > 47){
4721 av_log(h->s.avctx, AV_LOG_ERROR, "cbp to
5030 int cbp_b, cbp_a, ctx, cbp = 0; local
5440 int mb_type, partition_count, cbp = 0; local
[all...]
H A Dmpeg12.c207 int i, j, k, cbp, val, mb_type, motion_type; local
501 cbp = get_vlc2(&s->gb, mb_pat_vlc.table, MB_PAT_VLC_BITS, 1);
503 cbp<<= mb_block_count-6;
504 cbp |= get_bits(&s->gb, mb_block_count-6);
507 if (cbp <= 0){
508 av_log(s->avctx, AV_LOG_ERROR, "invalid cbp at %d %d\n", s->mb_x, s->mb_y);
514 ff_xvmc_pack_pblocks(s,cbp);
523 if(cbp & 32) {
528 cbp+=cbp;
[all...]
H A Dcavs.h202 int cbp; member in struct:__anon502
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Ddgrs.c62 * int chan = ((I596_RBD *) S2H(cbp->xmit.tbdp))->chan;
460 I596_CB *cbp
476 int chan = ((I596_RBD *) S2H(cbp->xmit.tbdp))->chan;
493 if (0) printk("%s: rcv len=%ld\n", devN->name, cbp->xmit.count);
498 len = cbp->xmit.count;
536 tbdp = (I596_TBD *) S2H(cbp->xmit.tbdp);
548 printk("%s: cbp = %lx\n", devN->name, (long) H2S(cbp));
604 tbdp = (I596_TBD *) S2H(cbp->xmit.tbdp);
617 printk("%s: cbp
901 I596_CB *cbp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-dbg.c297 u32 cbp, be; local
315 cbp = hc32_to_cpup (ohci, &td->hwCBP);
317 ohci_dbg (ohci, " cbp %08x be %08x (len %d)\n", cbp, be,
318 cbp ? (be + 1 - cbp) : 0);
439 u32 cbp, be; local
443 cbp = hc32_to_cpup (ohci, &td->hwCBP);
455 cbp ? (be + 1 - cbp)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Devhiperfifo.c262 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) argument
264 DPRINT("%s e %p s %i what %i cbp %p sockp %p\n",
265 __PRETTY_FUNCTION__, e, s, what, cbp, sockp);
267 GlobalInfo *g = (GlobalInfo*) cbp;
H A Dhiperfifo.c253 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) argument
255 GlobalInfo *g = (GlobalInfo*) cbp;
H A Dghiper.c251 static int sock_cb(CURL *e, curl_socket_t s, int what, void *cbp, void *sockp) argument
253 GlobalInfo *g = (GlobalInfo*) cbp;

Completed in 292 milliseconds

12