| 4978 | } |
| 4979 | |
| 4980 | void hb_job_set_encoder_preset(hb_job_t *job, const char *preset) |
| 4981 | { |
| 4982 | if (job != NULL) |
| 4983 | { |
| 4984 | if (preset == NULL || preset[0] == 0) |
| 4985 | { |
| 4986 | preset = NULL; |
| 4987 | } |
| 4988 | hb_update_str(&job->encoder_preset, preset); |
| 4989 | } |
| 4990 | } |
| 4991 | |
| 4992 | void hb_job_set_encoder_tune(hb_job_t *job, const char *tune) |
| 4993 | { |
no test coverage detected