Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions AVOutput/AVOutputTVHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,9 @@ namespace Plugin {
tr181_param_name += "."+convertSourceIndexToString(current_source)+"."+"Format."+convertVideoFormatToString(current_format)+"."+"PictureModeString";
tr181ErrorCode_t err = getLocalParam(rfc_caller_id, tr181_param_name.c_str(), &param);
if ( tr181Success == err ) {
LOGINFO("Plugin Optimization Before SetTVPictureMode() \n");
ret = SetTVPictureMode(param.value);
LOGINFO("Plugin Optimization After SetTVPictureMode() \n");

if(ret != tvERROR_NONE) {
LOGWARN("Picture Mode set failed: %s\n",getErrorString(ret).c_str());
Expand Down Expand Up @@ -1836,7 +1838,9 @@ namespace Plugin {
(dsVIDEO_PIXELRES_MAX == m_currentHdmiInResoluton)) {
LOGWARN("%s: Setting %d zoom mode for below 4K", __FUNCTION__, m_videoZoomMode);
#endif
LOGINFO("Plugin Optimization : Before SetAspectRatio() \n");
ret = SetAspectRatio(mode);
LOGINFO("Plugin Optimization : After SetAspectRatio() \n");
#if !defined (HDMIIN_4K_ZOOM)
}
else {
Expand All @@ -1846,7 +1850,9 @@ namespace Plugin {
}
else {
LOGWARN("%s: HdmiInput is not started yet. m_isDisabledHdmiIn4KZoom: %d", __FUNCTION__, AVOutputTV::instance->m_isDisabledHdmiIn4KZoom);
LOGINFO("Plugin Optimization : Before SetAspectRatio() \n");
ret = SetAspectRatio((tvDisplayMode_t)m_videoZoomMode);
LOGINFO("Plugin Optimization : After SetAspectRatio() \n");
}
#endif
return ret;
Expand Down
Loading