OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:picture_height_mb
(Results
1 - 9
of
9
) sorted by null
/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_MPEG2MC.c
113
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG2MC_s
[
all
...]
psb_MPEG4.c
292
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG4_s
[
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
...]
/hardware/intel/img/psb_video/src/
pnw_MPEG2.c
500
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG2_s
762
ctx->
picture_height_mb
= (ctx->pic_params->vertical_size + 15) / 16;
764
ctx->
picture_height_mb
= (ctx->pic_params->vertical_size + 31) / 32;
765
ctx->
picture_height_mb
*= 2;
768
ctx->coded_picture_height = ctx->
picture_height_mb
* 16;
775
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
;
802
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_MPEG4.c
1117
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_MPEG4_s
[
all
...]
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_H264.c
137
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_H264_s
598
ctx->
picture_height_mb
= pic_params->picture_height_in_mbs_minus1 + 1;
600
ctx->size_mb = ctx->picture_width_mb * ctx->
picture_height_mb
; /* (7-25) */
602
//uint32_t colocated_size = (ctx->picture_width_mb + extra_size) * (ctx->
picture_height_mb
+ extra_size) * 192;
613
ctx->picture_height_samples_l = ctx->
picture_height_mb
* 16;
614
ctx->picture_height_samples_c = ctx->
picture_height_mb
* ctx->mb_height_c;
623
ctx->picture_height_map_units = 1 + ctx->
picture_height_mb
/ (2 - pic_params->seq_fields.bits.frame_mbs_only_flag);
755
uint32_t PicHeightInMbs = ctx->
picture_height_mb
>> pic_params->pic_fields.bits.field_pic_flag; /* (7-23) */
[
all
...]
vc1_header.h
215
uint32_t
picture_height_mb
; /* in macroblocks */
member in struct:context_VC1_s
Completed in 91 milliseconds