[Libva] [PATCH 2/3] Encoding: Add ROI example
Xiang, Haihao
haihao.xiang at intel.com
Fri Jul 1 03:11:54 UTC 2016
> From: Zhao Yakui <yakui.zhao at intel.com>
>
> v1:
> add --roi-test for test only for ROI. default only one
> region(0,0,120,120) has been test.
>
> Signed-off-by: Zhao Yakui <yakui.zhao at intel.com>
> Signed-off-by: pjl <ceciliapeng at intel.com>
> Signed-off-by: ceciliapeng <cecilia.peng at intel.com>
> Signed-off-by: Pengfei Qu <Pengfei.Qu at intel.com>
> ---
> test/encode/avcenc.c | 85
> ++++++++++++++++++++++++++++++++++++++++++++++++----
> 1 file changed, 80 insertions(+), 5 deletions(-)
>
> diff --git a/test/encode/avcenc.c b/test/encode/avcenc.c
> index 74729fb..954ed1e 100644
> --- a/test/encode/avcenc.c
> +++ b/test/encode/avcenc.c
> @@ -91,6 +91,7 @@ static int intra_period = 30;
> static int frame_bit_rate = -1;
> static int frame_rate = 30;
> static int ip_period = 1;
> +static int roi_test_enable = 0;
>
> static VAEntrypoint select_entrypoint = VAEntrypointEncSlice;
>
> @@ -106,6 +107,7 @@ static const struct option longopts[] = {
> {"fb", required_argument, 0, 2},
> {"mode", required_argument, 0, 3},
> {"low-power", no_argument, 0, 4},
> + {"roi-test", no_argument, 0, 5},
> { NULL, 0, NULL, 0}
> };
>
> @@ -154,6 +156,7 @@ static struct {
> VABufferID packed_sei_header_param_buf_id; /* the SEI buffer
> */
> VABufferID packed_sei_buf_id;
> VABufferID misc_parameter_hrd_buf_id;
> + VABufferID misc_parameter_roi_buf_id;
>
> int num_slices;
> int codedbuf_i_size;
> @@ -185,7 +188,7 @@ static void create_encode_pipe()
> {
> VAEntrypoint entrypoints[5];
> int num_entrypoints,slice_entrypoint;
> - VAConfigAttrib attrib[2];
> + VAConfigAttrib attrib[3];
> int major_ver, minor_ver;
> VAStatus va_status;
>
> @@ -209,8 +212,11 @@ static void create_encode_pipe()
> /* find out the format for the render target, and rate control
> mode */
> attrib[0].type = VAConfigAttribRTFormat;
> attrib[1].type = VAConfigAttribRateControl;
> +
> + /* This is to query whether the ROI is supported */
> + attrib[2].type = VAConfigAttribEncROI;
> vaGetConfigAttributes(va_dpy, avcenc_context.profile,
> select_entrypoint,
> - &attrib[0], 2);
> + &attrib[0], 3);
>
> if ((attrib[0].value & VA_RT_FORMAT_YUV420) == 0) {
> /* not find desired YUV420 RT format */
> @@ -225,9 +231,15 @@ static void create_encode_pipe()
>
> attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT
> format */
> attrib[1].value = avcenc_context.rate_control_method; /* set to
> desired RC mode */
> + /* This is to create one context with ROI supported
> + * Only when it is supported, it is possible to pass ROI buffer
> on-the fly
> + * so that it can use the given ROI config for one frame.
> + * If ROI buffer is not passed, it will continue the original
> encoding mode.
> + */
> + attrib[2].value = 0x0101;
>
> va_status = vaCreateConfig(va_dpy, avcenc_context.profile,
> select_entrypoint,
> - &attrib[0],
> 2,&avcenc_context.config_id);
> + &attrib[0],
> 3,&avcenc_context.config_id);
> CHECK_VASTATUS(va_status, "vaCreateConfig");
>
> /* Create a context for this decode pipe */
> @@ -814,16 +826,70 @@ static int begin_picture(FILE *yuv_fp, int
> frame_num, int display_num, int slice
>
> vaUnmapBuffer(va_dpy, avcenc_context.misc_parameter_hrd_buf_id);
>
> + /* ROI parameter: hard code for test on inly one region
> (0,0,120,120) with qp_delta=4 */
It would be better to disable ROI if the frame size is less than the
fixed region size or use 1/4,(or 1/8, ...) portion of the frame as ROI
region
> + if(roi_test_enable)
> + {
> + VAEncMiscParameterBufferROI *misc_roi_param;
> +
> + int roi_num = 1;
> + vaCreateBuffer(va_dpy,
> + avcenc_context.context_id,
> + VAEncMiscParameterBufferType,
> + sizeof(VAEncMiscParameterBuffer) +
> sizeof(VAEncMiscParameterBufferROI) + roi_num * sizeof(VAEncROI),
> + 1,
> + NULL,
> + &avcenc_context.misc_parameter_roi_buf_id);
> + vaMapBuffer(va_dpy,
> + avcenc_context.misc_parameter_roi_buf_id,
> + (void **)&misc_param);
> + misc_param->type = VAEncMiscParameterTypeROI;
> + misc_roi_param = (VAEncMiscParameterBufferROI *)misc_param-
> >data;
> +
> + {
> + /*
> + * Max/Min delta_qp is only used in CBR mode. It is
> ingored under CQP mode.
> + * max_delta_qp means the allowed upper bound of qp
> delta. (qp + X)
> + * min_delta_qp means the allowed lower bound of qp
> delta. (qp -X)
> + * So it will be better that it is positive. Otherwise
> the driver will
> + * use the default bound setting.
> + */
> + misc_roi_param->max_delta_qp = 3;
> + misc_roi_param->min_delta_qp = 3;
> + /* one example of ROI region conf.
> + * please change it on the fly.
> + */
> + VAEncROI *region_roi =(VAEncROI *)((char *)misc_param +
> sizeof(VAEncMiscParameterBuffer) +
> + sizeof(VAEncMiscParameterBufferROI));
> +
> + /*
> + * Under CQP mode roi_value specifies the qp_delta that
> is added to frame qp
> + * Under CBR mode roi_value specifies the important level
> (positive means that
> + * it is important. negative means that it is less
> important).
> + */
> + region_roi->roi_value = 4;
> + region_roi->roi_rectangle.x = 0;
> + region_roi->roi_rectangle.y = 0;
> + region_roi->roi_rectangle.width = 120;
> + region_roi->roi_rectangle.height = 120;
> +
> + misc_roi_param->roi = region_roi;
> + misc_roi_param->num_roi = 1;
> + }
> +
> + vaUnmapBuffer(va_dpy,
> avcenc_context.misc_parameter_roi_buf_id);
> + }
> return 0;
> }
>
> int avcenc_render_picture()
> {
> VAStatus va_status;
> - VABufferID va_buffers[10];
> + VABufferID va_buffers[20];
> unsigned int num_va_buffers = 0;
> int i;
>
> + memset(&va_buffers, 0xff, sizeof(va_buffers));
> +
> va_buffers[num_va_buffers++] = avcenc_context.seq_param_buf_id;
> va_buffers[num_va_buffers++] = avcenc_context.pic_param_buf_id;
>
> @@ -848,6 +914,9 @@ int avcenc_render_picture()
> if (avcenc_context.misc_parameter_hrd_buf_id != VA_INVALID_ID)
> va_buffers[num_va_buffers++]
> = avcenc_context.misc_parameter_hrd_buf_id;
>
> + if (avcenc_context.misc_parameter_roi_buf_id != VA_INVALID_ID)
> + va_buffers[num_va_buffers++]
> = avcenc_context.misc_parameter_roi_buf_id;
> +
> va_status = vaBeginPicture(va_dpy,
> avcenc_context.context_id,
> surface_ids[avcenc_context.current_in
> put_surface]);
> @@ -904,6 +973,7 @@ static void end_picture()
> avcenc_destroy_buffers(&avcenc_context.slice_param_buf_id[0],
> avcenc_context.num_slices);
> avcenc_destroy_buffers(&avcenc_context.codedbuf_buf_id, 1);
> avcenc_destroy_buffers(&avcenc_context.misc_parameter_hrd_buf_id
> , 1);
> + avcenc_destroy_buffers(&avcenc_context.misc_parameter_roi_buf_id
> , 1);
>
> memset(avcenc_context.slice_param, 0,
> sizeof(avcenc_context.slice_param));
> avcenc_context.num_slices = 0;
> @@ -1691,7 +1761,7 @@ encode_picture(FILE *yuv_fp, FILE *avc_fp,
>
> static void show_help()
> {
> - printf("Usage: avnenc <width> <height> <input_yuvfile>
> <output_avcfile> [--qp=qpvalue|--fb=framebitrate] [--mode=0(I frames
> only)/1(I and P frames)/2(I, P and B frames)] [--low-power]\n");
> + printf("Usage: avnenc <width> <height> <input_yuvfile>
> <output_avcfile> [--qp=qpvalue|--fb=framebitrate] [--mode=0(I frames
> only)/1(I and P frames)/2(I, P and B frames)] [--low-power] [--roi-
> test]\n");
> }
>
> static void
> avcenc_context_seq_param_init(VAEncSequenceParameterBufferH264
> *seq_param,
> @@ -1831,6 +1901,7 @@ static void avcenc_context_init(int width, int
> height)
> avcenc_context.upload_thread_value = -1;
> avcenc_context.packed_sei_header_param_buf_id = VA_INVALID_ID;
> avcenc_context.packed_sei_buf_id = VA_INVALID_ID;
> + avcenc_context.misc_parameter_roi_buf_id = VA_INVALID_ID;
>
> if (qp_value == -1)
> avcenc_context.rate_control_method = VA_RC_CBR;
> @@ -1926,6 +1997,10 @@ int main(int argc, char *argv[])
> select_entrypoint = VAEntrypointEncSliceLP;
> break;
>
> + case 5: // roi-test enable/disable
> + roi_test_enable = 1;
> + break;
> +
> default:
> show_help();
> return -1;
More information about the Libva
mailing list