@@ -126,11 +126,11 @@ static const args_opt_t enc_args_opts[] = {
126126 ARGS_NO_KEY , "profile" , ARGS_VAL_TYPE_STRING , 0 , NULL ,
127127 "profile string\n"
128128 " - 422-10: YCbCr422 10bit (default)\n"
129- " - 422-12; YCbCr422 12bit\n"
129+ " - 422-12: YCbCr422 12bit\n"
130130 " - 444-10: YCbCr444 10bit\n"
131- " - 444-12; YCbCr444 12bit\n"
131+ " - 444-12: YCbCr444 12bit\n"
132132 " - 4444-10: YCbCr4444 10bit\n"
133- " - 4444-12; YCbCr4444 12bit\n"
133+ " - 4444-12: YCbCr4444 12bit\n"
134134 " - 400-10: YCbCr400 (monochrome) 10bit\n"
135135 " Note: Color space and bit depth of input video will be converted\n"
136136 " automatically to support the given profile, if needs\n"
@@ -485,7 +485,7 @@ static int check_conf(oapve_cdesc_t *cdesc, args_var_t *vars)
485485 }
486486 int p = get_val_from_key (oapv_param_opts_profile , vars -> profile );
487487 if (p < 0 ) {
488- logerr ("ERR: invalid profile (%s)\n" , vars -> family );
488+ logerr ("ERR: invalid profile (%s)\n" , vars -> profile );
489489 return -1 ;
490490 }
491491
@@ -732,7 +732,7 @@ static int update_param(args_var_t *vars, oapve_param_t *param)
732732 }
733733 int kbps = family_to_bitrate (vars -> family , param );
734734 if (kbps < 0 ) {
735- logerr ("ERR: failed to get targe bitrate from family value\n" );
735+ logerr ("ERR: failed to get target bitrate from family value\n" );
736736 return -1 ;
737737 }
738738 sprintf (vars -> bitrate , "%d" , kbps );
@@ -781,7 +781,7 @@ static int parse_master_display(const char* data_string, oapvm_payload_mdcv_t *m
781781 // Check if sscanf successfully assigned all expected fields (10 numerical values).
782782 const int expected_fields = 10 ;
783783 if (assigned_fields != expected_fields ) {
784- logerr ("Parsing error: master diplay color volume information" );
784+ logerr ("Parsing error: master display color volume information" );
785785 return -1 ;
786786 }
787787 return 0 ; // Success
0 commit comments