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

  /hardware/intel/img/psb_video/src/
tng_yuv_processor.c 40 #define SURFACE(id) ((object_surface_p) object_heap_lookup( &dec_ctx->obj_context->driver_data->surface_heap, id ))
64 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data; local
74 if (!dec_ctx) {
75 dec_ctx = (context_DEC_p) malloc(sizeof(struct context_DEC_s));
76 CHECK_ALLOCATION(dec_ctx);
77 obj_context->format_data = (void *)dec_ctx;
79 vaStatus = vld_dec_CreateContext(dec_ctx, obj_context);
83 dec_ctx->yuv_ctx = ctx;
84 dec_ctx->process_buffer = tng_yuv_processor_process_buffer;
92 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data local
337 context_DEC_p dec_ctx = (context_DEC_p) obj_context->format_data; local
    [all...]
pnw_MPEG2.c 488 struct context_DEC_s dec_ctx; member in struct:context_MPEG2_s
631 static void psb__MPEG2_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param);
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_param);
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;
659 ctx->dec_ctx.process_slice = psb__MPEG2_process_slice_data;
660 ctx->dec_ctx.end_slice = psb__MPEG2_end_slice;
661 ctx->dec_ctx.process_buffer = pnw_MPEG2_process_buffer;
662 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 122 struct context_DEC_s dec_ctx; member in struct:context_H264_s
402 static void psb__H264_process_slice_data(context_DEC_p dec_ctx, VASliceParameterBufferBase *vld_slice_param);
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_param);
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;
427 ctx->dec_ctx.process_slice = psb__H264_process_slice_data;
428 ctx->dec_ctx.end_slice = psb__H264_end_slice;
429 ctx->dec_ctx.process_buffer = pnw_H264_process_buffer;
465 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

Completed in 104 milliseconds