Home
last modified time | relevance | path

Searched refs:dec_ctx (Results 1 – 8 of 8) sorted by relevance

/hardware/intel/img/psb_video/src/
Dtng_yuv_processor.c40 #define SURFACE(id) ((object_surface_p) object_heap_lookup( &dec_ctx->obj_context->driver_data->s…
64 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data; in tng_yuv_processor_CreateContext() local
74 if (!dec_ctx) { in tng_yuv_processor_CreateContext()
75 dec_ctx = (context_DEC_p) malloc(sizeof(struct context_DEC_s)); in tng_yuv_processor_CreateContext()
76 if(dec_ctx == NULL) { in tng_yuv_processor_CreateContext()
82 obj_context->format_data = (void *)dec_ctx; in tng_yuv_processor_CreateContext()
84 vaStatus = vld_dec_CreateContext(dec_ctx, obj_context); in tng_yuv_processor_CreateContext()
88 dec_ctx->yuv_ctx = ctx; in tng_yuv_processor_CreateContext()
89 dec_ctx->process_buffer = tng_yuv_processor_process_buffer; in tng_yuv_processor_CreateContext()
97 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data; in tng_yuv_processor_DestroyContext() local
[all …]
Dpnw_MPEG2.c488 struct context_DEC_s dec_ctx; member
631 static void psb__MPEG2_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_sl…
632 static void psb__MPEG2_end_slice(context_DEC_p dec_ctx);
633 static void psb__MPEG2_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_par…
634 static VAStatus pnw_MPEG2_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer);
658 ctx->dec_ctx.begin_slice = psb__MPEG2_begin_slice; in pnw_MPEG2_CreateContext()
659 ctx->dec_ctx.process_slice = psb__MPEG2_process_slice_data; in pnw_MPEG2_CreateContext()
660 ctx->dec_ctx.end_slice = psb__MPEG2_end_slice; in pnw_MPEG2_CreateContext()
661 ctx->dec_ctx.process_buffer = pnw_MPEG2_process_buffer; in pnw_MPEG2_CreateContext()
662 ctx->dec_ctx.preload_buffer = NULL; in pnw_MPEG2_CreateContext()
[all …]
Dtng_jpegdec.c166 struct context_DEC_s dec_ctx; member
268 static void tng__JPEG_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_sli…
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_para…
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; in tng_JPEG_CreateContext()
298 ctx->dec_ctx.process_slice = tng__JPEG_process_slice_data; in tng_JPEG_CreateContext()
299 ctx->dec_ctx.end_slice = tng__JPEG_end_slice; in tng_JPEG_CreateContext()
300 ctx->dec_ctx.process_buffer = tng_JPEG_process_buffer; in tng_JPEG_CreateContext()
301 ctx->dec_ctx.preload_buffer = NULL; in tng_JPEG_CreateContext()
[all …]
Dtng_VP8.c258 struct context_DEC_s dec_ctx; member
445 static void tng__VP8_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slic…
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; in tng_VP8_CreateContext()
469 ctx->dec_ctx.process_slice = tng__VP8_process_slice_data; in tng_VP8_CreateContext()
470 ctx->dec_ctx.end_slice = tng__VP8_end_slice; in tng_VP8_CreateContext()
471 ctx->dec_ctx.process_buffer = tng_VP8_process_buffer; in tng_VP8_CreateContext()
542 ctx->dec_ctx.preload_buffer = &ctx->probability_data_2nd_part; in tng_VP8_CreateContext()
[all …]
Dpnw_H264.c122 struct context_DEC_s dec_ctx; member
402 static void psb__H264_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_sli…
403 static void psb__H264_end_slice(context_DEC_p dec_ctx);
404 static void psb__H264_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_para…
405 static VAStatus pnw_H264_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer);
426 ctx->dec_ctx.begin_slice = psb__H264_begin_slice; in pnw_H264_CreateContext()
427 ctx->dec_ctx.process_slice = psb__H264_process_slice_data; in pnw_H264_CreateContext()
428 ctx->dec_ctx.end_slice = psb__H264_end_slice; in pnw_H264_CreateContext()
429 ctx->dec_ctx.process_buffer = pnw_H264_process_buffer; in pnw_H264_CreateContext()
465 ctx->dec_ctx.preload_buffer = &ctx->preload_buffer; in pnw_H264_CreateContext()
[all …]
Dpnw_MPEG4.c1100 struct context_DEC_s dec_ctx; member
1261 static void psb__MPEG4_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_sl…
1262 static void psb__MPEG4_end_slice(context_DEC_p dec_ctx);
1263 static void psb__MPEG4_begin_slice(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_par…
1264 static VAStatus pnw_MPEG4_process_buffer(context_DEC_p dec_ctx, object_buffer_p buffer);
1286 ctx->dec_ctx.begin_slice = psb__MPEG4_begin_slice; in pnw_MPEG4_CreateContext()
1287 ctx->dec_ctx.process_slice = psb__MPEG4_process_slice_data; in pnw_MPEG4_CreateContext()
1288 ctx->dec_ctx.end_slice = psb__MPEG4_end_slice; in pnw_MPEG4_CreateContext()
1289 ctx->dec_ctx.process_buffer = pnw_MPEG4_process_buffer; in pnw_MPEG4_CreateContext()
1319 ctx->dec_ctx.preload_buffer = &ctx->preload_buffer; in pnw_MPEG4_CreateContext()
[all …]
Dpnw_VC1.c433 static void psb__VC1_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slic…
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; in pnw_VC1_CreateContext()
463 ctx->dec_ctx.process_slice = psb__VC1_process_slice_data; in pnw_VC1_CreateContext()
464 ctx->dec_ctx.end_slice = psb__VC1_end_slice; in pnw_VC1_CreateContext()
465 ctx->dec_ctx.process_buffer = pnw_VC1_process_buffer; in pnw_VC1_CreateContext()
494 ctx->dec_ctx.preload_buffer = &ctx->preload_buffer; in pnw_VC1_CreateContext()
560 vaStatus = vld_dec_CreateContext(&ctx->dec_ctx, obj_context); in pnw_VC1_CreateContext()
[all …]
Dvc1_header.h198 struct context_DEC_s dec_ctx; member