OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:picture_height_mb
(Results
1 - 11
of
11
) sorted by null
/hardware/intel/img/psb_video/src/
pnw_MPEG2.c
490
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG2_s
719
ctx->
picture_height_mb
= (ctx->pic_params->vertical_size + 15) / 16;
721
ctx->
picture_height_mb
= (ctx->pic_params->vertical_size + 31) / 32;
722
ctx->
picture_height_mb
*= 2;
725
ctx->coded_picture_height = ctx->
picture_height_mb
* 16;
732
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
;
759
REGIO_WRITE_FIELD_LITE(ctx->BE_SPS1, MSVDX_VEC_MPEG2, CR_VEC_MPEG2_BE_SPS1, BE_VERTICAL_SIZE_MINUS1, ctx->
picture_height_mb
);
[
all
...]
pnw_H264.c
135
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_H264_s
629
ctx->
picture_height_mb
= pic_params->picture_height_in_mbs_minus1 + 1;
631
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
; /* (7-25) */
633
//uint32_t colocated_size = (ctx->picture_width_mb + extra_size) * (ctx->
picture_height_mb
+ extra_size) * 192;
644
ctx->picture_height_samples_l = ctx->
picture_height_mb
* 16;
645
ctx->picture_height_samples_c = ctx->
picture_height_mb
* ctx->mb_height_c;
654
ctx->picture_height_map_units = 1 + ctx->
picture_height_mb
/ (2 - pic_params->seq_fields.bits.frame_mbs_only_flag);
728
uint32_t PicHeightInMbs = ctx->
picture_height_mb
>> pic_params->pic_fields.bits.field_pic_flag; /* (7-23) */
[
all
...]
pnw_MPEG4.c
1117
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG4_s
[
all
...]
vc1_header.h
215
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_VC1_s
tng_jpegdec.c
184
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_JPEG_s
601
ctx->
picture_height_mb
= (ctx->coded_picture_height + 15) / 16;
602
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
;
[
all
...]
pnw_VC1.c
803
ctx->
picture_height_mb
= PIXELS_TO_MB(ctx->display_picture_height);
805
ctx->coded_picture_height = ctx->
picture_height_mb
* 16;
807
ctx->
picture_height_mb
/= 2;
808
ctx->coded_picture_height = ctx->
picture_height_mb
* 16 * 2;
816
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
;
[
all
...]
/hardware/intel/img/psb_video/src/mrst/
psb_MPEG2.c
489
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG2_s
745
ctx->
picture_height_mb
= (ctx->pic_params->vertical_size + 15) / 16;
747
ctx->
picture_height_mb
= (ctx->pic_params->vertical_size + 31) / 32;
748
ctx->
picture_height_mb
*= 2;
751
ctx->coded_picture_height = ctx->
picture_height_mb
* 16;
753
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
;
780
REGIO_WRITE_FIELD_LITE(ctx->BE_SPS1, MSVDX_VEC_MPEG2, CR_VEC_MPEG2_BE_SPS1, BE_VERTICAL_SIZE_MINUS1, ctx->
picture_height_mb
- 1);
[
all
...]
psb_H264.c
122
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_H264_s
659
ctx->
picture_height_mb
= pic_params->picture_height_in_mbs_minus1 + 1;
661
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
; /* (7-25) */
663
//uint32_t colocated_size = (ctx->picture_width_mb + extra_size) * (ctx->
picture_height_mb
+ extra_size) * 192;
680
ctx->picture_height_samples_l = ctx->
picture_height_mb
* 16;
681
ctx->picture_height_samples_c = ctx->
picture_height_mb
* ctx->mb_height_c;
685
ctx->picture_height_map_units = 1 + ctx->
picture_height_mb
/ (2 - pic_params->seq_fields.bits.frame_mbs_only_flag);
739
uint32_t PicHeightInMbs = ctx->
picture_height_mb
>> pic_params->pic_fields.bits.field_pic_flag; /* (7-23) */
[
all
...]
psb_MPEG4.c
292
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG4_s
[
all
...]
psb_MPEG2MC.c
113
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG2MC_s
[
all
...]
psb_VC1.c
791
ctx->
picture_height_mb
= PIXELS_TO_MB(ctx->display_picture_height);
793
ctx->coded_picture_height = ctx->
picture_height_mb
* 16;
795
ctx->
picture_height_mb
/= 2;
796
ctx->coded_picture_height = ctx->
picture_height_mb
* 16 * 2;
799
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
;
[
all
...]
Completed in 911 milliseconds