| 4990 | } |
| 4991 | |
| 4992 | void hb_job_set_encoder_tune(hb_job_t *job, const char *tune) |
| 4993 | { |
| 4994 | if (job != NULL) |
| 4995 | { |
| 4996 | if (tune == NULL || tune[0] == 0) |
| 4997 | { |
| 4998 | tune = NULL; |
| 4999 | } |
| 5000 | hb_update_str(&job->encoder_tune, tune); |
| 5001 | } |
| 5002 | } |
| 5003 | |
| 5004 | void hb_job_set_encoder_options(hb_job_t *job, const char *options) |
| 5005 | { |
no test coverage detected