• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/

Lines Matching defs:hx

1978     H264Context *hx;
1993 hx = h->thread_context[i];
1994 if(!hx) continue;
1995 av_freep(&hx->top_borders[1]);
1996 av_freep(&hx->top_borders[0]);
1997 av_freep(&hx->s.obmc_scratchpad);
7373 H264Context *hx;
7384 hx = h->thread_context[i];
7385 hx->s.error_recognition = avctx->error_recognition;
7386 hx->s.error_count = 0;
7393 hx = h->thread_context[context_count - 1];
7394 s->mb_x = hx->s.mb_x;
7395 s->mb_y = hx->s.mb_y;
7396 s->dropable = hx->s.dropable;
7397 s->picture_structure = hx->s.picture_structure;
7408 H264Context *hx; ///< thread context
7460 hx = h->thread_context[context_count];
7462 ptr= ff_h264_decode_nal(hx, buf + buf_index, &dst_length, &consumed, h->is_avc ? nalsize : buf_size - buf_index);
7471 av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d at %d/%d length %d\n", hx->nal_unit_type, buf_index, buf_size, dst_length);
7491 switch(hx->nal_unit_type){
7499 init_get_bits(&hx->s.gb, ptr, bit_length);
7500 hx->intra_gb_ptr=
7501 hx->inter_gb_ptr= &hx->s.gb;
7502 hx->s.data_partitioning = 0;
7504 if((err = decode_slice_header(hx, h)))
7513 (hx->nal_unit_type == NAL_IDR_SLICE) ||
7515 if(hx->redundant_pic_count==0 && hx->s.hurry_up < 5
7516 && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
7517 && (avctx->skip_frame < AVDISCARD_BIDIR || hx->slice_type_nos!=FF_B_TYPE)
7518 && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type_nos==FF_I_TYPE)
7533 init_get_bits(&hx->s.gb, ptr, bit_length);
7534 hx->intra_gb_ptr=
7535 hx->inter_gb_ptr= NULL;
7536 hx->s.data_partitioning = 1;
7538 err = decode_slice_header(hx, h);
7541 init_get_bits(&hx->intra_gb, ptr, bit_length);
7542 hx->intra_gb_ptr= &hx->intra_gb;
7545 init_get_bits(&hx->inter_gb, ptr, bit_length);
7546 hx->inter_gb_ptr= &hx->inter_gb;
7548 if(hx->redundant_pic_count==0 && hx->intra_gb_ptr && hx->s.data_partitioning
7551 && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
7552 && (avctx->skip_frame < AVDISCARD_BIDIR || hx->slice_type_nos!=FF_B_TYPE)
7553 && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type_nos==FF_I_TYPE)
7600 h->nal_unit_type = hx->nal_unit_type;
7601 h->nal_ref_idc = hx->nal_ref_idc;
7602 hx = h;