Searched refs:AV_PICTURE_TYPE_B (Results 1 - 25 of 113) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dutils.c48 case AV_PICTURE_TYPE_B: return 'B';
H A Davutil.h298 AV_PICTURE_TYPE_B, ///< Bi-dir predicted enumerator in enum:AVPictureType
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmpegutils.c54 if (cur->pict_type == AV_PICTURE_TYPE_B || low_delay ||
62 if (cur->pict_type == AV_PICTURE_TYPE_B &&
H A Drv34_parser.c37 AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B,
H A Dvaapi_vc1.c57 (v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type);
65 return v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type;
75 (v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type));
85 (v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type)) &&
97 case AV_PICTURE_TYPE_B: return v->bi_type ? 3 : 2;
106 (v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type))
260 case AV_PICTURE_TYPE_B:
279 case AV_PICTURE_TYPE_B:
H A Dratecontrol.c261 rce.pict_type = AV_PICTURE_TYPE_B;
377 rce->pict_type == AV_PICTURE_TYPE_B ? (rce->f_code + rce->b_code) * 0.5 : rce->f_code,
383 rce->pict_type == AV_PICTURE_TYPE_B,
389 rcc->last_qscale_for[AV_PICTURE_TYPE_B],
395 rcc->p_cplx_sum[AV_PICTURE_TYPE_B] / (double)rcc->frame_count[AV_PICTURE_TYPE_B],
431 else if (pict_type == AV_PICTURE_TYPE_B && s->avctx->b_quant_factor < 0.0)
450 else if (pict_type == AV_PICTURE_TYPE_B &&
469 if (pict_type != AV_PICTURE_TYPE_B)
486 case AV_PICTURE_TYPE_B
[all...]
H A Dcavsdec.c636 if (h->cur.f->pict_type != AV_PICTURE_TYPE_B)
980 if (h->cur.f->pict_type > AV_PICTURE_TYPE_B) {
986 (!h->DPB[1].f->data[0] && h->cur.f->pict_type == AV_PICTURE_TYPE_B))
1003 ret = ff_get_buffer(h->avctx, h->cur.f, h->cur.f->pict_type == AV_PICTURE_TYPE_B ?
1020 if (h->cur.f->pict_type != AV_PICTURE_TYPE_B) {
1028 if (h->cur.f->pict_type == AV_PICTURE_TYPE_B) {
1053 if (!(h->cur.f->pict_type == AV_PICTURE_TYPE_B && h->pic_structure == 1))
1086 } else { /* AV_PICTURE_TYPE_B */
1103 if (h->cur.f->pict_type != AV_PICTURE_TYPE_B) {
1216 if (h->cur.f->pict_type != AV_PICTURE_TYPE_B) {
[all...]
H A Ddxva2_vc1.c59 if (s->pict_type == AV_PICTURE_TYPE_B && !v->bi_type)
83 pp->bPicBackwardPrediction = s->pict_type == AV_PICTURE_TYPE_B && !v->bi_type;
122 ((s->pict_type != AV_PICTURE_TYPE_B) << 2) |
171 slice->bReservedBits = (s->pict_type == AV_PICTURE_TYPE_B && !v->bi_type) ? v->bfraction_lut_index + 9 : 0;
H A Dh264data.h38 AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, AV_PICTURE_TYPE_I,
H A Drv10.c321 s->pict_type = AV_PICTURE_TYPE_B;
328 if (s->low_delay && s->pict_type == AV_PICTURE_TYPE_B) {
332 if (s->last_picture_ptr == NULL && s->pict_type == AV_PICTURE_TYPE_B) {
417 if (s->pict_type != AV_PICTURE_TYPE_B) {
426 if (s->pict_type == AV_PICTURE_TYPE_B) {
438 if (RV_GET_MINOR_VER(rv->sub_id) <= 1 && s->pict_type == AV_PICTURE_TYPE_B)
456 av_assert0(s->pict_type != AV_PICTURE_TYPE_B || !s->low_delay);
666 if (s->pict_type != AV_PICTURE_TYPE_B)
765 if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
H A Dvdpau_mpeg12.c45 case AV_PICTURE_TYPE_B:
H A Dvdpau_mpeg4.c48 case AV_PICTURE_TYPE_B:
H A Dsvq3.c508 if (h->pict_type == AV_PICTURE_TYPE_B)
575 if (h->pict_type != AV_PICTURE_TYPE_B)
583 } else { /* AV_PICTURE_TYPE_B */
682 if (h->pict_type == AV_PICTURE_TYPE_B) {
691 if (!IS_SKIP(mb_type) || h->pict_type == AV_PICTURE_TYPE_B) {
696 (!IS_SKIP(mb_type) || h->pict_type == AV_PICTURE_TYPE_B)) {
1101 pic->reference = !(h->pict_type == AV_PICTURE_TYPE_B);
1164 if (h->pict_type != AV_PICTURE_TYPE_B)
1209 if (h->pict_type == AV_PICTURE_TYPE_B && !s->next_pic->f.data[0]) {
1230 if (avctx->skip_frame >= AVDISCARD_NONREF && h->pict_type == AV_PICTURE_TYPE_B ||
[all...]
H A Dvaapi_mpeg4.c84 pic_param->vop_fields.bits.backward_reference_vop_coding_type = s->pict_type == AV_PICTURE_TYPE_B ? s->next_picture.f->pict_type - AV_PICTURE_TYPE_I : 0;
97 if (s->pict_type == AV_PICTURE_TYPE_B)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Davutil.h269 AV_PICTURE_TYPE_B, ///< Bi-dir predicted enumerator in enum:AVPictureType
H A Dutils.c89 case AV_PICTURE_TYPE_B: return 'B';
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Drv34_parser.c37 AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B,
H A Dvaapi_vc1.c57 (v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type);
65 return v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type;
75 (v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type));
85 (v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type)) &&
97 case AV_PICTURE_TYPE_B: return v->bi_type ? 3 : 2;
106 (v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type))
260 case AV_PICTURE_TYPE_B:
279 case AV_PICTURE_TYPE_B:
H A Ddxva2_vc1.c49 if (s->pict_type == AV_PICTURE_TYPE_B)
73 pp->bPicBackwardPrediction = s->pict_type == AV_PICTURE_TYPE_B;
111 ((s->pict_type != AV_PICTURE_TYPE_B) << 2) |
H A Dsvq3.c455 if (s->pict_type == AV_PICTURE_TYPE_B) {
516 if (s->pict_type != AV_PICTURE_TYPE_B)
524 } else { /* AV_PICTURE_TYPE_B */
627 if (s->pict_type == AV_PICTURE_TYPE_B) {
636 if (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B) {
642 if (!IS_INTRA16x16(mb_type) && (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B)) {
986 if (s->last_picture_ptr == NULL && s->pict_type == AV_PICTURE_TYPE_B)
988 if ( (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B)
994 if (s->pict_type == AV_PICTURE_TYPE_B)
1003 if (s->pict_type == AV_PICTURE_TYPE_B) {
[all...]
H A Dratecontrol.c215 else if(i%(s->max_b_frames+1)) rce.pict_type= AV_PICTURE_TYPE_B;
320 rce->pict_type == AV_PICTURE_TYPE_B ? (rce->f_code + rce->b_code)*0.5 : rce->f_code,
326 rce->pict_type == AV_PICTURE_TYPE_B,
331 rcc->last_qscale_for[AV_PICTURE_TYPE_B],
336 rcc->p_cplx_sum[AV_PICTURE_TYPE_B] / (double)rcc->frame_count[AV_PICTURE_TYPE_B],
369 else if(pict_type==AV_PICTURE_TYPE_B && s->avctx->b_quant_factor<0.0)
385 else if(pict_type==AV_PICTURE_TYPE_B && a->b_quant_factor>0.0)
400 if(pict_type!=AV_PICTURE_TYPE_B)
415 if(pict_type==AV_PICTURE_TYPE_B){
[all...]
H A Dvaapi_mpeg4.c82 pic_param->vop_fields.bits.backward_reference_vop_coding_type = s->pict_type == AV_PICTURE_TYPE_B ? s->next_picture.f.pict_type - AV_PICTURE_TYPE_I : 0;
95 if (s->pict_type == AV_PICTURE_TYPE_B)
H A Dcavsdec.c479 if(h->pic_type > AV_PICTURE_TYPE_B) {
485 (!h->DPB[1].f.data[0] && h->pic_type == AV_PICTURE_TYPE_B))
510 if(h->pic_type != AV_PICTURE_TYPE_B) {
518 if(h->pic_type == AV_PICTURE_TYPE_B) {
542 if(!(h->pic_type == AV_PICTURE_TYPE_B && h->pic_structure == 1))
575 } else { /* AV_PICTURE_TYPE_B */
592 if(h->pic_type != AV_PICTURE_TYPE_B) {
702 if(h->pic_type != AV_PICTURE_TYPE_B) {
H A Dh263dec.c217 if (s->pict_type!=AV_PICTURE_TYPE_B)
604 if(s->last_picture_ptr==NULL && (s->pict_type==AV_PICTURE_TYPE_B || s->dropable)) return get_consumed_bytes(s, buf_size);
605 if( (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==AV_PICTURE_TYPE_B)
611 if(s->pict_type==AV_PICTURE_TYPE_B)
617 if((s->avctx->flags2 & CODEC_FLAG2_FAST) && s->pict_type==AV_PICTURE_TYPE_B){
620 }else if((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){
726 if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
H A Drv10.c306 case 3: s->pict_type= AV_PICTURE_TYPE_B; break;
312 if(s->last_picture_ptr==NULL && s->pict_type==AV_PICTURE_TYPE_B){
380 if(s->pict_type!=AV_PICTURE_TYPE_B){
401 if(RV_GET_MINOR_VER(s->avctx->sub_id) <= 1 && s->pict_type == AV_PICTURE_TYPE_B)
419 assert(s->pict_type != AV_PICTURE_TYPE_B || !s->low_delay);
616 if(s->pict_type != AV_PICTURE_TYPE_B)
695 if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {

Completed in 148 milliseconds

12345