Hi,
we are using ti-processor-sdk-linux-am62axx-evm-08.06.00.45.
In the demo app_multi_cam_codec, the colorimetry of video/x-raw is set to bt601.
snprintf(params->m_AppSrcNameArr[ch] , CODEC_MAX_LEN_ELEM_NAME, "myAppSrc%d" , ch); i += snprintf(¶ms->m_cmdString[i], CODEC_MAX_LEN_CMD_STR-i,"appsrc format=GST_FORMAT_TIME is-live=true do-timestamp=true block=false name=%s ! queue \n",params->m_AppSrcNameArr[ch]); i += snprintf(¶ms->m_cmdString[i], CODEC_MAX_LEN_CMD_STR-i,"! video/x-raw, width=(int)%d, height=(int)%d, framerate=(fraction)30/1, format=(string)%s, interlace-mode=(string)progressive, colorimetry=(string)bt601 \n", params->in_width, params->in_height, params->in_format); i += snprintf(¶ms->m_cmdString[i], CODEC_MAX_LEN_CMD_STR-i,"! v4l2h264enc bitrate=10000000 \n");
Can you tell me the bt601 here is bt601(full range) or bt601(limit range)?
If it's bt601(limit range), how do we modify it to bt601(full range) ?
Thank you