/hardware/intel/img/psb_video/src/ |
tng_yuv_processor.c | 38 #define SURFACE(id) ((object_surface_p) object_heap_lookup( &dec_ctx->obj_context->driver_data->surface_heap, id )) 62 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data; local 72 if (!dec_ctx) { 73 dec_ctx = (context_DEC_p) malloc(sizeof(struct context_DEC_s)); 74 CHECK_ALLOCATION(dec_ctx); 75 obj_context->format_data = (void *)dec_ctx; 77 vaStatus = vld_dec_CreateContext(dec_ctx, obj_context); 81 dec_ctx->yuv_ctx = ctx; 82 dec_ctx->process_buffer = tng_yuv_processor_process_buffer; 90 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data local 335 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data; local [all...] |
pnw_MPEG2.c | 478 struct context_DEC_s dec_ctx; member in struct:context_MPEG2_s 588 static void psb__MPEG2_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 589 static void psb__MPEG2_end_slice(context_DEC_p dec_ctx); 590 static void psb__MPEG2_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 591 static VAStatus pnw_MPEG2_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer); 615 ctx->dec_ctx.begin_slice = psb__MPEG2_begin_slice; 616 ctx->dec_ctx.process_slice = psb__MPEG2_process_slice_data; 617 ctx->dec_ctx.end_slice = psb__MPEG2_end_slice; 618 ctx->dec_ctx.process_buffer = pnw_MPEG2_process_buffer; 619 ctx->dec_ctx.preload_buffer = NULL [all...] |
tng_VP8.c | 258 struct context_DEC_s dec_ctx; member in struct:context_VP8_s 445 static void tng__VP8_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 446 static void tng__VP8_end_slice(context_DEC_p dec_ctx); 447 static void tng__VP8_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 448 static VAStatus tng_VP8_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer); 468 ctx->dec_ctx.begin_slice = tng__VP8_begin_slice; 469 ctx->dec_ctx.process_slice = tng__VP8_process_slice_data; 470 ctx->dec_ctx.end_slice = tng__VP8_end_slice; 471 ctx->dec_ctx.process_buffer = tng_VP8_process_buffer; 542 ctx->dec_ctx.preload_buffer = &ctx->probability_data_2nd_part [all...] |
tng_jpegdec.c | 166 struct context_DEC_s dec_ctx; member in struct:context_JPEG_s 268 static void tng__JPEG_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 269 static void tng__JPEG_end_slice(context_DEC_p dec_ctx); 270 static void tng__JPEG_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 271 static VAStatus tng_JPEG_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer); 297 ctx->dec_ctx.begin_slice = tng__JPEG_begin_slice; 298 ctx->dec_ctx.process_slice = tng__JPEG_process_slice_data; 299 ctx->dec_ctx.end_slice = tng__JPEG_end_slice; 300 ctx->dec_ctx.process_buffer = tng_JPEG_process_buffer; 301 ctx->dec_ctx.preload_buffer = NULL [all...] |
pnw_MPEG4.c | 1100 struct context_DEC_s dec_ctx; member in struct:context_MPEG4_s [all...] |
pnw_H264.c | 120 struct context_DEC_s dec_ctx; member in struct:context_H264_s 401 static void psb__H264_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 402 static void psb__H264_end_slice(context_DEC_p dec_ctx); 403 static void psb__H264_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 404 static VAStatus pnw_H264_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer); 424 ctx->dec_ctx.begin_slice = psb__H264_begin_slice; 425 ctx->dec_ctx.process_slice = psb__H264_process_slice_data; 426 ctx->dec_ctx.end_slice = psb__H264_end_slice; 427 ctx->dec_ctx.process_buffer = pnw_H264_process_buffer; 463 ctx->dec_ctx.preload_buffer = &ctx->preload_buffer [all...] |
pnw_VC1.c | 433 static void psb__VC1_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 434 static void psb__VC1_end_slice(context_DEC_p dec_ctx); 435 static void psb__VC1_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param); 436 static VAStatus pnw_VC1_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer); 462 ctx->dec_ctx.begin_slice = psb__VC1_begin_slice; 463 ctx->dec_ctx.process_slice = psb__VC1_process_slice_data; 464 ctx->dec_ctx.end_slice = psb__VC1_end_slice; 465 ctx->dec_ctx.process_buffer = pnw_VC1_process_buffer; 494 ctx->dec_ctx.preload_buffer = &ctx->preload_buffer; 560 vaStatus = vld_dec_CreateContext(&ctx->dec_ctx, obj_context) [all...] |
vc1_header.h | 198 struct context_DEC_s dec_ctx; member in struct:context_VC1_s
|