API Reference
4-16
Note:
For the supported
maxBitRate
values, see Table A.1 – Level limits
in
ISO/IEC 14496-10
.
The following fields of
IVIDENC1_Params
data structure are level
dependent:
maxHeight
maxWidth
maxFrameRate
maxBitRate
To check the values supported for
maxHeight
and
maxWidth
use the
following expression:
maxFrameSizeinMbs
>= (
maxHeight*maxWidth) / 256
;
See Table A.1 – Level limits in
ISO/IEC 14496-10
for the supported
maxFrameSizeinMbs
values.
For example, consider you have to check if the following values are
supported for level 4.0:
maxHeight = 1088
maxWidth = 1920
The supported
maxFrameSizeinMbs
value for level 4.0 as per Table A.1
– Level limits is 8192.
Compute the expression as:
maxFrameSizeinMbs >= (1920*1088) / 256
The value of
maxFrameSizeinMbs
is 8160 and hence the condition is
true. Therefore, the above values of
maxHeight
and
maxWidth
are
supported for level 4.0.
Use the following expression to check the supported
maxFrameRate
values for each level:
maxFrameRate
<=
maxMbsPerSecond
/
FrameSizeinMbs
;
See Table A.1 – Level Limits in
ISO/IEC 14496-10
for the supported
values of
maxMbsPerSecond
.
Use the following expression to calculate
FrameSizeinMbs
:
FrameSizeinMbs
=
(inputWidth * inputHeight) / 256
;
When the rate control preset is configured to
IVIDEO_LOW_DELAY
(CBR mode), the encoder can skip frames, and the encoder does not
support any SEI messages in the bit-stream to indicate the frame skip.
Содержание DM6467
Страница 1: ...H 264 1080p 30 BP Encoder on DM6467 User s Guide Literature Number SPRUGN8 October 2009 ...
Страница 10: ...x This page is intentionally left blank ...
Страница 12: ...xii This page is intentionally left blank ...
Страница 18: ...Introduction 1 6 This page is intentionally left blank ...
Страница 36: ...Sample Usage 3 10 This page is intentionally left blank ...