diff options
author | Rodeo <[email protected]> | 2013-07-13 18:16:00 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-07-13 18:16:00 +0000 |
commit | 8228a6411ed3c76d521dc398ddb5329154786f43 (patch) | |
tree | f6314fa9a64726b5c5cd1c781d46725456145b27 /libhb/common.h | |
parent | 00b5d615c59958cb0078a6d3d8a126337335b734 (diff) |
Add hb_video_quality_get_limits and hb_video_quality_get_name to libhb API.
Includes a MacGui implementation.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5647 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 2ce180034..5a21eab84 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -264,6 +264,9 @@ int hb_audio_bitrate_get_default(uint32_t codec, int samplerate, in void hb_audio_bitrate_get_limits(uint32_t codec, int samplerate, int mixdown, int *low, int *high); const hb_rate_t* hb_audio_bitrate_get_next(const hb_rate_t *last); +void hb_video_quality_get_limits(uint32_t codec, float *low, float *high, float *granularity, int *direction); +const char* hb_video_quality_get_name(uint32_t codec); + void hb_audio_quality_get_limits(uint32_t codec, float *low, float *high, float *granularity, int *direction); float hb_audio_quality_get_best(uint32_t codec, float quality); float hb_audio_quality_get_default(uint32_t codec); |