You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (param->framework_suco_max>6) { logerr("Maximun SUCO size cannot be greater than 6\n"); ret=-1; }
187
-
if (param->framework_cb_max&¶m->framework_suco_max>param->framework_cb_max) { logerr("Maximun SUCO size cannot be greater than Maximum coding Block size\n"); ret=-1; }
188
-
if (param->framework_suco_min<4) { logerr("Minimun SUCO size cannot be smaller than 4\n"); ret=-1; }
189
-
if (param->framework_cb_min&¶m->framework_suco_min<param->framework_cb_min) { logerr("Minimun SUCO size cannot be smaller than Minimum coding Block size\n"); ret=-1; }
190
-
if (param->framework_suco_min>param->framework_suco_max) { logerr("Minimum SUCO size cannot be greater than Maximum SUCO size\n"); ret=-1; }
191
-
}
192
-
193
-
if (XEVE_CS_GET_FORMAT(param->cs) !=XEVE_CF_YCBCR400)
194
-
{
195
-
intpic_m=2;
196
-
if ((param->w& (pic_m-1)) !=0) { logerr("Current encoder does not support odd picture width\n"); ret=-1; }
197
-
if ((param->h& (pic_m-1)) !=0) { logerr("Current encoder does not support odd picture height\n"); ret=-1; }
if (param->framework_suco_max>6) { xeve_trace("Maximun SUCO size cannot be greater than 6\n"); ret=-1; }
387
+
if (param->framework_cb_max&¶m->framework_suco_max>param->framework_cb_max) { xeve_trace("Maximun SUCO size cannot be greater than Maximum coding Block size\n"); ret=-1; }
388
+
if (param->framework_suco_min<4) { xeve_trace("Minimun SUCO size cannot be smaller than 4\n"); ret=-1; }
389
+
if (param->framework_cb_min&¶m->framework_suco_min<param->framework_cb_min) { xeve_trace("Minimun SUCO size cannot be smaller than Minimum coding Block size\n"); ret=-1; }
390
+
if (param->framework_suco_min>param->framework_suco_max) { xeve_trace("Minimum SUCO size cannot be greater than Maximum SUCO size\n"); ret=-1; }
391
+
}
392
+
393
+
if (XEVE_CS_GET_FORMAT(param->cs) !=XEVE_CF_YCBCR400)
394
+
{
395
+
intpic_m=2;
396
+
if ((param->w& (pic_m-1)) !=0) { xeve_trace("Current encoder does not support odd picture width\n"); ret=-1; }
397
+
if ((param->h& (pic_m-1)) !=0) { xeve_trace("Current encoder does not support odd picture height\n"); ret=-1; }
0 commit comments