| 5014 | } |
| 5015 | |
| 5016 | void hb_job_set_encoder_profile(hb_job_t *job, const char *profile) |
| 5017 | { |
| 5018 | if (job != NULL) |
| 5019 | { |
| 5020 | if (profile == NULL || profile[0] == 0) |
| 5021 | { |
| 5022 | profile = NULL; |
| 5023 | } |
| 5024 | hb_update_str(&job->encoder_profile, profile); |
| 5025 | } |
| 5026 | } |
| 5027 | |
| 5028 | void hb_job_set_encoder_level(hb_job_t *job, const char *level) |
| 5029 | { |
no test coverage detected