HomeSort by relevance Sort by last modified time
    Searched refs:recon (Results 1 - 20 of 20) sorted by null

  /external/libvpx/vp8/common/arm/
arm_systemdependent.c 18 #include "vp8/common/recon.h"
59 rtcd->recon.copy16x16 = vp8_copy_mem16x16_v6;
60 rtcd->recon.copy8x8 = vp8_copy_mem8x8_v6;
61 rtcd->recon.copy8x4 = vp8_copy_mem8x4_v6;
62 rtcd->recon.recon = vp8_recon_b_armv6;
63 rtcd->recon.recon2 = vp8_recon2b_armv6;
64 rtcd->recon.recon4 = vp8_recon4b_armv6;
94 rtcd->recon.copy16x16 = vp8_copy_mem16x16_neon;
95 rtcd->recon.copy8x8 = vp8_copy_mem8x8_neon
    [all...]
  /external/libvpx/vp8/common/generic/
systemdependent.c 16 #include "vp8/common/recon.h"
34 rtcd->recon.copy16x16 = vp8_copy_mem16x16_c;
35 rtcd->recon.copy8x8 = vp8_copy_mem8x8_c;
36 rtcd->recon.copy8x4 = vp8_copy_mem8x4_c;
37 rtcd->recon.recon = vp8_recon_b_c;
38 rtcd->recon.recon2 = vp8_recon2b_c;
39 rtcd->recon.recon4 = vp8_recon4b_c;
40 rtcd->recon.recon_mb = vp8_recon_mb_c;
41 rtcd->recon.recon_mby = vp8_recon_mby_c
    [all...]
  /external/libvpx/vp8/common/x86/
x86_systemdependent.c 17 #include "vp8/common/recon.h"
52 rtcd->recon.recon = vp8_recon_b_mmx;
53 rtcd->recon.copy8x8 = vp8_copy_mem8x8_mmx;
54 rtcd->recon.copy8x4 = vp8_copy_mem8x4_mmx;
55 rtcd->recon.copy16x16 = vp8_copy_mem16x16_mmx;
88 rtcd->recon.recon2 = vp8_recon2b_sse2;
89 rtcd->recon.recon4 = vp8_recon4b_sse2;
90 rtcd->recon.copy16x16 = vp8_copy_mem16x16_sse2;
subpixel_mmx.asm 189 ; recon block should be in cache this shouldn't cost much. Its obviously
  /external/libvpx/vp8/encoder/
encodeintra.c 19 #include "vp8/common/recon.h"
45 RECON_INVOKE(&rtcd->common->recon, recon)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
70 RECON_INVOKE(&rtcd->common->recon, build_intra_predictors_mby)(&x->e_mbd);
88 RECON_INVOKE(&rtcd->common->recon, recon_mby)
89 (IF_RTCD(&rtcd->common->recon), &x->e_mbd);
140 vp8_recon_intra_mbuv(IF_RTCD(&rtcd->common->recon), &x->e_mbd);
temporal_filter.c 66 RECON_INVOKE(&x->rtcd->recon, copy16x16)(yptr, stride, &pred[0], 16);
86 RECON_INVOKE(&x->rtcd->recon, copy8x8)(uptr, stride, &pred[256], 8);
87 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, stride, &pred[320], 8);
encodemb.c 18 #include "vp8/common/recon.h"
202 // recon = copy from predictors to destination
630 RECON_INVOKE(&rtcd->common->recon, recon_mb)
631 (IF_RTCD(&rtcd->common->recon), &x->e_mbd);
648 RECON_INVOKE(&rtcd->common->recon, recon_mby)
649 (IF_RTCD(&rtcd->common->recon), &x->e_mbd);
onyx_if.c 2441 YV12_BUFFER_CONFIG *recon = cpi->common.frame_to_show; local
5118 YV12_BUFFER_CONFIG *recon = cpi->common.frame_to_show; local
    [all...]
rdopt.c 663 RECON_INVOKE(IF_RTCD(&cpi->rtcd.common->recon), recon)(best_predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
748 RECON_INVOKE(&cpi->common.rtcd.recon, build_intra_predictors_mby)
    [all...]
pickinter.c 667 RECON_INVOKE(&cpi->common.rtcd.recon, build_intra_predictors_mby)
encodeframe.c 657 //extend the recon for intra prediction
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_api.cpp 558 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncGetRecon(AVCHandle *avcHandle, AVCFrameIO *recon)
569 recon->YCbCr[0] = currFS->frame.Sl;
570 recon->YCbCr[1] = currFS->frame.Scb;
571 recon->YCbCr[2] = currFS->frame.Scr;
572 recon->height = currFS->frame.height;
573 recon->pitch = currFS->frame.pitch;
574 recon->disp_order = currFS->PicOrderCnt;
575 recon->coding_order = currFS->FrameNum;
576 recon->id = (uint32) currFS->base_dpb; /* use the pointer as the id */
583 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncReleaseRecon(AVCHandle *avcHandle, AVCFrameIO *recon)
    [all...]
avcenc_api.h 276 OSCL_IMPORT_REF AVCEnc_Status PVAVCEncGetRecon(AVCHandle *avcHandle, AVCFrameIO *recon);
288 OSCL_IMPORT_REF AVCEnc_Status PVAVCEncReleaseRecon(AVCHandle *avcHandle, AVCFrameIO *recon);
  /external/libvpx/vp8/common/
recon.h 101 vp8_recon_fn_t recon; member in struct:vp8_recon_rtcd_vtable
reconinter.c 13 #include "recon.h"
186 RECON_INVOKE(&x->rtcd->recon, copy8x8)(ptr, d->pre_stride, pred_ptr, pitch);
205 RECON_INVOKE(&x->rtcd->recon, copy8x4)(ptr, d->pre_stride, pred_ptr, pitch);
237 RECON_INVOKE(&x->rtcd->recon, copy8x8)(uptr, pre_stride, upred_ptr, 8);
238 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, pre_stride, vpred_ptr, 8);
282 RECON_INVOKE(&x->rtcd->recon, copy16x16)(ptr, pre_stride, pred_ptr, 16);
345 RECON_INVOKE(&x->rtcd->recon, copy16x16)(ptr, pre_stride, pred_ptr, 16);
362 RECON_INVOKE(&x->rtcd->recon, copy8x8)(uptr, pre_stride, upred_ptr, 8);
363 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, pre_stride, vpred_ptr, 8);
495 /* The following functions are wriiten for skip_recon_mb() to call. Since there is no recon in thi
    [all...]
onyxc_int.h 21 #include "recon.h"
73 vp8_recon_rtcd_vtable_t recon; member in struct:VP8_COMMON_RTCD
  /external/libvpx/vp8/
vp8_common.mk 49 VP8_COMMON_SRCS-yes += common/recon.h
66 VP8_COMMON_SRCS-yes += common/recon.c
  /external/libvpx/
Android.mk 35 vp8/common/recon.c \
  /frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.cpp 820 AVCFrameIO recon; local
821 if (PVAVCEncGetRecon(mHandle, &recon) == AVCENC_SUCCESS) {
822 PVAVCEncReleaseRecon(mHandle, &recon);
  /external/libvpx/vp8/decoder/
decodframe.c 16 #include "vp8/common/recon.h"
118 RECON_INVOKE(&pbi->common.rtcd.recon,
217 RECON_INVOKE(&pbi->common.rtcd.recon,

Completed in 457 milliseconds